mirror of https://github.com/ArduPilot/ardupilot
19 lines
488 B
C++
19 lines
488 B
C++
#include "Rover.h"
|
|
|
|
/*****************************************
|
|
Set the flight control servos based on the current calculated values
|
|
*****************************************/
|
|
void Rover::set_servos(void)
|
|
{
|
|
// send output signals to motors
|
|
if (motor_test) {
|
|
motor_test_output();
|
|
} else {
|
|
// get ground speed
|
|
float speed = 0.0f;
|
|
g2.attitude_control.get_forward_speed(speed);
|
|
|
|
g2.motors.output(arming.is_armed(), speed, G_Dt);
|
|
}
|
|
}
|