Hi!
I have W25Q128JVSQ chip, as i can see, the same as here https://www.pjrc.com/store/psram.html.
I try to use LittleFS library (https://github.com/PaulStoffregen/LittleFS#nor-flash), but unfortunatly my chip wont initilized.
Can you tell me what the problem might be? I tried soldering two different chips, but the result is the same.
At the same time, the PSRAM chip work fine.
I have W25Q128JVSQ chip, as i can see, the same as here https://www.pjrc.com/store/psram.html.
I try to use LittleFS library (https://github.com/PaulStoffregen/LittleFS#nor-flash), but unfortunatly my chip wont initilized.
C++:
LittleFS_SPIFlash myfs;
#define chipSelect 6
if (!myfs.begin(chipSelect, SPI)) {
Serial.printf("Error starting %s\n", "SPI FLASH");
while (1) {
// Error, so don't do anything more - stay stuck here
}
}
Can you tell me what the problem might be? I tried soldering two different chips, but the result is the same.
At the same time, the PSRAM chip work fine.
Last edited: