Merge pull request #11479 from maciejbocianski/nrf51_systick_handler_fix

no-systick targets: fix systick irq handler setup
pull/11504/head
Martin Kojtal 2019-09-16 15:35:22 +02:00 committed by GitHub
commit 171fe5a619
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

@ -61,11 +61,9 @@ extern "C" {
IRQn_Type irq = OsTimer::get_irq_number();
NVIC_SetPriority(irq, 0xFF);
#ifdef NVIC_RAM_VECTOR_ADDRESS
NVIC_SetVector(irq, (uint32_t)handler);
#else
MBED_ASSERT(handler == (IRQHandler_t)NVIC_GetVector(irq));
#endif
if (irq >= 0) {
NVIC_EnableIRQ(irq);
}