AP_Vehicle: replace get_rate_bf_targets with get_rate_ef_targets

This commit is contained in:
Randy Mackay 2023-01-06 16:55:01 +09:00
parent fa77792d69
commit 2616afc5c8
1 changed files with 2 additions and 2 deletions

View File

@ -296,9 +296,9 @@ public:
virtual void get_osd_roll_pitch_rad(float &roll, float &pitch) const;
/*
get the target body-frame angular velocities in rad/s (Z-axis component used by some gimbals)
get the target earth-frame angular velocities in rad/s (Z-axis component used by some gimbals)
*/
virtual bool get_rate_bf_targets(Vector3f& rate_bf_targets) const { return false; }
virtual bool get_rate_ef_targets(Vector3f& rate_ef_targets) const { return false; }
protected: