mirror of https://github.com/ArduPilot/ardupilot
AC_PID: fix filt_d_hz accessor
this accessor is not actually used
This commit is contained in:
parent
cd920c7609
commit
54a505dade
|
@ -50,7 +50,7 @@ public:
|
|||
float imax() const { return _imax.get(); }
|
||||
float filt_hz() const { return _filt_hz.get(); }
|
||||
float get_filt_alpha() const { return _filt_alpha; }
|
||||
float filt_d_hz() const { return _filt_hz.get(); }
|
||||
float filt_d_hz() const { return _filt_d_hz.get(); }
|
||||
float get_filt_alpha_D() const { return _filt_alpha_d; }
|
||||
|
||||
// set accessors
|
||||
|
|
Loading…
Reference in New Issue