Skip to content

Commit

Permalink
Merge pull request #242 from mysensors/fix-spi-flash-compile-error
Browse files Browse the repository at this point in the history
Fix spi flash error when compiling in Arduino IDE 1.6.6
  • Loading branch information
henrikekblad committed Nov 6, 2015
2 parents 8f5da83 + 94cfcdc commit 9ef2604
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion libraries/MySensors/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
#ifndef Version_h
#define Version_h

#define LIBRARY_VERSION "1.5"
#define LIBRARY_VERSION "1.5.1"

#endif
4 changes: 2 additions & 2 deletions libraries/MySensors/utility/SPIFlash.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
// Please maintain this license information along with authorship
// and copyright notices in any redistribution of this code

#include <SPIFlash.h>
#include "SPIFlash.h"

uint8_t SPIFlash::UNIQUEID[8];

Expand Down Expand Up @@ -296,4 +296,4 @@ void SPIFlash::wakeup() {
/// cleanup
void SPIFlash::end() {
SPI.end();
}
}
2 changes: 1 addition & 1 deletion libraries/MySensors/utility/SPIFlash.h
Original file line number Diff line number Diff line change
Expand Up @@ -120,4 +120,4 @@ class SPIFlash {
#endif
};

#endif
#endif

0 comments on commit 9ef2604

Please sign in to comment.