mirror of https://github.com/ArduPilot/ardupilot
RC_Channel: Add a MOUNT2 retract
Update libraries/RC_Channel/RC_Channel.cpp Co-authored-by: Peter Hall <33176108+IamPete1@users.noreply.github.com>
This commit is contained in:
parent
31f3a796f1
commit
d6a79c0e02
|
@ -209,6 +209,7 @@ const AP_Param::GroupInfo RC_Channel::var_info[] = {
|
||||||
// @Values{Copter}: 109:use Custom Controller
|
// @Values{Copter}: 109:use Custom Controller
|
||||||
// @Values{Copter, Rover, Plane, Blimp}: 110:KillIMU3
|
// @Values{Copter, Rover, Plane, Blimp}: 110:KillIMU3
|
||||||
// @Values{Copter,Plane,Rover,Blimp,Sub,Tracker}: 112:SwitchExternalAHRS
|
// @Values{Copter,Plane,Rover,Blimp,Sub,Tracker}: 112:SwitchExternalAHRS
|
||||||
|
// @Values{Copter, Rover, Plane}: 113:Retract Mount2
|
||||||
// @Values{Plane}: 150:CRUISE Mode
|
// @Values{Plane}: 150:CRUISE Mode
|
||||||
// @Values{Copter}: 151:TURTLE Mode
|
// @Values{Copter}: 151:TURTLE Mode
|
||||||
// @Values{Copter}: 152:SIMPLE heading reset
|
// @Values{Copter}: 152:SIMPLE heading reset
|
||||||
|
@ -731,6 +732,7 @@ void RC_Channel::init_aux_function(const AUX_FUNC ch_option, const AuxSwitchPos
|
||||||
case AUX_FUNC::FFT_NOTCH_TUNE:
|
case AUX_FUNC::FFT_NOTCH_TUNE:
|
||||||
#if HAL_MOUNT_ENABLED
|
#if HAL_MOUNT_ENABLED
|
||||||
case AUX_FUNC::RETRACT_MOUNT1:
|
case AUX_FUNC::RETRACT_MOUNT1:
|
||||||
|
case AUX_FUNC::RETRACT_MOUNT2:
|
||||||
case AUX_FUNC::MOUNT_LOCK:
|
case AUX_FUNC::MOUNT_LOCK:
|
||||||
#endif
|
#endif
|
||||||
#if HAL_LOGGING_ENABLED
|
#if HAL_LOGGING_ENABLED
|
||||||
|
@ -770,7 +772,10 @@ const RC_Channel::LookupTable RC_Channel::lookuptable[] = {
|
||||||
{ AUX_FUNC::PARACHUTE_RELEASE,"ParachuteRelease"},
|
{ AUX_FUNC::PARACHUTE_RELEASE,"ParachuteRelease"},
|
||||||
{ AUX_FUNC::PARACHUTE_3POS,"Parachute3Position"},
|
{ AUX_FUNC::PARACHUTE_3POS,"Parachute3Position"},
|
||||||
{ AUX_FUNC::MISSION_RESET,"MissionReset"},
|
{ AUX_FUNC::MISSION_RESET,"MissionReset"},
|
||||||
|
#if HAL_MOUNT_ENABLED
|
||||||
{ AUX_FUNC::RETRACT_MOUNT1,"RetractMount1"},
|
{ AUX_FUNC::RETRACT_MOUNT1,"RetractMount1"},
|
||||||
|
{ AUX_FUNC::RETRACT_MOUNT2,"RetractMount2"},
|
||||||
|
#endif
|
||||||
{ AUX_FUNC::RELAY,"Relay1"},
|
{ AUX_FUNC::RELAY,"Relay1"},
|
||||||
{ AUX_FUNC::MOTOR_ESTOP,"MotorEStop"},
|
{ AUX_FUNC::MOTOR_ESTOP,"MotorEStop"},
|
||||||
{ AUX_FUNC::MOTOR_INTERLOCK,"MotorInterlock"},
|
{ AUX_FUNC::MOTOR_INTERLOCK,"MotorInterlock"},
|
||||||
|
@ -1282,6 +1287,34 @@ void RC_Channel::do_aux_function_fft_notch_tune(const AuxSwitchPos ch_flag)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Perform the RETRACT_MOUNT 1/2 process.
|
||||||
|
*
|
||||||
|
* @param [in] ch_flag Position of the switch. HIGH, MIDDLE and LOW.
|
||||||
|
* @param [in] instance 0: RETRACT MOUNT 1 <br>
|
||||||
|
* 1: RETRACT MOUNT 2
|
||||||
|
*/
|
||||||
|
#if HAL_MOUNT_ENABLED
|
||||||
|
void RC_Channel::do_aux_function_retract_mount(const AuxSwitchPos ch_flag, const uint8_t instance)
|
||||||
|
{
|
||||||
|
AP_Mount *mount = AP::mount();
|
||||||
|
if (mount == nullptr) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
switch (ch_flag) {
|
||||||
|
case AuxSwitchPos::HIGH:
|
||||||
|
mount->set_mode(instance,MAV_MOUNT_MODE_RETRACT);
|
||||||
|
break;
|
||||||
|
case AuxSwitchPos::MIDDLE:
|
||||||
|
// nothing
|
||||||
|
break;
|
||||||
|
case AuxSwitchPos::LOW:
|
||||||
|
mount->set_mode_to_default(instance);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif // HAL_MOUNT_ENABLED
|
||||||
|
|
||||||
bool RC_Channel::run_aux_function(AUX_FUNC ch_option, AuxSwitchPos pos, AuxFuncTriggerSource source)
|
bool RC_Channel::run_aux_function(AUX_FUNC ch_option, AuxSwitchPos pos, AuxFuncTriggerSource source)
|
||||||
{
|
{
|
||||||
#if AP_SCRIPTING_ENABLED
|
#if AP_SCRIPTING_ENABLED
|
||||||
|
@ -1608,24 +1641,13 @@ bool RC_Channel::do_aux_function(const AUX_FUNC ch_option, const AuxSwitchPos ch
|
||||||
#endif // AP_CAMERA_ENABLED
|
#endif // AP_CAMERA_ENABLED
|
||||||
|
|
||||||
#if HAL_MOUNT_ENABLED
|
#if HAL_MOUNT_ENABLED
|
||||||
case AUX_FUNC::RETRACT_MOUNT1: {
|
case AUX_FUNC::RETRACT_MOUNT1:
|
||||||
AP_Mount *mount = AP::mount();
|
do_aux_function_retract_mount(ch_flag, 0);
|
||||||
if (mount == nullptr) {
|
break;
|
||||||
break;
|
|
||||||
}
|
case AUX_FUNC::RETRACT_MOUNT2:
|
||||||
switch (ch_flag) {
|
do_aux_function_retract_mount(ch_flag, 1);
|
||||||
case AuxSwitchPos::HIGH:
|
|
||||||
mount->set_mode(0,MAV_MOUNT_MODE_RETRACT);
|
|
||||||
break;
|
|
||||||
case AuxSwitchPos::MIDDLE:
|
|
||||||
// nothing
|
|
||||||
break;
|
|
||||||
case AuxSwitchPos::LOW:
|
|
||||||
mount->set_mode_to_default(0);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
}
|
|
||||||
|
|
||||||
case AUX_FUNC::MOUNT_LOCK: {
|
case AUX_FUNC::MOUNT_LOCK: {
|
||||||
AP_Mount *mount = AP::mount();
|
AP_Mount *mount = AP::mount();
|
||||||
|
|
|
@ -217,6 +217,7 @@ public:
|
||||||
KILL_IMU3 = 110, // disable third IMU (for IMU failure testing)
|
KILL_IMU3 = 110, // disable third IMU (for IMU failure testing)
|
||||||
LOWEHEISER_STARTER = 111, // allows for manually running starter
|
LOWEHEISER_STARTER = 111, // allows for manually running starter
|
||||||
AHRS_TYPE = 112, // change AHRS_EKF_TYPE
|
AHRS_TYPE = 112, // change AHRS_EKF_TYPE
|
||||||
|
RETRACT_MOUNT2 = 113, // Retract Mount2
|
||||||
|
|
||||||
// if you add something here, make sure to update the documentation of the parameter in RC_Channel.cpp!
|
// if you add something here, make sure to update the documentation of the parameter in RC_Channel.cpp!
|
||||||
// also, if you add an option >255, you will need to fix duplicate_options_exist
|
// also, if you add an option >255, you will need to fix duplicate_options_exist
|
||||||
|
@ -362,6 +363,7 @@ protected:
|
||||||
void do_aux_function_sprayer(const AuxSwitchPos ch_flag);
|
void do_aux_function_sprayer(const AuxSwitchPos ch_flag);
|
||||||
void do_aux_function_generator(const AuxSwitchPos ch_flag);
|
void do_aux_function_generator(const AuxSwitchPos ch_flag);
|
||||||
void do_aux_function_fft_notch_tune(const AuxSwitchPos ch_flag);
|
void do_aux_function_fft_notch_tune(const AuxSwitchPos ch_flag);
|
||||||
|
void do_aux_function_retract_mount(const AuxSwitchPos ch_flag, const uint8_t instance);
|
||||||
|
|
||||||
typedef int8_t modeswitch_pos_t;
|
typedef int8_t modeswitch_pos_t;
|
||||||
virtual void mode_switch_changed(modeswitch_pos_t new_pos) {
|
virtual void mode_switch_changed(modeswitch_pos_t new_pos) {
|
||||||
|
|
Loading…
Reference in New Issue