5
0
mirror of https://github.com/ArduPilot/ardupilot synced 2025-03-02 11:43:56 -04:00
ardupilot/ArduPlane/mode_stabilize.cpp

10 lines
170 B
C++
Raw Normal View History

#include "mode.h"
#include "Plane.h"
void ModeStabilize::update()
{
plane.nav_roll_cd = plane.ahrs.roll_sensor;
plane.nav_pitch_cd = plane.ahrs.pitch_sensor;
}