-
Notifications
You must be signed in to change notification settings - Fork 844
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
how to setup the SysTick handler #532
Comments
See here for a full list of interrupt numbers. (Or page 188 in https://datasheets.raspberrypi.com/pico/raspberry-pi-pico-c-sdk.pdf ) |
No, this is not true. SysTick is not an interrupt, it is an exception |
In my understanding of the ARM doc, SysTick is a kind of interrupt and interrupt is a kind of exception. So they are used interchangably. |
yeah, it is confusing, because it lives with the synchronous exceptions but acts like an interrupt, but doesn't have the regular NVIC controls like the rest of the interrupts. Anyways, my point was that the |
Hi guys,
I'm trying to setup SysTick handler on a picow board. What I konw roughly is
When it comes to the irq_set_enabled, I have not idea of which irq number shoud I use. Any suggestion? Many thanks!
The text was updated successfully, but these errors were encountered: