Skip to content

Commit 9ef2604

Browse files
committed
Merge pull request #242 from mysensors/fix-spi-flash-compile-error
Fix spi flash error when compiling in Arduino IDE 1.6.6
2 parents 8f5da83 + 94cfcdc commit 9ef2604

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

libraries/MySensors/Version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
#ifndef Version_h
77
#define Version_h
88

9-
#define LIBRARY_VERSION "1.5"
9+
#define LIBRARY_VERSION "1.5.1"
1010

1111
#endif

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)