From 342b759fea3367026cfc2dfdc3dd5a369780f421 Mon Sep 17 00:00:00 2001 From: "DrZiplok@gmail.com" Date: Fri, 26 Nov 2010 01:54:47 +0000 Subject: [PATCH] Move the eeprom.h include out of the header, it's not needed there. git-svn-id: https://arducopter.googlecode.com/svn/trunk@933 f9c3cf11-9bcb-44bc-f272-b75c42450872 --- libraries/PID/PID.cpp | 2 ++ libraries/PID/PID.h | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/libraries/PID/PID.cpp b/libraries/PID/PID.cpp index 152ee174a8..9dd1d11e29 100644 --- a/libraries/PID/PID.cpp +++ b/libraries/PID/PID.cpp @@ -4,6 +4,8 @@ /// @brief Generic PID algorithm, with EEPROM-backed storage of constants. #include +#include + #include "PID.h" long diff --git a/libraries/PID/PID.h b/libraries/PID/PID.h index 99c25f75ca..5d68d48cb8 100644 --- a/libraries/PID/PID.h +++ b/libraries/PID/PID.h @@ -7,7 +7,6 @@ #define PID_h #include -#include /// @class PID /// @brief Object managing one PID control