Skip to content
Snippets Groups Projects
Commit 467a5926 authored by Damien George's avatar Damien George
Browse files

stm32/sdcard: Only define IRQ handler if using SDMMC1 peripheral.

So that the IRQ can be used by other peripheral drivers if needed.
parent 9e7d2c7a
No related branches found
No related tags found
Loading
......@@ -227,11 +227,13 @@ uint64_t sdcard_get_capacity_in_bytes(void) {
return (uint64_t)cardinfo.LogBlockNbr * (uint64_t)cardinfo.LogBlockSize;
}
#if !defined(MICROPY_HW_SDMMC2_CK)
void SDIO_IRQHandler(void) {
IRQ_ENTER(SDIO_IRQn);
HAL_SD_IRQHandler(&sd_handle);
IRQ_EXIT(SDIO_IRQn);
}
#endif
#if defined(MCU_SERIES_F7)
void SDMMC2_IRQHandler(void) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment