mirror of https://github.com/ArduPilot/ardupilot
Arduino 1.0 - GPS_IMU - small fix to make it compile. Does anyone use this lib?!
This commit is contained in:
parent
8533aaf5d9
commit
9c26e2369e
|
@ -4,7 +4,11 @@
|
||||||
|
|
||||||
#include "GPS_IMU.h"
|
#include "GPS_IMU.h"
|
||||||
#include <avr/interrupt.h>
|
#include <avr/interrupt.h>
|
||||||
#include "WProgram.h"
|
#if defined(ARDUINO) && ARDUINO >= 100
|
||||||
|
#include "Arduino.h"
|
||||||
|
#else
|
||||||
|
#include "WProgram.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
// Constructors ////////////////////////////////////////////////////////////////
|
// Constructors ////////////////////////////////////////////////////////////////
|
||||||
|
|
Loading…
Reference in New Issue