Browse Source

ArduPlane: Privatize AP_IntertialSensor Logging

zr-v5.1
Josh Henderson 4 years ago committed by Peter Barker
parent
commit
5c8c961399
  1. 6
      ArduPlane/ArduPlane.cpp

6
ArduPlane/ArduPlane.cpp

@ -143,7 +143,7 @@ void Plane::ahrs_update() @@ -143,7 +143,7 @@ void Plane::ahrs_update()
ahrs.update();
if (should_log(MASK_LOG_IMU)) {
logger.Write_IMU();
AP::ins().Write_IMU();
}
// calculate a scaled roll limit based on current pitch
@ -207,7 +207,7 @@ void Plane::update_logging1(void) @@ -207,7 +207,7 @@ void Plane::update_logging1(void)
}
if (should_log(MASK_LOG_ATTITUDE_MED) && !should_log(MASK_LOG_IMU))
logger.Write_IMU();
AP::ins().Write_IMU();
if (should_log(MASK_LOG_ATTITUDE_MED))
ahrs.Write_AOA_SSA();
@ -236,7 +236,7 @@ void Plane::update_logging2(void) @@ -236,7 +236,7 @@ void Plane::update_logging2(void)
Log_Write_RC();
if (should_log(MASK_LOG_IMU))
logger.Write_Vibration();
AP::ins().Write_Vibration();
}

Loading…
Cancel
Save