mirror of https://github.com/ArduPilot/ardupilot
AP_Mount: Do not override default mode when first connecting to RC
This commit is contained in:
parent
860498d30e
commit
495726344c
|
@ -618,6 +618,13 @@ void AP_Mount_Backend::set_rctargeting_on_rcinput_change()
|
||||||
const int16_t pitch_in = (pitch_ch == nullptr) ? 0 : pitch_ch->get_radio_in();
|
const int16_t pitch_in = (pitch_ch == nullptr) ? 0 : pitch_ch->get_radio_in();
|
||||||
const int16_t yaw_in = (yaw_ch == nullptr) ? 0 : yaw_ch->get_radio_in();
|
const int16_t yaw_in = (yaw_ch == nullptr) ? 0 : yaw_ch->get_radio_in();
|
||||||
|
|
||||||
|
if (!last_rc_input.initialised) {
|
||||||
|
// The first time through, initial RC inputs should be set, but not used
|
||||||
|
last_rc_input.initialised = true;
|
||||||
|
last_rc_input.roll_in = roll_in;
|
||||||
|
last_rc_input.pitch_in = pitch_in;
|
||||||
|
last_rc_input.yaw_in = yaw_in;
|
||||||
|
}
|
||||||
// if not in RC_TARGETING or RETRACT modes then check for RC change
|
// if not in RC_TARGETING or RETRACT modes then check for RC change
|
||||||
if (get_mode() != MAV_MOUNT_MODE_RC_TARGETING && get_mode() != MAV_MOUNT_MODE_RETRACT) {
|
if (get_mode() != MAV_MOUNT_MODE_RC_TARGETING && get_mode() != MAV_MOUNT_MODE_RETRACT) {
|
||||||
// get dead zones
|
// get dead zones
|
||||||
|
@ -633,7 +640,7 @@ void AP_Mount_Backend::set_rctargeting_on_rcinput_change()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// if in RC_TARGETING or RETRACT mode then store last RC input
|
// if NOW in RC_TARGETING or RETRACT mode then store last RC input (mode might have changed)
|
||||||
if (get_mode() == MAV_MOUNT_MODE_RC_TARGETING || get_mode() == MAV_MOUNT_MODE_RETRACT) {
|
if (get_mode() == MAV_MOUNT_MODE_RC_TARGETING || get_mode() == MAV_MOUNT_MODE_RETRACT) {
|
||||||
last_rc_input.roll_in = roll_in;
|
last_rc_input.roll_in = roll_in;
|
||||||
last_rc_input.pitch_in = pitch_in;
|
last_rc_input.pitch_in = pitch_in;
|
||||||
|
|
|
@ -329,6 +329,7 @@ protected:
|
||||||
|
|
||||||
// structure holding the last RC inputs
|
// structure holding the last RC inputs
|
||||||
struct {
|
struct {
|
||||||
|
bool initialised;
|
||||||
int16_t roll_in;
|
int16_t roll_in;
|
||||||
int16_t pitch_in;
|
int16_t pitch_in;
|
||||||
int16_t yaw_in;
|
int16_t yaw_in;
|
||||||
|
|
Loading…
Reference in New Issue