Skip to content

Commit

Permalink
fix for default arg
Browse files Browse the repository at this point in the history
  • Loading branch information
hoffmannjan committed Apr 11, 2019
1 parent 611c033 commit 224ab9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Adafruit_FRAM_SPI.cpp
Expand Up @@ -57,7 +57,7 @@ void Adafruit_FRAM_SPI::SPI_TRANSACTION_END() {
* @param *theSPI
* SPI optional object
*/
Adafruit_FRAM_SPI::Adafruit_FRAM_SPI(int8_t cs, SPIClass *theSPI = &SPI) {
Adafruit_FRAM_SPI::Adafruit_FRAM_SPI(int8_t cs, SPIClass *theSPI) {
_cs = cs;
_clk = _mosi = _miso = -1;
_framInitialised = false;
Expand Down

0 comments on commit 224ab9c

Please sign in to comment.