xref: /btstack/platform/msp430/hal_led.c (revision 0f7fd6c19b44e3fae3aaf3caf2c11dd07533fe4c)
1 #include "hal_led.h"
2 #include "hal_board.h"
3 #include <msp430.h>
4 
5 
6 void hal_led_toggle(void){
7     LED2_OUT = LED2_OUT ^ LED2_PIN;
8 }