diff options
author | David A. Mellis <d.mellis@arduino.cc> | 2008-09-15 21:09:13 +0000 |
---|---|---|
committer | David A. Mellis <d.mellis@arduino.cc> | 2008-09-15 21:09:13 +0000 |
commit | e94fa49d9bfee00e61a3b496b5e9cbb22dec309f (patch) | |
tree | ddcff6932443b074f536df12116297192bcec2c3 /libraries | |
parent | bf4484d02c6e744488561a79f28807dc32dba705 (diff) |
Adding #ifdef guard to WProgram.h to prevent multiple #includes.
Removing Print class inheritance from Firmata since it's not clear that it can be implemented in a way that's compatible with the Firmata protocol and the Print class interface.
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/Firmata/Firmata.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/Firmata/Firmata.h b/libraries/Firmata/Firmata.h index c556c4a..a0a6513 100644 --- a/libraries/Firmata/Firmata.h +++ b/libraries/Firmata/Firmata.h @@ -67,7 +67,7 @@ extern "C" { // TODO make it a subclass of HardwareSerial -class FirmataClass : public Print +class FirmataClass { public: FirmataClass(); |