Make some functions reentrant to save DSEG space
[fw/altos] / ao_led.c
index c46e2eba29379481c18b1d4df0f710df765d5d38..1268ff6952cef8a4a95084214165f986917c5f38 100644 (file)
--- a/ao_led.c
+++ b/ao_led.c
@@ -3,8 +3,7 @@
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
+ * the Free Software Foundation; version 2 of the License.
  *
  * This program is distributed in the hope that it will be useful, but
  * WITHOUT ANY WARRANTY; without even the implied warranty of
 
 #include "ao.h"
 
-void
-ao_led_init(void)
-{
-       P1SEL &= ~3;
-       P1 &= ~3;
-       P1DIR |= 3;
-}
-
 void
 ao_led_on(uint8_t colors)
 {
@@ -45,10 +36,17 @@ ao_led_set(uint8_t colors)
 }
 
 void
-ao_led_for(uint8_t colors, uint16_t ticks)
+ao_led_for(uint8_t colors, uint16_t ticks) __reentrant
 {
        ao_led_on(colors);
        ao_delay(ticks);
        ao_led_off(colors);
 }
 
+void
+ao_led_init(void)
+{
+       P1SEL &= ~3;
+       P1 &= ~3;
+       P1DIR |= 3;
+}