Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Revision 5:b9ae2b80dfcd, committed 2015-05-27
- Comitter:
- acodd
- Date:
- Wed May 27 07:12:53 2015 +0000
- Parent:
- 4:7b42de70b65f
- Commit message:
- Removed some scale factor correction from part of the loop.
;
Changed in this revision
| Classic_PID.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/Classic_PID.cpp Thu Apr 02 07:34:00 2015 +0000
+++ b/Classic_PID.cpp Wed May 27 07:12:53 2015 +0000
@@ -124,7 +124,7 @@
void Classic_PID::setKvelff(float Kvelff)
{
- _kvelff = Kvelff / 500000;
+ _kvelff = Kvelff;
}