From: Keith Packard Date: Sun, 26 Apr 2009 23:04:07 +0000 (-0700) Subject: Was missing v_batt in adc dump command X-Git-Tag: 0.1^0 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=5df80c346d65a9d56a8699b056dc44924acb31fe Was missing v_batt in adc dump command --- diff --git a/ao_adc.c b/ao_adc.c index 639c5f6c..bef6bb7f 100644 --- a/ao_adc.c +++ b/ao_adc.c @@ -67,7 +67,7 @@ ao_adc_dump(void) ao_adc_get(&packet); printf("tick: %5u accel: %4d pres: %4d temp: %4d batt: %4d drogue: %4d main: %4d\n", packet.tick, packet.accel >> 4, packet.pres >> 4, packet.temp >> 4, - packet.sense_d >> 4, packet.sense_m >> 4); + packet.v_batt >> 4, packet.sense_d >> 4, packet.sense_m >> 4); } __code struct ao_cmds ao_adc_cmds[] = {