diff options
author | edolomb <none@example.com> | 2018-02-22 00:26:54 +0000 |
---|---|---|
committer | edolomb <none@example.com> | 2018-02-22 00:26:54 +0000 |
commit | 80d2517b91d611d837d7b29e80b2056a6791e4ee (patch) | |
tree | ba75298a6b7f88d7d95bc91568a13a86b825c4b2 /os/hal/ports/SAMA | |
parent | 9595f1846e58cf90b516a7e1a16bb0777f4c2e70 (diff) | |
download | ChibiOS-80d2517b91d611d837d7b29e80b2056a6791e4ee.tar.gz ChibiOS-80d2517b91d611d837d7b29e80b2056a6791e4ee.tar.bz2 ChibiOS-80d2517b91d611d837d7b29e80b2056a6791e4ee.zip |
Uncommented default handler
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11537 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports/SAMA')
-rw-r--r-- | os/hal/ports/SAMA/SAMA5D2x/aic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/ports/SAMA/SAMA5D2x/aic.c b/os/hal/ports/SAMA/SAMA5D2x/aic.c index 08ef03b9d..d961c58fd 100644 --- a/os/hal/ports/SAMA/SAMA5D2x/aic.c +++ b/os/hal/ports/SAMA/SAMA5D2x/aic.c @@ -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);
}
|