mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-12-10 07:14:36 +01:00
Remove duplicated comment line in header (#1237)
This commit is contained in:
parent
f54ca1a42e
commit
756c4f24a4
1 changed files with 0 additions and 1 deletions
|
|
@ -157,7 +157,6 @@ static inline void channel_config_set_read_increment(dma_channel_config *c, bool
|
|||
* \param c Pointer to channel configuration object
|
||||
* \param incr True to enable write address increments, if false, each write will be to the same address
|
||||
* Usually disabled for memory to peripheral transfers
|
||||
* Usually disabled for memory to peripheral transfers
|
||||
*/
|
||||
static inline void channel_config_set_write_increment(dma_channel_config *c, bool incr) {
|
||||
c->ctrl = incr ? (c->ctrl | DMA_CH0_CTRL_TRIG_INCR_WRITE_BITS) : (c->ctrl & ~DMA_CH0_CTRL_TRIG_INCR_WRITE_BITS);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue