"I'm trying to run the `embedded..." <- > <@avsaase:matrix.org> I'm trying to run the embedded-fatfs RP2040 example (https://github.com/MabezDev/embedded-fatfs/blob/master/examples/rp2040/src/main.rs) but it's failing at different points with different SD card. With one 128MB SD card (yes they still exist) I'm getting this > ``` > 0.002248 INFO Hello World! > └─ @ └─ :0 > 0.388733 DEBUG Found card with size: 126353408bytes > └─ @ └─ :0 > 0.388811 INFO Initialization complete! > └─ @ └─ :0 > 0.395946 WARN Unknown opcode 0 in bootjmp boot sector field > └─ @ └─ :0 > 0.395990 ERROR invalid bytes_per_sector value in BPB: expected a power of two but got 0 > └─ @ └─ :0 > 0.396110 ERROR panicked at src/main.rs:92:6: > Filesystem tests failed!: CorruptedFileSystem > └─ @ └─ :0 > Frame 0: HardFault @ 0x100143c8 > Frame 1: @ 0x1000f742 > Error: CPU halted unexpectedly. > ``` > With another one (32GB) I get an endless Failed to init card, retrying.... Both cards are FAT formatted and work fine on my computer. Any ideas what could be the problem? > This could explain it https://github.com/MabezDev/embedded-fatfs/issues/29