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
This commit is contained in:
DrZiplok@gmail.com 2010-11-26 01:54:47 +00:00
parent 52abef58d5
commit 342b759fea
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,8 @@
/// @brief Generic PID algorithm, with EEPROM-backed storage of constants. /// @brief Generic PID algorithm, with EEPROM-backed storage of constants.
#include <math.h> #include <math.h>
#include <avr/eeprom.h>
#include "PID.h" #include "PID.h"
long long

View File

@ -7,7 +7,6 @@
#define PID_h #define PID_h
#include <stdint.h> #include <stdint.h>
#include <avr/eeprom.h>
/// @class PID /// @class PID
/// @brief Object managing one PID control /// @brief Object managing one PID control