Open AndrewCapon opened 3 months ago
Hi Guys,
This one may have some impact on all your SPI code.
I noticed it in the st7789 code, it was asking for baud 62'500'000 and getting 37'500'000.
I fixed it here with:
// The ST7789 requires 16 ns between SPI rising edges. // 16 ns = 62,500,000 Hz // 2350 doesn't support 62,500,000 so use 75,000,000 seems to work. #if !PICO_RP2350 static const uint32_t SPI_BAUD = 62'500'000; #else static const uint32_t SPI_BAUD = 75'000'000; #endif
So just a heads up that you may be seeing some issues...
Cheers
Andy
Well, that fixed my slow display :)
Hi Guys,
This one may have some impact on all your SPI code.
I noticed it in the st7789 code, it was asking for baud 62'500'000 and getting 37'500'000.
I fixed it here with:
So just a heads up that you may be seeing some issues...
Cheers
Andy