Skip to content

RP2040: Fix 64-bit uptime being wrapped as a 32-bit value whenever a timer event happens #38

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: extrapatches-6.17.0
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
RP2040: us_ticker: use API to force a timer event and get an interrupt
us_ticker_irq_handler() must only be called from interrupt context
  • Loading branch information
nomis committed May 19, 2025
commit e67b7f8d7a719db34a71cbcd793237ccaf6cf6d5
2 changes: 1 addition & 1 deletion targets/TARGET_RASPBERRYPI/TARGET_RP2040/us_ticker.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ void us_ticker_set_interrupt(timestamp_t timestamp)

void us_ticker_fire_interrupt(void)
{
us_ticker_irq_handler();
hardware_alarm_force_irq(alarm_num);
}

void us_ticker_disable_interrupt(void)
Expand Down