btstack/platforms/msp430/hal_led.c

8 lines
138 B
C
Raw Normal View History

#include <btstack/hal_led.h>
#include "hal_board.h"
#include <msp430.h>
void hal_led_toggle(void){
LED2_OUT = LED2_OUT ^ LED2_PIN;
}