Closed mitch85 closed 5 years ago
You have to install and select a Moteino board, or replace SS_FLASHMEM with your SPI CS for that chip.
What would be the SPI CS for the Arduino Uno. I still get the same error
@Erwin-66 Use constructor to pass in your board's SPI CS pin.
SPIFlash(uint8_t slaveSelectPin, uint16_t jedecID=0);
So call SPIFlash(CS)
or SPIFlash(10)
for specific pin if CS
is not defined.
not work, confuse
You need to declare the SPI CS (SS_FLASHMEM) pin where this chip is connected, if you don't have the Moteino boards installed. Ex with D10 as SPI CS for the flash chip:
Note for anyone following this issue that the following worked for me for Arduino Nano:
SPIFlash flash(SS_FLASHMEM);
Hi, i use the node.ino example of the RFM69 Library. But on compiling i got these error the obove error....