Fixed issue with the Systick handler for the ADUC41x

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@13413 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Rocco Marco Guglielmi 2020-03-12 14:07:35 +00:00
parent 6e87db625b
commit 71348f96f8
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ void st_lld_init(void) {
SysTick_CTRL_TICKINT_Msk;
/* IRQ enabled.*/
nvicSetSystemHandlerPriority(HANDLER_SYSTICK, ADUCM_ST_IRQ_PRIORITY);
nvicEnableVector(HANDLER_SYSTICK, ADUCM_ST_IRQ_PRIORITY);
#endif /* OSAL_ST_MODE == OSAL_ST_MODE_PERIODIC */
}