1
0
mirror of https://github.com/bluekitchen/btstack.git synced 2025-03-25 07:43:38 +00:00

add variable type

This commit is contained in:
Matthias Ringwald 2015-04-26 09:46:23 +02:00
parent 15ae709331
commit e9fe7a6097

@ -74,7 +74,7 @@ static void sigint_handler(int param){
exit(0);
}
static led_state = 0;
static int led_state = 0;
void hal_led_toggle(){
led_state = 1 - led_state;
printf("LED State %u\n", led_state);