mirror of https://github.com/ArduPilot/ardupilot
AP_Compass: added COMPASS_BAT_MASK for which batteries to compensate with
this allows selection of batteries that need to be used for compass motor compensation with current
This commit is contained in:
parent
b0aa456daa
commit
c6e60ef168
|
@ -152,6 +152,13 @@ const AP_Param::GroupInfo Compass::var_info[] = {
|
||||||
// @Increment: 1
|
// @Increment: 1
|
||||||
// @User: Advanced
|
// @User: Advanced
|
||||||
AP_GROUPINFO("MOT", 7, Compass, _state._priv_instance[0].motor_compensation, 0),
|
AP_GROUPINFO("MOT", 7, Compass, _state._priv_instance[0].motor_compensation, 0),
|
||||||
|
|
||||||
|
// @Param: BAT_MASK
|
||||||
|
// @DisplayName: Motor interference compensation battery index
|
||||||
|
// @Description: The mask battery numbers that are used for motor compensation of compasses. Total current is sum of current from the selected batteries
|
||||||
|
// @Bitmask: 0:FirstBattery,1:2ndBattery,2:3rdBattery,3:4thBattery,4:5thBattery,5:6thBattery,6:7thBattery,7:8thBattery,8:9thBattery
|
||||||
|
// @User: Advanced
|
||||||
|
AP_GROUPINFO("BAT_MASK", 52, Compass, _motor_comp_batmask, 1),
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @Param: ORIENT
|
// @Param: ORIENT
|
||||||
|
|
|
@ -470,6 +470,9 @@ private:
|
||||||
// 0 = disabled, 1 = enabled for throttle, 2 = enabled for current
|
// 0 = disabled, 1 = enabled for throttle, 2 = enabled for current
|
||||||
AP_Int8 _motor_comp_type;
|
AP_Int8 _motor_comp_type;
|
||||||
|
|
||||||
|
// motor compensation battery mask
|
||||||
|
AP_Int16 _motor_comp_batmask;
|
||||||
|
|
||||||
// automatic compass orientation on calibration
|
// automatic compass orientation on calibration
|
||||||
AP_Int8 _rotate_auto;
|
AP_Int8 _rotate_auto;
|
||||||
|
|
||||||
|
|
|
@ -103,10 +103,17 @@ void AP_Compass_Backend::correct_field(Vector3f &mag, uint8_t i)
|
||||||
state.motor_offset = mot * _compass._thr;
|
state.motor_offset = mot * _compass._thr;
|
||||||
} else if (_compass._motor_comp_type == AP_COMPASS_MOT_COMP_CURRENT) {
|
} else if (_compass._motor_comp_type == AP_COMPASS_MOT_COMP_CURRENT) {
|
||||||
AP_BattMonitor &battery = AP::battery();
|
AP_BattMonitor &battery = AP::battery();
|
||||||
float current;
|
float current_sum = 0;
|
||||||
if (battery.current_amps(current)) {
|
for (uint8_t b=0; b<AP_BATT_MONITOR_MAX_INSTANCES; b++) {
|
||||||
state.motor_offset = mot * current;
|
const uint16_t mask = 1U<<b;
|
||||||
|
if (mask & uint16_t(_compass._motor_comp_batmask)) {
|
||||||
|
float current;
|
||||||
|
if (battery.current_amps(current, b)) {
|
||||||
|
current_sum += current;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
state.motor_offset = mot * current_sum;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue