mirror of https://github.com/ArduPilot/ardupilot
AC_Loiter: integrate AC_PosControl::get_roll_cd rename
This commit is contained in:
parent
d650df3e28
commit
b17042078a
|
@ -51,8 +51,8 @@ public:
|
|||
void update(bool avoidance_on = true);
|
||||
|
||||
/// get desired roll, pitch which should be fed into stabilize controllers
|
||||
float get_roll() const { return _pos_control.get_roll(); }
|
||||
float get_pitch() const { return _pos_control.get_pitch(); }
|
||||
float get_roll() const { return _pos_control.get_roll_cd(); }
|
||||
float get_pitch() const { return _pos_control.get_pitch_cd(); }
|
||||
Vector3f get_thrust_vector() const { return _pos_control.get_thrust_vector(); }
|
||||
|
||||
static const struct AP_Param::GroupInfo var_info[];
|
||||
|
|
Loading…
Reference in New Issue