Fix missmatch between feature branches and new CMSIS

pull/7009/head
Bartek Szatkowski 2018-05-24 17:13:54 -05:00
parent e2fe49d403
commit b9814fae9b
2 changed files with 2 additions and 2 deletions

View File

@ -117,7 +117,7 @@ void ticker_event_handler_stub(const ticker_data_t * const ticker)
}
/* Indicate that ISR has been executed in interrupt context. */
if (IS_IRQ_MODE()) {
if (IsIrqMode()) {
intFlag++;
}
}

View File

@ -63,7 +63,7 @@ void overflow_protect()
void ticker_event_handler_stub(const ticker_data_t * const ticker)
{
/* Indicate that ISR has been executed in interrupt context. */
if (IS_IRQ_MODE()) {
if (IsIrqMode()) {
intFlag++;
}