We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f54ca1a commit 756c4f2Copy full SHA for 756c4f2
src/rp2_common/hardware_dma/include/hardware/dma.h
@@ -157,7 +157,6 @@ static inline void channel_config_set_read_increment(dma_channel_config *c, bool
157
* \param c Pointer to channel configuration object
158
* \param incr True to enable write address increments, if false, each write will be to the same address
159
* Usually disabled for memory to peripheral transfers
160
- * Usually disabled for memory to peripheral transfers
161
*/
162
static inline void channel_config_set_write_increment(dma_channel_config *c, bool incr) {
163
c->ctrl = incr ? (c->ctrl | DMA_CH0_CTRL_TRIG_INCR_WRITE_BITS) : (c->ctrl & ~DMA_CH0_CTRL_TRIG_INCR_WRITE_BITS);
0 commit comments