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

So that the IRQ can be used by other peripheral drivers if needed.
pull/3527/merge
Damien George 2018-02-01 15:02:04 +11:00
rodzic 9e7d2c7abb
commit 467a5926bc
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -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) {