You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Pico C/C++ SDK PDF v3.0 is missing the assembler syntax for the wait <polarity> jmppin variant. Thankfully it's documented in the RP2350 datasheet, but the SDK doc should get it too.
The C/C++ SDK doc says the syntax for the wait <polarity> irq variant only permits (rel). The 2350 datasheet shows (rel, next, prev) at the top of section 11.4.3.3, but only (rel) immediately below that (which also re-explains the meaning of rel, which was done in the preceding section 11.4.3.2).
The text was updated successfully, but these errors were encountered:
achan1989
changed the title
Pico C/C++ SDK PDF: missing PIO wait jmppin
Inconsistent PIO WAIT docs in Pico C/C++ SDK PDF and RP2350 datasheet
Sep 25, 2024
That was all for the wait instruction. Similar issues with the irq instruction.
The C/C++ SDK doc says the syntax for the irq instruction only permits the (rel) option. The 2350 datasheet says it can be (prev, rel, next).
Pioasm will acceptIRQ PREV <value> and IRQ NEXT <value>, but the RP2350 datasheet says PREV and NEXT must go after the <value>, like with REL.
achan1989
changed the title
Inconsistent PIO WAIT docs in Pico C/C++ SDK PDF and RP2350 datasheet
Inconsistent PIO instruction docs in Pico C/C++ SDK PDF and RP2350 datasheet
Sep 25, 2024
The Pico C/C++ SDK PDF v3.0 is missing the assembler syntax for the
wait <polarity> jmppin
variant. Thankfully it's documented in the RP2350 datasheet, but the SDK doc should get it too.The C/C++ SDK doc says the syntax for the
wait <polarity> irq
variant only permits(rel)
. The 2350 datasheet shows(rel, next, prev)
at the top of section 11.4.3.3, but only(rel)
immediately below that (which also re-explains the meaning ofrel
, which was done in the preceding section 11.4.3.2).The text was updated successfully, but these errors were encountered: