mirror of https://github.com/ArduPilot/ardupilot
ArduPlane: make SRV_Channels::cork non-static
for symmetry with the push function
This commit is contained in:
parent
a2f35b3150
commit
aadc37ebeb
|
@ -858,8 +858,8 @@ void Plane::set_servos(void)
|
||||||
// start with output corked. the cork is released when we run
|
// start with output corked. the cork is released when we run
|
||||||
// servos_output(), which is run from all code paths in this
|
// servos_output(), which is run from all code paths in this
|
||||||
// function
|
// function
|
||||||
SRV_Channels::cork();
|
AP::srv().cork();
|
||||||
|
|
||||||
// this is to allow the failsafe module to deliberately crash
|
// this is to allow the failsafe module to deliberately crash
|
||||||
// the plane. Only used in extreme circumstances to meet the
|
// the plane. Only used in extreme circumstances to meet the
|
||||||
// OBC rules
|
// OBC rules
|
||||||
|
@ -1017,7 +1017,8 @@ void Plane::indicate_waiting_for_rud_neutral_to_takeoff(void)
|
||||||
*/
|
*/
|
||||||
void Plane::servos_output(void)
|
void Plane::servos_output(void)
|
||||||
{
|
{
|
||||||
SRV_Channels::cork();
|
auto &srv = AP::srv();
|
||||||
|
srv.cork();
|
||||||
|
|
||||||
// support twin-engine aircraft
|
// support twin-engine aircraft
|
||||||
servos_twin_engine_mix();
|
servos_twin_engine_mix();
|
||||||
|
@ -1055,7 +1056,7 @@ void Plane::servos_output(void)
|
||||||
|
|
||||||
SRV_Channels::output_ch_all();
|
SRV_Channels::output_ch_all();
|
||||||
|
|
||||||
AP::srv().push();
|
srv.push();
|
||||||
|
|
||||||
if (g2.servo_channels.auto_trim_enabled()) {
|
if (g2.servo_channels.auto_trim_enabled()) {
|
||||||
servos_auto_trim();
|
servos_auto_trim();
|
||||||
|
|
Loading…
Reference in New Issue