fixed imax load/save in PID

This commit is contained in:
Andrew Tridgell 2012-02-13 14:22:39 +11:00
parent 37cabb4cfa
commit 23ed5c2cee
1 changed files with 2 additions and 0 deletions

View File

@ -73,6 +73,7 @@ PID::load_gains()
_kp.load();
_ki.load();
_kd.load();
_imax.load();
}
void
@ -81,4 +82,5 @@ PID::save_gains()
_kp.save();
_ki.save();
_kd.save();
_imax.save();
}