Browse Source

PID: example fix travis warning

missing function declaration
implicit cast
some style fix
mission-4.1.18
Pierre Kancir 8 years ago committed by Francisco Ferreira
parent
commit
720edc0fde
  1. 7
      libraries/PID/examples/pid/pid.cpp

7
libraries/PID/examples/pid/pid.cpp

@ -6,6 +6,9 @@ @@ -6,6 +6,9 @@
#include <AP_HAL/AP_HAL.h>
#include <PID/PID.h> // ArduPilot Mega RC Library
void setup();
void loop();
const AP_HAL::HAL& hal = AP_HAL::get_HAL();
long radio_in;
@ -33,7 +36,9 @@ void setup() @@ -33,7 +36,9 @@ void setup()
pid.load_gains();
hal.console->printf(
"P %f I %f D %f imax %d\n",
pid.kP(), pid.kI(), pid.kD(), pid.imax());
(double)pid.kP(),
(double)pid.kI(),
(double)pid.kD(), pid.imax());
}
void loop()

Loading…
Cancel
Save