btstack/platform/msp430/hal_led.c
2015-11-13 09:36:05 +01:00

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;
}