nrf5/hal/timer: Adding empty IRQ handlers for all timers.

This commit is contained in:
Glenn Ruben Bakke 2017-04-30 19:42:54 +02:00
parent 7449f8d861
commit 0437fafaac
1 changed files with 25 additions and 0 deletions

View File

@ -30,6 +30,31 @@
#ifdef HAL_TIMER_MODULE_ENABLED
void hal_timer_init(NRF_TIMER_Type * p_instance, hal_timer_init_t const * p_timer_init) {
}
void TIMER0_IRQHandler(void) {
}
void TIMER1_IRQHandler(void) {
}
void TIMER2_IRQHandler(void) {
}
#if NRF52
void TIMER3_IRQHandler(void) {
}
void TIMER4_IRQHandler(void) {
}
#endif
#endif // HAL_TIMER_MODULE_ENABLED