summaryrefslogtreecommitdiff
path: root/stm/stm32fxxx_it.c
diff options
context:
space:
mode:
authorDamien <damien.p.george@gmail.com>2013-10-24 00:22:27 +0100
committerDamien <damien.p.george@gmail.com>2013-10-24 00:22:27 +0100
commit7ee80bac8e6fb3f696a40f4ac6bb2cc52fda9fef (patch)
treeb9496381b25ebf55acf7e4cc0dd50cad6ded5f72 /stm/stm32fxxx_it.c
parent6f08f8ce51adf06aa64743faa713c6b7a7c2db9a (diff)
Add support for SD card (not working).
Diffstat (limited to 'stm/stm32fxxx_it.c')
-rw-r--r--stm/stm32fxxx_it.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/stm/stm32fxxx_it.c b/stm/stm32fxxx_it.c
index bfad28922..41e2f7b73 100644
--- a/stm/stm32fxxx_it.c
+++ b/stm/stm32fxxx_it.c
@@ -230,7 +230,9 @@ void OTG_HS_EP1_OUT_IRQHandler(void)
void SDIO_IRQHandler(void)
{
/* Process All SDIO Interrupt Sources */
- //SD_ProcessIRQSrc();
+ // dpgeorge: i don't think this is used at the moment...
+ extern void SD_ProcessIRQSrc(void);
+ SD_ProcessIRQSrc();
}
/******************************************************************************/