mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-07-02 15:50:35 +08:00
accel and gyro calibration refactor and cleanup
- remove all remaining IOCTLs for accel and gyro and handle all calibration entirely in sensors module with parameters
- sensor_accel and sensor_gyro are now always raw sensor data
- calibration procedures no longer need to first clear existing values before starting
- temperature calibration (TC) remove all scale (SCL) parameters
- gyro and baro scale are completely unused
- regular accel calibration scale can be used (CAL_ACC*_xSCALE) instead of TC scale
This commit is contained in:
@@ -66,17 +66,8 @@ void Simulator::parameters_update(bool force)
|
||||
|
||||
void Simulator::print_status()
|
||||
{
|
||||
PX4_INFO("accelerometer");
|
||||
_px4_accel.print_status();
|
||||
|
||||
PX4_INFO("gyroscope");
|
||||
_px4_gyro.print_status();
|
||||
|
||||
PX4_INFO("magnetometer");
|
||||
_px4_mag.print_status();
|
||||
|
||||
PX4_INFO("barometer");
|
||||
_px4_baro.print_status();
|
||||
}
|
||||
|
||||
int Simulator::start(int argc, char *argv[])
|
||||
|
||||
Reference in New Issue
Block a user