summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2009-11-02 21:46:39 -0800
committerKeith Packard <keithp@keithp.com>2009-11-02 23:51:41 -0800
commit47f510464907d2b9488109c96ade87a41d878842 (patch)
treedee53338a0726ffc7ece4b4285a2f961ad5474ff /src
parent144db05f6b286a0450d486f69ce192632a2c0656 (diff)
Remove "l" command as ao-dumplong no longer uses it
Diffstat (limited to 'src')
-rw-r--r--src/ao_log.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/ao_log.c b/src/ao_log.c
index b2bfbd6f..50778f55 100644
--- a/src/ao_log.c
+++ b/src/ao_log.c
@@ -191,29 +191,6 @@ ao_log_stop(void)
ao_log_flush();
}
-static void
-dump_log(void) __reentrant
-{
- uint8_t more;
-
- for (more = ao_log_dump_first(); more; more = ao_log_dump_next()) {
- printf("%c %4x %4x %4x\n",
- ao_log_dump.type,
- ao_log_dump.tick,
- ao_log_dump.u.anon.d0,
- ao_log_dump.u.anon.d1);
- if (ao_log_dump.type == AO_LOG_STATE &&
- ao_log_dump.u.state.state == ao_flight_landed)
- break;
- }
- printf("end\n");
-}
-
-__code struct ao_cmds ao_log_cmds[] = {
- { 'l', dump_log, "l Dump last flight log" },
- { 0, dump_log, NULL },
-};
-
static __xdata struct ao_task ao_log_task;
void
@@ -228,5 +205,4 @@ ao_log_init(void)
/* Create a task to log events to eeprom */
ao_add_task(&ao_log_task, ao_log, "log");
- ao_cmd_register(&ao_log_cmds[0]);
}