src/ao_cmd: Shave off bytes from doc strings
[fw/altos] / src / ao_log.c
index fa0725502332fe10b884adff4090d37e6fb8ad6d..1b10961d1d45a151657d29d317b142fc19880f47 100644 (file)
@@ -99,10 +99,10 @@ ao_log(void)
        /* Write the whole contents of the ring to the log
         * when starting up.
         */
-       ao_log_adc_pos = ao_adc_ring_next(ao_adc_head);
+       ao_log_adc_pos = ao_adc_ring_next(ao_flight_adc);
        for (;;) {
                /* Write samples to EEPROM */
-               while (ao_log_adc_pos != ao_adc_head) {
+               while (ao_log_adc_pos != ao_flight_adc) {
                        log.type = AO_LOG_SENSOR;
                        log.tick = ao_adc_ring[ao_log_adc_pos].tick;
                        log.u.sensor.accel = ao_adc_ring[ao_log_adc_pos].accel;
@@ -390,9 +390,9 @@ ao_log_delete(void) __reentrant
 
 
 __code struct ao_cmds ao_log_cmds[] = {
-       { 'l',  ao_log_list,    "l                                  List stored flight logs" },
-       { 'd',  ao_log_delete,  "d <flight-number>                  Delete stored flight" },
-       { 0,    ao_log_delete,  NULL },
+       { ao_log_list,  "l\0List stored flight logs" },
+       { ao_log_delete,        "d <flight-number>\0Delete stored flight" },
+       { 0,    NULL },
 };
 
 void