summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/kernel/ao_log.h4
-rw-r--r--src/kernel/ao_log_firetwo.c4
2 files changed, 1 insertions, 7 deletions
diff --git a/src/kernel/ao_log.h b/src/kernel/ao_log.h
index a2f2c6ca..5c568c99 100644
--- a/src/kernel/ao_log.h
+++ b/src/kernel/ao_log.h
@@ -309,9 +309,7 @@ struct ao_log_firetwo {
/* AO_LOG_FLIGHT */
struct {
uint16_t flight; /* 4 */
- uint16_t idle_pressure; /* 6 */
- uint16_t idle_thrust; /* 8 */
- } flight; /* 16 */
+ } flight; /* 6 */
/* AO_LOG_STATE */
struct {
uint16_t state; /* 4 */
diff --git a/src/kernel/ao_log_firetwo.c b/src/kernel/ao_log_firetwo.c
index 4b42abe4..1a82673d 100644
--- a/src/kernel/ao_log_firetwo.c
+++ b/src/kernel/ao_log_firetwo.c
@@ -75,8 +75,6 @@ typedef uint8_t check_log_size[1-(256 % sizeof(struct ao_log_firetwo))] ;
void
ao_log(void)
{
- uint16_t ao_idle_pressure = 0; // write code to capture pre-test values someday
- uint16_t ao_idle_thrust = 0;
uint16_t ao_flight_state = ao_flight_startup;
ao_storage_setup();
@@ -89,8 +87,6 @@ ao_log(void)
log.type = AO_LOG_FLIGHT;
log.tick = ao_time();
- log.u.flight.idle_pressure = ao_idle_pressure;
- log.u.flight.idle_thrust = ao_idle_thrust;
log.u.flight.flight = ao_flight_number;
ao_log_firetwo(&log);