btstack/platform/msp430/hal_led.c

8 lines
130 B
C
Raw Normal View History

2015-10-15 14:33:34 +00:00
#include "hal_led.h"
#include "hal_board.h"
#include <msp430.h>
void hal_led_toggle(void){
LED2_OUT = LED2_OUT ^ LED2_PIN;
}