IMU/指南针工厂校准
PX4 OEM制造商可以执行IMU和罗盘工厂校准,以便将加速度计、陀螺仪和磁力计校准的数值存储到持久存储器中(通常是EEPROM)。 这将确保最终用户总是能够重置车辆配置并调整到安全状态以供飞行。
This procedure will write the following parameters to /fs/mtd_caldata
: CAL_ACC*, CAL_GYRO*, CAL_MAG*. 当参数被设置(或重置)为其默认值时,此数据将被使用。
WARNING
This feature relies on the FMU having a dedicated EEPROM chip or an accompanying IMU PCBA that has sufficient space for the data. PX4 will store the data to /fs/mtd_caldata
, creating the file if necessary.
INFO
These values cannot be stored in the frame configuration because they vary from device to device (the frame configuration defines the set of parameters that are applicable across all vehicles of the same type, such as the enabled sensors, autopilot rotation and PID tuning).
执行工厂校准
- Set the parameter SYS_FAC_CAL_MODE to 1.
- Perform all IMU calibrations: accelerometer, gyroscope and magnetometer.
- Reboot the vehicle. This will write all
CAL_ACC*
,CAL_GYRO*
andCAL_MAG*
parameters into/fs/mtd_caldata
. - Set the parameter
SYS_FAC_CAL_MODE
back to 0 (default).
INFO
If you only want to factory calibrate the accelerometer and the gyroscope you can set SYS_FAC_CAL_MODE to 2, in which case the magnetometer is omitted.
随后的用户校准将像往常一样生效(工厂校准数据仅用于参数默认值)。