Skip to content

Commit 16f4216

Browse files
committed
Fix spi flash error when compiling in Arduino IDE 1.6.6
1 parent 8f5da83 commit 16f4216

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

libraries/MySensors/utility/SPIFlash.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
// Please maintain this license information along with authorship
3333
// and copyright notices in any redistribution of this code
3434

35-
#include <SPIFlash.h>
35+
#include "SPIFlash.h"
3636

3737
uint8_t SPIFlash::UNIQUEID[8];
3838

@@ -296,4 +296,4 @@ void SPIFlash::wakeup() {
296296
/// cleanup
297297
void SPIFlash::end() {
298298
SPI.end();
299-
}
299+
}

libraries/MySensors/utility/SPIFlash.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,4 +120,4 @@ class SPIFlash {
120120
#endif
121121
};
122122

123-
#endif
123+
#endif

0 commit comments

Comments
 (0)