mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-12-10 07:14:36 +01:00
more review fixes
This commit is contained in:
parent
4c6823f6cb
commit
f5cb120250
1 changed files with 2 additions and 2 deletions
|
|
@ -216,7 +216,7 @@ static inline void channel_config_set_read_address_update_type(dma_channel_confi
|
|||
*
|
||||
* \param c Pointer to channel configuration object
|
||||
* \param update_type The type of adjustment to make to the write address after each transfer.
|
||||
* Usually set to DMA_ADDRESS_UPDATE_NONE for peripheral to memory transfers
|
||||
* Usually set to DMA_ADDRESS_UPDATE_NONE for memory to peripheral transfers
|
||||
* \sa channel_config_set_write_increment
|
||||
*/
|
||||
static inline void channel_config_set_write_address_update_type(dma_channel_config *c, enum dma_address_update_type update_type) {
|
||||
|
|
@ -250,7 +250,7 @@ static inline void channel_config_set_read_increment(dma_channel_config *c, bool
|
|||
* \endcode
|
||||
*
|
||||
* \param c Pointer to channel configuration object
|
||||
* \param incr True to enable write address increments, whereby the writee address increments by the transfer size with each transfer, false to perform each write to the same address.
|
||||
* \param incr True to enable write address increments, whereby the address increments by the transfer size with each transfer, false to perform each write to the same address.
|
||||
* Usually disabled for memory to peripheral transfers
|
||||
* \sa channel_config_set_write_address_update_type
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue