Trying to get the library to work with an Adafruit ESP32 Feather board ...
I'm not sure what to put as the argument to SPIFlash flash() as I'm not quite comprehending the note "ESP32 boards usually have an SPI Flash already attached to their default SS pin, so the user has to explicitly declare the ChipSelect pin being used with the constructor".
Looking around a little, it appears that SPIFlash flash(5) would be correct, but it yields this message: "Unable to identify chip. Are you sure this chip is supported?" (And of course begin() returns false and getCapacity returns zero). Also tried simply SPIFlash flash, as well as a 4-element array (of what appear to be the right pins from WROOM32 documentation). Also tried the readWriteString example (in Arduino IDE). All with the same result.
Trying to get the library to work with an Adafruit ESP32 Feather board ...
I'm not sure what to put as the argument to
SPIFlash flash()as I'm not quite comprehending the note "ESP32 boards usually have an SPI Flash already attached to their default SS pin, so the user has to explicitly declare the ChipSelect pin being used with the constructor".Looking around a little, it appears that
SPIFlash flash(5)would be correct, but it yields this message: "Unable to identify chip. Are you sure this chip is supported?" (And of coursebegin()returns false andgetCapacityreturns zero). Also tried simplySPIFlash flash, as well as a 4-element array (of what appear to be the right pins from WROOM32 documentation). Also tried the readWriteString example (in Arduino IDE). All with the same result.