We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 602f608 commit 0fe39e7Copy full SHA for 0fe39e7
src/sdio.rs
@@ -247,7 +247,9 @@ impl<P: SdioPeripheral> Sdio<P> {
247
.rising()
248
// Do not use hardware flow control.
249
// Using it causes clock glitches and CRC errors.
250
- // See chip errata SDIO section.
+ // See chip errata SDIO section:
251
+ // - F42x/F43x: https://www.st.com/resource/en/errata_sheet/es0206-stm32f427437-and-stm32f429439-line-limitations-stmicroelectronics.pdf
252
+ // - F40x/F41x: https://www.st.com/resource/en/errata_sheet/es0182-stm32f405407xx-and-stm32f415417xx-device-limitations-stmicroelectronics.pdf
253
.hwfc_en()
254
.disabled()
255
});
0 commit comments