AP_InertialSensor: Improve bitmask indicating persistent parameters on bootloader flash

INS_TCAL_OPTIONS parameter description indicates a singular bit in a bitmask to persist Accels/TCAL parameters, however there are two separate bits for persistence.
This commit is contained in:
James O'Shannessy 2024-03-26 08:02:57 +11:00 committed by Randy Mackay
parent 2df6329f0e
commit 3f590d508e
1 changed files with 2 additions and 2 deletions

View File

@ -654,8 +654,8 @@ const AP_Param::GroupInfo AP_InertialSensor::var_info[] = {
// @Param: _TCAL_OPTIONS
// @DisplayName: Options for temperature calibration
// @Description: This enables optional temperature calibration features. Setting PersistParams will save the accelerometer and temperature calibration parameters in the bootloader sector on the next update of the bootloader.
// @Bitmask: 0:PersistParams
// @Description: This enables optional temperature calibration features. Setting of the Persist bits will save the temperature and/or accelerometer calibration parameters in the bootloader sector on the next update of the bootloader.
// @Bitmask: 0:PersistTemps, 1:PersistAccels
// @User: Advanced
AP_GROUPINFO("_TCAL_OPTIONS", 52, AP_InertialSensor, tcal_options, 0),