We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
Well, that fixed my slow display :)
Sorry, something went wrong.
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: