Bill Greiman
Bill Greiman
This is a timeout while waiting for data from from the SD. It is at one of three places in the RP2040 SDIO driver. ``` libraries\SdFat\src\SdCard\Rp2040Sdio\PioSdioCard.cpp (3 hits) Line 385:...
I suspect that using the high bit of ax for the overrun flag is causing the problem. I wrote this example many years ago and needed to save memory so...
> Any clues for me? I suspect the controller is not strictly SSD1306 compatible. Unfortunately I no longer have time to maintain this library.
[tomahawk66](https://github.com/tomahawk66) There are now several new variations on the SSD1306 in recent OLED modules. I need to acquire samples in order to address this issue. Currently I am very busy...
[tomahawk66](https://github.com/tomahawk66) If you can send one of each of those modules, I will attempt to find a fix. You can try to sending to this address: > Madera Solutions >...
What happens if you run the [QuickStart](https://github.com/greiman/SdFat/blob/master/examples/QuickStart/QuickStart.ino) example?
Try the following. ``` #define SD_MISO 2 #define SD_MOSI 15 #define SD_SCLK 14 #define SD_CS 13 SPIClass sdSPI(VSPI); #define SD_CONFIG SdSpiConfig(SD_CS, USER_SPI_BEGIN | SHARED_SPI, SD_SCK_MHZ(10), &sdSPI) ... sdSPI.begin(SD_SCLK, SD_MISO, SD_MOSI,...
I did compile the following. But can't test it. ``` #include "SdFat.h" SdFat SD; #define SD_MISO 2 #define SD_MOSI 15 #define SD_SCLK 14 #define SD_CS 13 SPIClass sdSPI(VSPI); #define SD_CONFIG...
> you should at minimum add an addidional example in your repo please There is a [example](https://github.com/greiman/SdFat/blob/master/examples/UserSPIDriver/UserSPIDriver.ino) of more general way to use non standard SPI. The arguments for SdSpiConfig...
> Have you opened up a discussion on the RPI forums? I see the claim of 9 ENOB and I looked at the forums but found nothing. The latest datasheet...