mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
Plane: added ONESHOT_MASK parameter
after discussion with Paul on servo latency
This commit is contained in:
parent
776b4b068a
commit
6ceb3ff808
@ -1248,6 +1248,13 @@ const AP_Param::GroupInfo ParametersG2::var_info[] = {
|
|||||||
// @Increment: 1
|
// @Increment: 1
|
||||||
// @User: Standard
|
// @User: Standard
|
||||||
AP_GROUPINFO("MAN_EXPO_RUDDER", 31, ParametersG2, man_expo_rudder, 0),
|
AP_GROUPINFO("MAN_EXPO_RUDDER", 31, ParametersG2, man_expo_rudder, 0),
|
||||||
|
|
||||||
|
// @Param: ONESHOT_MASK
|
||||||
|
// @DisplayName: Oneshot output mask
|
||||||
|
// @Description: Mask of output channels to use oneshot on
|
||||||
|
// @User: Advanced
|
||||||
|
// @Bitmask: 0: Servo 1, 1: Servo 2, 2: Servo 3, 3: Servo 4, 4: Servo 5, 5: Servo 6, 6: Servo 7, 7: Servo 8, 8: Servo 9, 9: Servo 10, 10: Servo 11, 11: Servo 12, 12: Servo 13, 13: Servo 14, 14: Servo 15
|
||||||
|
AP_GROUPINFO("ONESHOT_MASK", 32, ParametersG2, oneshot_mask, 0),
|
||||||
|
|
||||||
AP_GROUPEND
|
AP_GROUPEND
|
||||||
};
|
};
|
||||||
|
@ -573,6 +573,8 @@ public:
|
|||||||
AP_Int8 man_expo_roll;
|
AP_Int8 man_expo_roll;
|
||||||
AP_Int8 man_expo_pitch;
|
AP_Int8 man_expo_pitch;
|
||||||
AP_Int8 man_expo_rudder;
|
AP_Int8 man_expo_rudder;
|
||||||
|
|
||||||
|
AP_Int32 oneshot_mask;
|
||||||
};
|
};
|
||||||
|
|
||||||
extern const AP_Param::Info var_info[];
|
extern const AP_Param::Info var_info[];
|
||||||
|
@ -120,7 +120,11 @@ void Plane::init_ardupilot()
|
|||||||
// don't initialise aux rc output until after quadplane is setup as
|
// don't initialise aux rc output until after quadplane is setup as
|
||||||
// that can change initial values of channels
|
// that can change initial values of channels
|
||||||
init_rc_out_aux();
|
init_rc_out_aux();
|
||||||
|
|
||||||
|
if (g2.oneshot_mask != 0) {
|
||||||
|
hal.rcout->set_output_mode(g2.oneshot_mask, AP_HAL::RCOutput::MODE_PWM_ONESHOT);
|
||||||
|
}
|
||||||
|
|
||||||
// choose the nav controller
|
// choose the nav controller
|
||||||
set_nav_controller();
|
set_nav_controller();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user