Browse Source

Arduino 1.0 - GPS_IMU - small fix to make it compile. Does anyone use this lib?!

mission-4.1.18
Randy Mackay 13 years ago
parent
commit
9c26e2369e
  1. 6
      libraries/GPS_IMU/GPS_IMU.cpp

6
libraries/GPS_IMU/GPS_IMU.cpp

@ -4,7 +4,11 @@ @@ -4,7 +4,11 @@
#include "GPS_IMU.h"
#include <avr/interrupt.h>
#include "WProgram.h"
#if defined(ARDUINO) && ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif
// Constructors ////////////////////////////////////////////////////////////////

Loading…
Cancel
Save