2021-01-07 20:46:35 -04:00
/*
This program is free software : you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation , either version 3 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program . If not , see < http : //www.gnu.org/licenses/>.
*/
/*
IMU temperature calibration handling
*/
2021-11-25 16:05:40 -04:00
# define AP_INLINE_VECTOR_OPS
2023-02-17 00:26:27 -04:00
# include "AP_InertialSensor_tempcal.h"
# include "AP_InertialSensor_config.h"
2021-01-07 20:46:35 -04:00
# if HAL_INS_TEMPERATURE_CAL_ENABLE
2021-01-09 01:23:18 -04:00
# include <GCS_MAVLink/GCS.h>
2021-01-09 06:33:52 -04:00
# include <AP_Logger/AP_Logger.h>
2021-01-16 00:59:35 -04:00
# include <AP_Common/ExpandingString.h>
2022-02-28 21:19:10 -04:00
# include <AP_Notify/AP_Notify.h>
2023-07-13 21:58:06 -03:00
# include "AP_InertialSensor.h"
2021-01-09 01:23:18 -04:00
// this scale factor ensures params are easy to work with in GUI parameter editors
# define SCALE_FACTOR 1.0e6
# define INV_SCALE_FACTOR 1.0e-6
2021-01-15 21:23:17 -04:00
# define TEMP_RANGE_MIN 10
2021-01-09 01:23:18 -04:00
2021-01-16 23:27:51 -04:00
// timeout calibration after 10 minutes, if no temperature rise
# define CAL_TIMEOUT_MS (600U*1000U)
/*
we use a fixed reference temperature of 35 C . This has the advantage
that we don ' t need to know the final temperature when doing an
online calibration which allows us to have a calibration timeout
*/
# define TEMP_REFERENCE 35.0
2021-01-09 01:23:18 -04:00
extern const AP_HAL : : HAL & hal ;
2021-01-07 20:46:35 -04:00
// temperature calibration parameters, per IMU
2023-02-17 00:26:27 -04:00
const AP_Param : : GroupInfo AP_InertialSensor_TCal : : var_info [ ] = {
2021-01-07 20:46:35 -04:00
// @Param: ENABLE
// @DisplayName: Enable temperature calibration
2021-01-15 21:23:17 -04:00
// @Description: Enable the use of temperature calibration parameters for this IMU. For automatic learning set to 2 and also set the INS_TCALn_TMAX to the target temperature, then reboot
2021-01-09 01:23:18 -04:00
// @Values: 0:Disabled,1:Enabled,2:LearnCalibration
2021-01-07 20:46:35 -04:00
// @User: Advanced
2021-01-15 21:23:17 -04:00
// @RebootRequired: True
2023-02-17 00:26:27 -04:00
AP_GROUPINFO_FLAGS ( " ENABLE " , 1 , AP_InertialSensor_TCal , enable , float ( Enable : : Disabled ) , AP_PARAM_FLAG_ENABLE ) ,
2021-01-07 20:46:35 -04:00
// @Param: TMIN
// @DisplayName: Temperature calibration min
// @Description: The minimum temperature that the calibration is valid for
// @Range: -70 80
// @Units: degC
// @User: Advanced
// @Calibration: 1
2023-02-17 00:26:27 -04:00
AP_GROUPINFO ( " TMIN " , 2 , AP_InertialSensor_TCal , temp_min , 0 ) ,
2021-01-07 20:46:35 -04:00
// @Param: TMAX
// @DisplayName: Temperature calibration max
2021-01-20 00:38:24 -04:00
// @Description: The maximum temperature that the calibration is valid for. This must be at least 10 degrees above TMIN for calibration
2021-01-07 20:46:35 -04:00
// @Range: -70 80
// @Units: degC
// @User: Advanced
// @Calibration: 1
2023-02-17 00:26:27 -04:00
AP_GROUPINFO ( " TMAX " , 3 , AP_InertialSensor_TCal , temp_max , 70 ) ,
2021-01-07 20:46:35 -04:00
// @Param: ACC1_X
// @DisplayName: Accelerometer 1st order temperature coefficient X axis
// @Description: This is the 1st order temperature coefficient from a temperature calibration
// @User: Advanced
// @Calibration: 1
// @Param: ACC1_Y
// @DisplayName: Accelerometer 1st order temperature coefficient Y axis
// @Description: This is the 1st order temperature coefficient from a temperature calibration
// @User: Advanced
// @Calibration: 1
// @Param: ACC1_Z
// @DisplayName: Accelerometer 1st order temperature coefficient Z axis
// @Description: This is the 1st order temperature coefficient from a temperature calibration
// @User: Advanced
// @Calibration: 1
2023-02-17 00:26:27 -04:00
AP_GROUPINFO ( " ACC1 " , 4 , AP_InertialSensor_TCal , accel_coeff [ 0 ] , 0 ) ,
2021-01-07 20:46:35 -04:00
// @Param: ACC2_X
// @DisplayName: Accelerometer 2nd order temperature coefficient X axis
// @Description: This is the 2nd order temperature coefficient from a temperature calibration
// @User: Advanced
// @Calibration: 1
// @Param: ACC2_Y
// @DisplayName: Accelerometer 2nd order temperature coefficient Y axis
// @Description: This is the 2nd order temperature coefficient from a temperature calibration
// @User: Advanced
// @Calibration: 1
// @Param: ACC2_Z
// @DisplayName: Accelerometer 2nd order temperature coefficient Z axis
// @Description: This is the 2nd order temperature coefficient from a temperature calibration
// @User: Advanced
// @Calibration: 1
2023-02-17 00:26:27 -04:00
AP_GROUPINFO ( " ACC2 " , 5 , AP_InertialSensor_TCal , accel_coeff [ 1 ] , 0 ) ,
2021-01-07 20:46:35 -04:00
// @Param: ACC3_X
// @DisplayName: Accelerometer 3rd order temperature coefficient X axis
// @Description: This is the 3rd order temperature coefficient from a temperature calibration
// @User: Advanced
// @Calibration: 1
// @Param: ACC3_Y
// @DisplayName: Accelerometer 3rd order temperature coefficient Y axis
// @Description: This is the 3rd order temperature coefficient from a temperature calibration
// @User: Advanced
// @Calibration: 1
// @Param: ACC3_Z
// @DisplayName: Accelerometer 3rd order temperature coefficient Z axis
// @Description: This is the 3rd order temperature coefficient from a temperature calibration
// @User: Advanced
// @Calibration: 1
2023-02-17 00:26:27 -04:00
AP_GROUPINFO ( " ACC3 " , 6 , AP_InertialSensor_TCal , accel_coeff [ 2 ] , 0 ) ,
2021-01-07 20:46:35 -04:00
// @Param: GYR1_X
// @DisplayName: Gyroscope 1st order temperature coefficient X axis
// @Description: This is the 1st order temperature coefficient from a temperature calibration
// @User: Advanced
// @Calibration: 1
// @Param: GYR1_Y
// @DisplayName: Gyroscope 1st order temperature coefficient Y axis
// @Description: This is the 1st order temperature coefficient from a temperature calibration
// @User: Advanced
// @Calibration: 1
// @Param: GYR1_Z
// @DisplayName: Gyroscope 1st order temperature coefficient Z axis
// @Description: This is the 1st order temperature coefficient from a temperature calibration
// @User: Advanced
// @Calibration: 1
2023-02-17 00:26:27 -04:00
AP_GROUPINFO ( " GYR1 " , 7 , AP_InertialSensor_TCal , gyro_coeff [ 0 ] , 0 ) ,
2021-01-07 20:46:35 -04:00
// @Param: GYR2_X
// @DisplayName: Gyroscope 2nd order temperature coefficient X axis
// @Description: This is the 2nd order temperature coefficient from a temperature calibration
// @User: Advanced
// @Calibration: 1
// @Param: GYR2_Y
// @DisplayName: Gyroscope 2nd order temperature coefficient Y axis
// @Description: This is the 2nd order temperature coefficient from a temperature calibration
// @User: Advanced
// @Calibration: 1
// @Param: GYR2_Z
// @DisplayName: Gyroscope 2nd order temperature coefficient Z axis
// @Description: This is the 2nd order temperature coefficient from a temperature calibration
// @User: Advanced
// @Calibration: 1
2023-02-17 00:26:27 -04:00
AP_GROUPINFO ( " GYR2 " , 8 , AP_InertialSensor_TCal , gyro_coeff [ 1 ] , 0 ) ,
2021-01-07 20:46:35 -04:00
// @Param: GYR3_X
// @DisplayName: Gyroscope 3rd order temperature coefficient X axis
// @Description: This is the 3rd order temperature coefficient from a temperature calibration
// @User: Advanced
// @Calibration: 1
// @Param: GYR3_Y
// @DisplayName: Gyroscope 3rd order temperature coefficient Y axis
// @Description: This is the 3rd order temperature coefficient from a temperature calibration
// @User: Advanced
// @Calibration: 1
// @Param: GYR3_Z
// @DisplayName: Gyroscope 3rd order temperature coefficient Z axis
// @Description: This is the 3rd order temperature coefficient from a temperature calibration
// @User: Advanced
// @Calibration: 1
2023-02-17 00:26:27 -04:00
AP_GROUPINFO ( " GYR3 " , 9 , AP_InertialSensor_TCal , gyro_coeff [ 2 ] , 0 ) ,
2021-01-07 20:46:35 -04:00
AP_GROUPEND
} ;
/*
evaluate a 3 rd order polynomial ( without the constant term ) given a set of coefficients
*/
2023-02-17 00:26:27 -04:00
Vector3f AP_InertialSensor_TCal : : polynomial_eval ( float tdiff , const AP_Vector3f coeff [ 3 ] ) const
2021-01-07 20:46:35 -04:00
{
// evaluate order 3 polynomial
const Vector3f * c = ( Vector3f * ) & coeff [ 0 ] ;
2021-01-09 01:23:18 -04:00
return ( c [ 0 ] + ( c [ 1 ] + c [ 2 ] * tdiff ) * tdiff ) * tdiff * INV_SCALE_FACTOR ;
2021-01-07 20:46:35 -04:00
}
/*
correct a single sensor for the current temperature
*/
2023-02-17 00:26:27 -04:00
void AP_InertialSensor_TCal : : correct_sensor ( float temperature , float cal_temp , const AP_Vector3f coeff [ 3 ] , Vector3f & v ) const
2021-01-07 20:46:35 -04:00
{
2021-01-09 01:23:18 -04:00
if ( enable ! = Enable : : Enabled ) {
2021-01-07 20:46:35 -04:00
return ;
}
temperature = constrain_float ( temperature , temp_min , temp_max ) ;
cal_temp = constrain_float ( cal_temp , temp_min , temp_max ) ;
// get the polynomial correction for the difference between the
2021-01-08 06:50:24 -04:00
// current temperature and the mid temperature
2021-01-16 23:27:51 -04:00
v - = polynomial_eval ( temperature - TEMP_REFERENCE , coeff ) ;
2021-01-07 20:46:35 -04:00
// we need to add the correction for the temperature
2021-01-16 23:27:51 -04:00
// difference between the TREF, which is the reference used for
2021-01-07 20:46:35 -04:00
// the calibration process, and the cal_temp, which is the
// temperature that the offsets and scale factors was setup for
2021-01-16 23:27:51 -04:00
v + = polynomial_eval ( cal_temp - TEMP_REFERENCE , coeff ) ;
2021-01-07 20:46:35 -04:00
}
2023-02-17 00:26:27 -04:00
void AP_InertialSensor_TCal : : correct_accel ( float temperature , float cal_temp , Vector3f & accel ) const
2021-01-07 20:46:35 -04:00
{
correct_sensor ( temperature , cal_temp , accel_coeff , accel ) ;
}
2023-02-17 00:26:27 -04:00
void AP_InertialSensor_TCal : : correct_gyro ( float temperature , float cal_temp , Vector3f & gyro ) const
2021-01-07 20:46:35 -04:00
{
correct_sensor ( temperature , cal_temp , gyro_coeff , gyro ) ;
}
2021-01-17 21:29:02 -04:00
/*
for SITL we don ' t apply the temperature limits and use mid - point as
reference . This makes the SITL data independent of TEMP_REFERENCE
and prevents an abrupt change at the endpoints
*/
2023-02-17 00:26:27 -04:00
void AP_InertialSensor_TCal : : sitl_apply_accel ( float temperature , Vector3f & accel ) const
2021-01-08 06:50:24 -04:00
{
2021-01-17 21:29:02 -04:00
const float tmid = 0.5 * ( temp_max + temp_min ) ;
accel + = polynomial_eval ( temperature - tmid , accel_coeff ) ;
2021-01-08 06:50:24 -04:00
}
2023-02-17 00:26:27 -04:00
void AP_InertialSensor_TCal : : sitl_apply_gyro ( float temperature , Vector3f & gyro ) const
2021-01-08 06:50:24 -04:00
{
2021-01-17 21:29:02 -04:00
const float tmid = 0.5 * ( temp_max + temp_min ) ;
gyro + = polynomial_eval ( temperature - tmid , gyro_coeff ) ;
2021-01-08 06:50:24 -04:00
}
2023-02-17 00:26:27 -04:00
AP_InertialSensor_TCal : : Learn : : Learn ( AP_InertialSensor_TCal & _tcal , float _start_temp ) :
2021-01-09 06:33:52 -04:00
start_temp ( _start_temp ) ,
tcal ( _tcal )
{
2021-01-10 16:37:08 -04:00
reset ( _start_temp ) ;
2021-01-09 06:33:52 -04:00
}
2021-01-09 01:23:18 -04:00
/*
update polyfit with new sample
*/
2023-02-17 00:26:27 -04:00
void AP_InertialSensor_TCal : : Learn : : add_sample ( const Vector3f & sample , float temperature , struct LearnState & st )
2021-01-09 01:23:18 -04:00
{
2021-01-09 06:33:52 -04:00
temperature = st . temp_filter . apply ( temperature ) ;
st . sum + = sample ;
st . sum_count + + ;
2021-01-16 23:27:51 -04:00
uint32_t now = AP_HAL : : millis ( ) ;
2021-01-09 06:33:52 -04:00
if ( st . sum_count < 100 | |
temperature - st . last_temp < 0.5 ) {
2021-01-16 23:27:51 -04:00
// check for timeout
if ( st . last_sample_ms ! = 0 & &
temperature - start_temp > = TEMP_RANGE_MIN & &
now - st . last_sample_ms > CAL_TIMEOUT_MS ) {
// we have timed out, finish up now
finish_calibration ( st . last_temp ) ;
}
2021-01-09 06:33:52 -04:00
// wait for more data
return ;
}
st . sum / = st . sum_count ;
const uint8_t si = & st - & state [ 0 ] ;
const float T = ( temperature + st . last_temp ) * 0.5 ;
if ( si = = 0 ) {
// we use the first accel sample as the zero baseline
if ( accel_start . is_zero ( ) ) {
accel_start = st . sum ;
start_temp = T ;
}
st . sum - = accel_start ;
}
2021-01-16 23:27:51 -04:00
const float tdiff = T - TEMP_REFERENCE ;
2022-06-05 08:28:40 -03:00
# if HAL_LOGGING_ENABLED
2021-01-16 23:27:51 -04:00
AP : : logger ( ) . Write ( " TCLR " , " TimeUS,I,SType,Temp,X,Y,Z,NSamp " ,
" s#------ " ,
" F000000- " ,
" QBBffffI " ,
2021-01-09 06:33:52 -04:00
AP_HAL : : micros64 ( ) ,
instance ( ) ,
si ,
T ,
2021-01-16 18:26:09 -04:00
st . sum . x , st . sum . y , st . sum . z ,
st . sum_count ) ;
2022-06-05 08:28:40 -03:00
# endif
2021-01-09 06:33:52 -04:00
2021-01-17 21:29:02 -04:00
st . pfit . update ( tdiff , st . sum ) ;
2021-01-09 01:23:18 -04:00
2021-01-09 06:33:52 -04:00
st . sum . zero ( ) ;
st . sum_count = 0 ;
st . last_temp = temperature ;
2021-01-16 23:27:51 -04:00
st . last_sample_ms = now ;
if ( temperature - start_temp > = TEMP_RANGE_MIN ) {
if ( temperature > = start_tmax ) {
// we've reached the target temperature
finish_calibration ( temperature ) ;
2021-01-20 00:38:24 -04:00
} else if ( now - last_save_ms > 15000 ) {
2021-01-16 23:27:51 -04:00
// save partial calibration, so if user stops the cal part
// way then they still have a useful calibration
2021-01-20 00:38:24 -04:00
last_save_ms = now ;
2021-01-16 23:27:51 -04:00
save_calibration ( st . last_temp ) ;
}
2021-01-09 01:23:18 -04:00
}
}
/*
update accel temperature compensation learning
*/
2023-02-17 00:26:27 -04:00
void AP_InertialSensor_TCal : : update_accel_learning ( const Vector3f & accel , float temperature )
2021-01-09 01:23:18 -04:00
{
if ( enable ! = Enable : : LearnCalibration ) {
return ;
}
if ( learn = = nullptr & & hal . scheduler - > is_system_initialized ( ) ) {
learn = new Learn ( * this , temperature ) ;
if ( learn ) {
GCS_SEND_TEXT ( MAV_SEVERITY_WARNING , " TCAL[%u]: started calibration t=%.1fC tmax=%.1fC " ,
2021-01-10 17:08:22 -04:00
instance ( ) + 1 ,
2021-01-16 23:27:51 -04:00
temperature , learn - > start_tmax ) ;
2021-01-10 16:09:44 -04:00
AP_Notify : : events . initiated_temp_cal = 1 ;
2021-01-09 01:23:18 -04:00
}
}
if ( learn ! = nullptr ) {
2021-01-10 16:09:44 -04:00
AP_Notify : : flags . temp_cal_running = true ;
2021-01-09 06:33:52 -04:00
learn - > add_sample ( accel , temperature , learn - > state [ 0 ] ) ;
2021-01-09 01:23:18 -04:00
}
}
/*
update gyro temperature compensation learning
*/
2023-02-17 00:26:27 -04:00
void AP_InertialSensor_TCal : : update_gyro_learning ( const Vector3f & gyro , float temperature )
2021-01-09 01:23:18 -04:00
{
if ( enable ! = Enable : : LearnCalibration ) {
return ;
}
if ( learn ! = nullptr ) {
2021-01-09 06:33:52 -04:00
learn - > add_sample ( gyro , temperature , learn - > state [ 1 ] ) ;
2021-01-09 01:23:18 -04:00
}
}
2021-01-10 16:37:08 -04:00
/*
reset calibration
*/
2023-02-17 00:26:27 -04:00
void AP_InertialSensor_TCal : : Learn : : reset ( float temperature )
2021-01-10 16:37:08 -04:00
{
2021-07-26 01:38:10 -03:00
memset ( ( void * ) & state [ 0 ] , 0 , sizeof ( state ) ) ;
2021-01-10 16:37:08 -04:00
start_tmax = tcal . temp_max ;
accel_start . zero ( ) ;
2021-01-20 00:07:15 -04:00
for ( uint8_t i = 0 ; i < ARRAY_SIZE ( state ) ; i + + ) {
2021-01-10 16:37:08 -04:00
state [ i ] . temp_filter . set_cutoff_frequency ( 1000 , 0.5 ) ;
state [ i ] . temp_filter . reset ( temperature ) ;
state [ i ] . last_temp = temperature ;
}
}
2021-01-09 01:23:18 -04:00
/*
finish and save calibration
*/
2023-02-17 00:26:27 -04:00
void AP_InertialSensor_TCal : : Learn : : finish_calibration ( float temperature )
2021-01-16 23:27:51 -04:00
{
if ( ! save_calibration ( temperature ) ) {
GCS_SEND_TEXT ( MAV_SEVERITY_WARNING , " TCAL[%u]: failed fit " , instance ( ) + 1 ) ;
AP_Notify : : events . temp_cal_failed = 1 ;
2023-02-17 00:26:27 -04:00
tcal . enable . set_and_save_ifchanged ( int8_t ( AP_InertialSensor_TCal : : Enable : : Disabled ) ) ;
2021-01-16 23:27:51 -04:00
return ;
}
GCS_SEND_TEXT ( MAV_SEVERITY_WARNING , " TCAL[%u]: completed calibration tmin=%.1f tmax=%.1f " ,
instance ( ) + 1 ,
tcal . temp_min . get ( ) , tcal . temp_max . get ( ) ) ;
2023-02-17 00:26:27 -04:00
tcal . enable . set_and_save_ifchanged ( int8_t ( AP_InertialSensor_TCal : : Enable : : Enabled ) ) ;
2021-01-16 23:27:51 -04:00
}
/*
save calibration state
*/
2023-02-17 00:26:27 -04:00
bool AP_InertialSensor_TCal : : Learn : : save_calibration ( float temperature )
2021-01-09 01:23:18 -04:00
{
Vector3f coefficients [ 3 ] ;
2021-01-09 06:33:52 -04:00
2021-01-17 21:29:02 -04:00
Vector3f p [ 4 ] ;
if ( ! state [ 0 ] . pfit . get_polynomial ( p ) ) {
return false ;
}
for ( uint8_t k = 0 ; k < 3 ; k + + ) {
coefficients [ k ] = p [ 2 - k ] * SCALE_FACTOR ;
2021-01-09 01:23:18 -04:00
}
2021-01-17 21:29:02 -04:00
2021-01-09 01:23:18 -04:00
for ( uint8_t k = 0 ; k < 3 ; k + + ) {
2021-01-16 23:27:51 -04:00
tcal . accel_coeff [ k ] . set_and_save_ifchanged ( coefficients [ k ] ) ;
2021-01-09 01:23:18 -04:00
}
2021-01-09 06:33:52 -04:00
2021-01-17 21:29:02 -04:00
if ( ! state [ 1 ] . pfit . get_polynomial ( p ) ) {
return false ;
2021-01-09 01:23:18 -04:00
}
2021-01-17 21:29:02 -04:00
for ( uint8_t k = 0 ; k < 3 ; k + + ) {
coefficients [ k ] = p [ 2 - k ] * SCALE_FACTOR ;
}
2021-01-09 01:23:18 -04:00
for ( uint8_t k = 0 ; k < 3 ; k + + ) {
2021-01-16 23:27:51 -04:00
tcal . gyro_coeff [ k ] . set_and_save_ifchanged ( coefficients [ k ] ) ;
2021-01-09 01:23:18 -04:00
}
2021-01-16 23:27:51 -04:00
tcal . temp_min . set_and_save_ifchanged ( start_temp ) ;
tcal . temp_max . set_and_save_ifchanged ( temperature ) ;
return true ;
2021-01-09 01:23:18 -04:00
}
2023-02-17 00:26:27 -04:00
uint8_t AP_InertialSensor_TCal : : instance ( void ) const
2021-01-09 01:23:18 -04:00
{
return AP : : ins ( ) . tcal_instance ( * this ) ;
}
2021-01-16 00:59:35 -04:00
/*
get a string representation of parameters for this calibration set
*/
2023-02-17 00:26:27 -04:00
void AP_InertialSensor_TCal : : get_persistent_params ( ExpandingString & str ) const
2021-01-16 00:59:35 -04:00
{
2023-02-17 00:26:27 -04:00
if ( enable ! = AP_InertialSensor_TCal : : Enable : : Enabled ) {
2021-01-16 00:59:35 -04:00
return ;
}
const uint8_t imu = instance ( ) + 1 ;
2023-02-17 00:26:27 -04:00
# if INS_AUX_INSTANCES
if ( imu > 3 ) {
str . printf ( " INS%u_TCAL_ENABLE=1 \n " , imu ) ;
str . printf ( " INS%u_TCAL_TMIN=%.2f \n " , imu , temp_min . get ( ) ) ;
str . printf ( " INS%u_TCAL_TMAX=%.2f \n " , imu , temp_max . get ( ) ) ;
for ( uint8_t k = 0 ; k < 3 ; k + + ) {
const Vector3f & acc = accel_coeff [ k ] . get ( ) ;
const Vector3f & gyr = gyro_coeff [ k ] . get ( ) ;
str . printf ( " INS%u_TCAL_ACC%u_X=%f \n " , imu , k + 1 , acc . x ) ;
str . printf ( " INS%u_TCAL_ACC%u_Y=%f \n " , imu , k + 1 , acc . y ) ;
str . printf ( " INS%u_TCAL_ACC%u_Z=%f \n " , imu , k + 1 , acc . z ) ;
str . printf ( " INS%u_TCAL_GYR%u_X=%f \n " , imu , k + 1 , gyr . x ) ;
str . printf ( " INS%u_TCAL_GYR%u_Y=%f \n " , imu , k + 1 , gyr . y ) ;
str . printf ( " INS%u_TCAL_GYR%u_Z=%f \n " , imu , k + 1 , gyr . z ) ;
}
return ;
}
# endif
2021-01-16 00:59:35 -04:00
str . printf ( " INS_TCAL%u_ENABLE=1 \n " , imu ) ;
2021-01-16 01:40:00 -04:00
str . printf ( " INS_TCAL%u_TMIN=%.2f \n " , imu , temp_min . get ( ) ) ;
str . printf ( " INS_TCAL%u_TMAX=%.2f \n " , imu , temp_max . get ( ) ) ;
2021-01-16 00:59:35 -04:00
for ( uint8_t k = 0 ; k < 3 ; k + + ) {
const Vector3f & acc = accel_coeff [ k ] . get ( ) ;
const Vector3f & gyr = gyro_coeff [ k ] . get ( ) ;
2021-01-16 01:40:00 -04:00
str . printf ( " INS_TCAL%u_ACC%u_X=%f \n " , imu , k + 1 , acc . x ) ;
str . printf ( " INS_TCAL%u_ACC%u_Y=%f \n " , imu , k + 1 , acc . y ) ;
str . printf ( " INS_TCAL%u_ACC%u_Z=%f \n " , imu , k + 1 , acc . z ) ;
str . printf ( " INS_TCAL%u_GYR%u_X=%f \n " , imu , k + 1 , gyr . x ) ;
str . printf ( " INS_TCAL%u_GYR%u_Y=%f \n " , imu , k + 1 , gyr . y ) ;
str . printf ( " INS_TCAL%u_GYR%u_Z=%f \n " , imu , k + 1 , gyr . z ) ;
2021-01-16 00:59:35 -04:00
}
}
/*
get a string representation of parameters that should be made
persistent across changes of firmware type
*/
void AP_InertialSensor : : get_persistent_params ( ExpandingString & str ) const
{
2021-01-16 01:40:00 -04:00
bool save_options = false ;
if ( uint32_t ( tcal_options . get ( ) ) & uint32_t ( TCalOptions : : PERSIST_ACCEL_CAL ) ) {
save_options = true ;
2023-02-17 00:26:27 -04:00
for ( uint8_t i = 0 ; i < ( INS_MAX_INSTANCES - INS_AUX_INSTANCES ) ; i + + ) {
2021-01-16 01:40:00 -04:00
const uint8_t imu = i + 1 ;
2023-02-17 00:26:27 -04:00
const Vector3f & aoff = _accel_offset ( i ) . get ( ) ;
const Vector3f & ascl = _accel_scale ( i ) . get ( ) ;
2021-01-16 01:40:00 -04:00
char id [ 2 ] = " " ;
if ( i > 0 ) {
id [ 0 ] = ' 1 ' + i ;
}
2023-02-17 00:26:27 -04:00
str . printf ( " INS_ACC%s_ID=%u \n " , id , unsigned ( _accel_id ( i ) . get ( ) ) ) ;
2021-01-16 01:40:00 -04:00
str . printf ( " INS_ACC%sOFFS_X=%f \n " , id , aoff . x ) ;
str . printf ( " INS_ACC%sOFFS_Y=%f \n " , id , aoff . y ) ;
str . printf ( " INS_ACC%sOFFS_Z=%f \n " , id , aoff . z ) ;
str . printf ( " INS_ACC%sSCAL_X=%f \n " , id , ascl . x ) ;
str . printf ( " INS_ACC%sSCAL_Y=%f \n " , id , ascl . y ) ;
str . printf ( " INS_ACC%sSCAL_Z=%f \n " , id , ascl . z ) ;
2023-02-17 00:26:27 -04:00
str . printf ( " INS_ACC%u_CALTEMP=%.2f \n " , imu , caltemp_accel ( i ) . get ( ) ) ;
2021-01-16 01:40:00 -04:00
}
2023-02-17 00:26:27 -04:00
# if INS_AUX_INSTANCES
for ( uint8_t i = 0 ; i < INS_AUX_INSTANCES ; i + + ) {
const uint8_t imu = i + ( INS_MAX_INSTANCES - INS_AUX_INSTANCES ) ;
const Vector3f & aoff = params [ i ] . _accel_offset . get ( ) ;
const Vector3f & ascl = params [ i ] . _accel_scale . get ( ) ;
str . printf ( " INS%u_ACC_ID=%u \n " , imu , unsigned ( params [ i ] . _accel_id . get ( ) ) ) ;
str . printf ( " INS%u_ACCOFFS_X=%f \n " , imu , aoff . x ) ;
str . printf ( " INS%u_ACCOFFS_Y=%f \n " , imu , aoff . y ) ;
str . printf ( " INS%u_ACCOFFS_Z=%f \n " , imu , aoff . z ) ;
str . printf ( " INS%u_ACCSCAL_X=%f \n " , imu , ascl . x ) ;
str . printf ( " INS%u_ACCSCAL_Y=%f \n " , imu , ascl . y ) ;
str . printf ( " INS%u_ACC_CALTEMP=%.2f \n " , imu , params [ i ] . caltemp_accel . get ( ) ) ;
}
# endif
2021-01-16 01:40:00 -04:00
}
if ( uint32_t ( tcal_options . get ( ) ) & uint32_t ( TCalOptions : : PERSIST_TEMP_CAL ) ) {
2023-02-17 00:26:27 -04:00
for ( auto & tc : tcal_old_param ) {
2021-01-16 01:40:00 -04:00
tc . get_persistent_params ( str ) ;
}
2023-02-17 00:26:27 -04:00
# if INS_AUX_INSTANCES
for ( uint8_t i = 0 ; i < INS_AUX_INSTANCES ; i + + ) {
params [ i ] . tcal . get_persistent_params ( str ) ;
}
# endif
2021-01-16 01:40:00 -04:00
save_options = true ;
}
if ( save_options ) {
/*
we also have to save the TCAL_OPTIONS parameter so that
2021-01-17 21:29:02 -04:00
future flashing of the bootloader doesn ' t cause an erase
2021-01-16 01:40:00 -04:00
*/
str . printf ( " INS_TCAL_OPTIONS=%u \n " , unsigned ( tcal_options . get ( ) ) ) ;
2021-01-16 00:59:35 -04:00
}
}
2021-01-07 20:46:35 -04:00
# endif // HAL_INS_TEMPERATURE_CAL_ENABLE