Roy Buitenhuis
Roy Buitenhuis
Hi @KRASTM When I set the sdmmc clock at 103.999 MHz, the clockdiv is correctly being set to 1, causing the MMC clock to run at 52MHz. This is the...
@KRASTM Thank, this fix would work for me since I will set the clock to 104, but if I now would set the clock to something between 52 and 104,...
Hi @KRASTM, I think this fix would not have the unwanted side effects: ```c Init.ClockDiv = (sdmmc_clk / (2U * MMC_HIGH_SPEED_FREQ + 1U)) + 1U; ```
You can use it without the flag. But you have to import your PAC's Interrupt enum as `interrupt`. ```rust use hal::pac::Interrupt as interrupt; use cortex_m_rt::interrupt; ``` That's basically what the...