altos: Actually store current MPU9250 data in data ring
[fw/altos] / src / stm / ao_adc_stm.c
index c3cca5e4f3139372eb7b5d4d63fd2c117902ca98..24912bb28b34849d7b2297ff8c11e6e6cd63a4fb 100644 (file)
@@ -57,6 +57,9 @@ static void ao_adc_done(int index)
 #endif
 #if HAS_MPU6000
                ao_data_ring[ao_data_head].mpu6000 = ao_mpu6000_current;
+#endif
+#if HAS_MPU9250
+               ao_data_ring[ao_data_head].mpu9250 = ao_mpu9250_current;
 #endif
                ao_data_ring[ao_data_head].tick = ao_tick_count;
                ao_data_head = ao_data_ring_next(ao_data_head);