diff options
author | Keith Packard <keithp@keithp.com> | 2009-04-25 13:16:27 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2009-04-25 13:16:27 -0700 |
commit | 45976af820fc41099928df71ea8304c56eb9fc7c (patch) | |
tree | 9c69ee467ebdcd7b120c829244025a4e52b31785 /ao_telemetrum.c | |
parent | 4a050704ad2c497e9f1b0988334228b0bbc4c170 (diff) |
Make LED usage depend on target device
Diffstat (limited to 'ao_telemetrum.c')
-rw-r--r-- | ao_telemetrum.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ao_telemetrum.c b/ao_telemetrum.c index 542db799..87469521 100644 --- a/ao_telemetrum.c +++ b/ao_telemetrum.c @@ -25,7 +25,7 @@ main(void) ; /* Turn on the red LED until the system is stable */ - ao_led_init(); + ao_led_init(AO_LED_RED|AO_LED_GREEN); ao_led_on(AO_LED_RED); ao_timer_init(); @@ -41,7 +41,7 @@ main(void) ao_gps_init(); ao_telemetry_init(); ao_radio_init(); - ao_monitor_init(); + ao_monitor_init(AO_LED_GREEN); ao_igniter_init(); ao_dbg_init(); ao_start_scheduler(); |