5
0
mirror of https://github.com/ArduPilot/ardupilot synced 2025-03-08 06:34:22 -04:00
ardupilot/APMrover2/mode_hold.cpp

10 lines
189 B
C++
Raw Normal View History

2017-07-18 23:17:45 -03:00
#include "mode.h"
#include "Rover.h"
void ModeHold::update()
{
// hold position - stop motors and center steering
g2.motors.set_throttle(0.0f);
g2.motors.set_steering(0.0f);
}