mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-01 00:28:18 +00:00
8 lines
130 B
C
8 lines
130 B
C
#include "hal_led.h"
|
|
#include "hal_board.h"
|
|
#include <msp430.h>
|
|
|
|
|
|
void hal_led_toggle(void){
|
|
LED2_OUT = LED2_OUT ^ LED2_PIN;
|
|
} |