diff options
author | Keith Packard <keithp@keithp.com> | 2009-04-26 16:04:07 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2009-04-26 16:04:07 -0700 |
commit | 5df80c346d65a9d56a8699b056dc44924acb31fe (patch) | |
tree | 3b934f3f56f19e0e3faab507230d1881d12010c9 /ao_adc.c | |
parent | c3fec2c4c65db71e88ef0c05c69463438a7cfc6c (diff) |
Was missing v_batt in adc dump command0.1
Diffstat (limited to 'ao_adc.c')
-rw-r--r-- | ao_adc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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[] = { |