diff options
Diffstat (limited to 'src/stmf0/ao_led.c')
-rw-r--r-- | src/stmf0/ao_led.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stmf0/ao_led.c b/src/stmf0/ao_led.c index 0f39befb..a162932a 100644 --- a/src/stmf0/ao_led.c +++ b/src/stmf0/ao_led.c @@ -18,7 +18,7 @@ #include "ao.h" -__pdata uint16_t ao_led_enable; +uint16_t ao_led_enable; void ao_led_on(uint16_t colors) @@ -76,7 +76,7 @@ ao_led_toggle(uint16_t colors) } void -ao_led_for(uint16_t colors, uint16_t ticks) __reentrant +ao_led_for(uint16_t colors, uint16_t ticks) { ao_led_on(colors); ao_delay(ticks); |