summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2009-04-26 16:04:07 -0700
committerKeith Packard <keithp@keithp.com>2009-04-26 16:04:07 -0700
commit5df80c346d65a9d56a8699b056dc44924acb31fe (patch)
tree3b934f3f56f19e0e3faab507230d1881d12010c9
parentc3fec2c4c65db71e88ef0c05c69463438a7cfc6c (diff)
Was missing v_batt in adc dump command0.1
-rw-r--r--ao_adc.c2
1 files changed, 1 insertions, 1 deletions
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[] = {