Skip to content

Commit b9814fa

Browse files
committed
Fix missmatch between feature branches and new CMSIS
1 parent e2fe49d commit b9814fa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

TESTS/mbed_hal/common_tickers/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ void ticker_event_handler_stub(const ticker_data_t * const ticker)
117117
}
118118

119119
/* Indicate that ISR has been executed in interrupt context. */
120-
if (IS_IRQ_MODE()) {
120+
if (IsIrqMode()) {
121121
intFlag++;
122122
}
123123
}

TESTS/mbed_hal/lp_ticker/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ void overflow_protect()
6363
void ticker_event_handler_stub(const ticker_data_t * const ticker)
6464
{
6565
/* Indicate that ISR has been executed in interrupt context. */
66-
if (IS_IRQ_MODE()) {
66+
if (IsIrqMode()) {
6767
intFlag++;
6868
}
6969

0 commit comments

Comments
 (0)