vimwiki/tech/RP2040.wiki

18 lines
469 B
Plaintext
Raw Normal View History

2021-10-11 03:22:53 +00:00
= Raspberry Pi Pico =
Raspberry pi's micrcontroler, based on the RP2040
2021-11-13 05:51:32 +00:00
See datasheet https://datasheets.raspberrypi.org/pico/pico-datasheet.pdf
2021-10-11 03:22:53 +00:00
2022-01-07 17:15:01 +00:00
== Interrupts ==
Hardware interrupts uses standard ARM nested vectored interrupt controller.
Interrupts have ID 0-31. The RP2040 only uses 0-26, the rest are tied to
ground. Both cores are tied to the same interrupt lines.
*Do not enable the same interrupt on both cores*, as this leads to race
conditions.
2021-10-11 03:22:53 +00:00
[[index]]