btstack/platforms/msp430/hal_led.c
2015-04-19 22:15:25 +02:00

8 lines
138 B
C

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