altos: Flush the on-board mega log after every sample interval.
[fw/altos] / src / core / ao_log.h
index 93b0177809f928dec32fea2c09b58435213057b5..cac787715af95f297f0cfcfd7f8e26afd87ffa1c 100644 (file)
@@ -205,9 +205,9 @@ struct ao_log_mega {
                        int16_t         ground_accel_along;     /* 16 */
                        int16_t         ground_accel_across;    /* 12 */
                        int16_t         ground_accel_through;   /* 14 */
-                       int16_t         ground_gyro_roll;       /* 18 */
-                       int16_t         ground_gyro_pitch;      /* 20 */
-                       int16_t         ground_gyro_yaw;        /* 22 */
+                       int16_t         ground_roll;            /* 18 */
+                       int16_t         ground_pitch;           /* 20 */
+                       int16_t         ground_yaw;             /* 22 */
                } flight;                                       /* 24 */
                /* AO_LOG_STATE */
                struct {
@@ -268,4 +268,7 @@ ao_log_data(__xdata struct ao_log_record *log) __reentrant;
 uint8_t
 ao_log_mega(__xdata struct ao_log_mega *log) __reentrant;
 
+void
+ao_log_flush(void);
+
 #endif /* _AO_LOG_H_ */