summaryrefslogtreecommitdiff
path: root/src/telelcotwo-v0.1
diff options
context:
space:
mode:
Diffstat (limited to 'src/telelcotwo-v0.1')
-rw-r--r--src/telelcotwo-v0.1/Makefile2
-rw-r--r--src/telelcotwo-v0.1/ao_telelcotwo.c6
2 files changed, 5 insertions, 3 deletions
diff --git a/src/telelcotwo-v0.1/Makefile b/src/telelcotwo-v0.1/Makefile
index c68f3eb5..6a114aae 100644
--- a/src/telelcotwo-v0.1/Makefile
+++ b/src/telelcotwo-v0.1/Makefile
@@ -36,7 +36,7 @@ ALTOS_SRC = \
ao_cmd.c \
ao_config.c \
ao_task.c \
- ao_led.c \
+ ao_led_stm.c \
ao_stdio.c \
ao_panic.c \
ao_timer.c \
diff --git a/src/telelcotwo-v0.1/ao_telelcotwo.c b/src/telelcotwo-v0.1/ao_telelcotwo.c
index b3fcd200..6ced1912 100644
--- a/src/telelcotwo-v0.1/ao_telelcotwo.c
+++ b/src/telelcotwo-v0.1/ao_telelcotwo.c
@@ -34,8 +34,8 @@ main(void)
{
ao_clock_init();
- ao_led_init(LEDS_AVAILABLE);
- ao_led_on(AO_LED_GREEN);
+ ao_led_init();
+ ao_led_on(LEDS_AVAILABLE);
ao_beep_init();
ao_task_init();
@@ -61,6 +61,8 @@ main(void)
ao_lco_cmd_init();
// ao_radio_cmac_cmd_init();
+ ao_led_off(LEDS_AVAILABLE);
+
ao_start_scheduler();
return 0;
}