mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-11 18:38:28 -04:00
modify the IMU code for AP_Param
This commit is contained in:
parent
32d997b95f
commit
78564f6a92
@ -21,6 +21,11 @@
|
|||||||
|
|
||||||
#include "AP_IMU_INS.h"
|
#include "AP_IMU_INS.h"
|
||||||
|
|
||||||
|
const AP_Param::GroupInfo AP_IMU_INS::var_info[] PROGMEM = {
|
||||||
|
{ AP_PARAM_VECTOR3F, "", VAROFFSET(AP_IMU_INS, _sensor_cal) },
|
||||||
|
{ AP_PARAM_NONE, "" }
|
||||||
|
};
|
||||||
|
|
||||||
void
|
void
|
||||||
AP_IMU_INS::init( Start_style style,
|
AP_IMU_INS::init( Start_style style,
|
||||||
void (*delay_cb)(unsigned long t),
|
void (*delay_cb)(unsigned long t),
|
||||||
|
@ -26,9 +26,8 @@ public:
|
|||||||
/// @param adc Pointer to the AP_ADC instance that is connected to the gyro and accelerometer.
|
/// @param adc Pointer to the AP_ADC instance that is connected to the gyro and accelerometer.
|
||||||
/// @param key The AP_Var::key value we will use when loading/saving calibration data.
|
/// @param key The AP_Var::key value we will use when loading/saving calibration data.
|
||||||
///
|
///
|
||||||
AP_IMU_INS(AP_InertialSensor *ins, AP_Var::Key key) :
|
AP_IMU_INS(AP_InertialSensor *ins) :
|
||||||
_ins(ins),
|
_ins(ins)
|
||||||
_sensor_cal(key, PSTR("IMU_SENSOR_CAL"))
|
|
||||||
{}
|
{}
|
||||||
|
|
||||||
/// Do warm or cold start.
|
/// Do warm or cold start.
|
||||||
@ -65,10 +64,11 @@ public:
|
|||||||
virtual void ay(const float v) { _sensor_cal[4] = v; }
|
virtual void ay(const float v) { _sensor_cal[4] = v; }
|
||||||
virtual void az(const float v) { _sensor_cal[5] = v; }
|
virtual void az(const float v) { _sensor_cal[5] = v; }
|
||||||
|
|
||||||
|
static const struct AP_Param::GroupInfo var_info[];
|
||||||
|
|
||||||
private:
|
private:
|
||||||
AP_InertialSensor *_ins; ///< INS provides an axis and unit correct sensor source.
|
AP_InertialSensor *_ins; ///< INS provides an axis and unit correct sensor source.
|
||||||
AP_VarA<float,6> _sensor_cal; ///< Calibrated sensor offsets
|
AP_Vector6f _sensor_cal; ///< Calibrated sensor offsets
|
||||||
|
|
||||||
virtual void _init_accel(void (*delay_cb)(unsigned long t),
|
virtual void _init_accel(void (*delay_cb)(unsigned long t),
|
||||||
void (*flash_leds_cb)(bool on) = NULL); ///< no-save implementation
|
void (*flash_leds_cb)(bool on) = NULL); ///< no-save implementation
|
||||||
|
Loading…
Reference in New Issue
Block a user