make it compile with arduino 1.0 ; function is still untested.

This commit is contained in:
Bernhard
2011-12-01 16:38:01 +01:00
parent b0c3871750
commit 0bc9daa4f7
8 changed files with 675 additions and 651 deletions

View File

@ -5,7 +5,12 @@
// Licence: GPL
#define HardwareSerial_h // trick to disable the standard HWserial
#include <math.h>
#include <WProgram.h>
#if ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif
#include "fastio.h"
#include <avr/pgmspace.h>
#include "Configuration.h"