We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7007c46 + c17be7e commit fca16f8Copy full SHA for fca16f8
hal/targets/hal/TARGET_NORDIC/TARGET_NRF5/us_ticker.c
@@ -474,7 +474,7 @@ static void register_next_tick() {
474
uint32_t current_counter = nrf_rtc_counter_get(COMMON_RTC_INSTANCE);
475
476
// If an overflow occur, set the next tick in COUNTER + delta clock cycles
477
- if (is_in_wrapped_range(previous_tick_cc_value, new_compare_value, current_counter) == false) {
+ if (is_in_wrapped_range(previous_tick_cc_value, new_compare_value, current_counter + 1) == false) {
478
new_compare_value = current_counter + delta;
479
}
480
nrf_rtc_cc_set(COMMON_RTC_INSTANCE, OS_TICK_CC_CHANNEL, new_compare_value);
0 commit comments