Update for 07-01-22 12:15

This commit is contained in:
Tyler Perkins 2022-01-07 12:15:01 -05:00
parent f5241e090e
commit cc4615d6dc

View File

@ -4,6 +4,14 @@ Raspberry pi's micrcontroler, based on the RP2040
See datasheet https://datasheets.raspberrypi.org/pico/pico-datasheet.pdf
== 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.
[[index]]