| @@ -28,8 +28,8 @@ | |||
| #ifndef SerialFlash_h_ | |||
| #define SerialFlash_h_ | |||
| #include <Arduino.h> | |||
| #include <SPI.h> | |||
| #include <core/Arduino.h> | |||
| #include <spi/SPI.h> | |||
| class SerialFlashFile; | |||
| @@ -25,8 +25,8 @@ | |||
| * THE SOFTWARE. | |||
| */ | |||
| #include "SerialFlash.h" | |||
| #include "util/SerialFlash_directwrite.h" | |||
| #include "./SerialFlash.h" | |||
| #include "./util/SerialFlash_directwrite.h" | |||
| #define CSASSERT() DIRECT_WRITE_LOW(cspin_basereg, cspin_bitmask) | |||
| #define CSRELEASE() DIRECT_WRITE_HIGH(cspin_basereg, cspin_bitmask) | |||
| @@ -25,7 +25,7 @@ | |||
| * THE SOFTWARE. | |||
| */ | |||
| #include "SerialFlash.h" | |||
| #include "./SerialFlash.h" | |||
| /* On-chip SerialFlash file allocation data structures: | |||
| @@ -6,10 +6,10 @@ | |||
| // Adapted from OneWire.h | |||
| #if ARDUINO >= 100 | |||
| #include "Arduino.h" // for delayMicroseconds, digitalPinToBitMask, etc | |||
| #include <core/Arduino.h> // for delayMicroseconds, digitalPinToBitMask, etc | |||
| #else | |||
| #include "WProgram.h" // for delayMicroseconds | |||
| #include "pins_arduino.h" // for digitalPinToBitMask, etc | |||
| #include <core/WProgram.h> // for delayMicroseconds | |||
| #include <core/pins_arduino.h> // for digitalPinToBitMask, etc | |||
| #endif | |||
| // Platform specific I/O definitions | |||