git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11535 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
d39b1c2290
commit
04d9d4fb5f
|
@ -86,7 +86,7 @@
|
|||
|
||||
static OSAL_IRQ_HANDLER(aicSpuriousHandler) {
|
||||
OSAL_IRQ_PROLOGUE();
|
||||
(void)osalSysHalt("Spurious interrupt");
|
||||
osalSysHalt("Spurious interrupt");
|
||||
OSAL_IRQ_EPILOGUE();
|
||||
}
|
||||
|
||||
|
@ -132,7 +132,7 @@ void aicInit(void) {
|
|||
aic->AIC_SMR = AIC_SMR_SRCTYPE(INT_LEVEL_SENSITIVE);
|
||||
|
||||
/* Default handler */
|
||||
aic->AIC_SVR = (uint32_t)aicUnexpectedHandler;
|
||||
// aic->AIC_SVR = (uint32_t)aicUnexpectedHandler;
|
||||
}
|
||||
aicEnableWP(aic);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue