mirror of https://github.com/ArduPilot/ardupilot
10 lines
127 B
C++
10 lines
127 B
C++
|
#include "mode.h"
|
||
|
#include "Plane.h"
|
||
|
|
||
|
void ModeStabilize::update()
|
||
|
{
|
||
|
plane.nav_roll_cd = 0;
|
||
|
plane.nav_pitch_cd = 0;
|
||
|
}
|
||
|
|