Browse Source

fixed warnings in PID.h

git-svn-id: https://arducopter.googlecode.com/svn/trunk@2560 f9c3cf11-9bcb-44bc-f272-b75c42450872
master
tridge60@gmail.com 14 years ago
parent
commit
cf68e31729
  1. 4
      libraries/PID/PID.h

4
libraries/PID/PID.h

@ -107,8 +107,8 @@ public: @@ -107,8 +107,8 @@ public:
void operator() (const float p,
const float i,
const float d,
const int16_t imax) {
_kp = p; _ki = i; _kd = d; _imax = imax;
const int16_t imaxval) {
_kp = p; _ki = i; _kd = d; _imax = imaxval;
}
float kP() const { return _kp.get(); }

Loading…
Cancel
Save