QUERY · ISSUE
docs: RP2 DMA some defaults missing/incorrect
docs
Documentation URL
https://docs.micropython.org/en/latest/library/rp2.DMA.html#rp2.DMA.pack_ctrl
Description
The following keys have an incorrect default specified:
bswap(docs claim it'sTrue, but it's actuallyFalse)
The following keys do not have defaults specified:
ring_size(should be0)ring_sel(should beFalse)treq_sel(should be63or0x3f)- Would be good to add a note explaining this, since it's not listed in the DREQ table in the datasheet.
write_err(should beFalse)read_err(should beFalse)
Code of Conduct
Yes, I agree
CANDIDATE · PULL REQUEST
docs: Add documentation for rp2 DMA support.
docs
This PR provides documentation for the rp2.DMA support in PR #7641 and the associated additions to rp2.PIO in #7650.