New problem with SPIFlash after updating RP2040 RFM Board to v4.4.2 #2771
Replies: 4 comments 4 replies
-
4.4.2 moved to the just released upstream SdFat 2.3.0, and removed the ported ESP8266SdFat. It was just too painful trying to keep the upstream changes merged when so much changed between SdFat releases in single commits. Your app is not probably grabbing the official SdFat 2.3.0 rev from the core and not the older Adafruit fork. You could try adding those defines to your platform.local.txt file:
|
Beta Was this translation helpful? Give feedback.
-
Hi Earle, Fatal Python error: initfsencoding: unable to load the file system codec Current thread 0x00004f34 (most recent call first): Compilation error: exit status 0xc0000409 |
Beta Was this translation helpful? Give feedback.
-
Earle, |
Beta Was this translation helpful? Give feedback.
-
@smartvoxuk The project build sequence has been recently upgraded to use Core 4.4.2 The build gives positive result as indicated by every recent GitHub Actions status update: |
Beta Was this translation helpful? Give feedback.
-
I'm using Arduino IDE v2.3.4 and an Adafruit Feather RP2040 RFM board.
This morning, the IDE picked up and installed the latest board update, v4.4.2, from this earlephilhower repository for Arduino-Pico. My sketch failed to compile after this update, but had been okay the previous day. I am fairly sure the only thing that has changed is the Arduino Core which updated from v4.4.1 to v4.4.2 (it also updated a library for Dallas Temperature sensor, but I don't see how that could be relevant).
The error I now get when compiling is related to the Adafruit SPIFlash library and I appreciate the problem may be associated with code in that library - except that the SPIFlash library hasn't been updated for months. To make sure the fault is not in my sketch, I tried compiling one or two of the examples that are included with the Adafruit SPIFlash library (version 5.0.1) and they also no longer compile and they give the same error message.
In the Arduino IDE Tools menu, the following are set:
Board: "Adafruit Feather RP2040 RFM"
Boot stage 2: "W25Q080 QSPI/2"
Flash size: "8MB (Sketch: 7MB, FS: 1MB)"
The error when compiling the example sketch "flash_info.ino" from Adafruits SPIFlash library is as follows:
In file included from C:\Users\jquic\AppData\Local\Temp.arduinoIDE-unsaved2025022-19832-89p4pp.ujmik\flash_info\flash_info.ino:7:
c:\Users\jquic\Documents\Arduino\libraries\Adafruit_SPIFlash\src/Adafruit_SPIFlash.h:37:2: error: #error USE_BLOCK_DEVICE_INTERFACE must be defined to 1 in SdFatConfig.h. Make sure you use the Adafruit Fork at 'https://github.com/adafruit/SdFat'
37 | #error USE_BLOCK_DEVICE_INTERFACE must be defined to 1 in SdFatConfig.h. Make sure you use the Adafruit Fork at 'https://github.com/adafruit/SdFat'
| ^~~~~
c:\Users\jquic\Documents\Arduino\libraries\Adafruit_SPIFlash\src/Adafruit_SPIFlash.h:54:2: error: #error FAT12_SUPPORT must be set to 1 in SdFat SdFatConfig.h. Make sure you use the Adafruit Fork at 'https://github.com/adafruit/SdFat'
54 | #error FAT12_SUPPORT must be set to 1 in SdFat SdFatConfig.h. Make sure you use the Adafruit Fork at 'https://github.com/adafruit/SdFat'
| ^~~~~
exit status 1
Compilation error: exit status 1
By the way, I do have the Adafruit fork of SdFat installed. Could it be something like I need to re-install it after the board core package update? Any help or suggestions for debugging this problem would be much appreciated.
Beta Was this translation helpful? Give feedback.
All reactions