Lines Matching refs:enMode
280 M0P_DMAC->CONFB0_f.MODE = pstcConfig->enMode; in Dma_InitChannel()
321 M0P_DMAC->CONFB1_f.MODE = pstcConfig->enMode; in Dma_InitChannel()
984 en_result_t Dma_SetSourceIncMode(en_dma_channel_t enCh, en_address_mode_t enMode) in Dma_SetSourceIncMode() argument
987 ASSERT(IS_VALID_ADDR_MODE(enMode)); in Dma_SetSourceIncMode()
989 if((!IS_VALID_CH(enCh)) || (!IS_VALID_ADDR_MODE(enMode))) in Dma_SetSourceIncMode()
996 M0P_DMAC->CONFB0_f.FS = enMode; in Dma_SetSourceIncMode()
999 M0P_DMAC->CONFB1_f.FS = enMode; in Dma_SetSourceIncMode()
1022 en_result_t Dma_SetDestinationIncMode(en_dma_channel_t enCh, en_address_mode_t enMode) in Dma_SetDestinationIncMode() argument
1025 ASSERT(IS_VALID_ADDR_MODE(enMode)); in Dma_SetDestinationIncMode()
1027 if((!IS_VALID_CH(enCh)) || (!IS_VALID_ADDR_MODE(enMode))) in Dma_SetDestinationIncMode()
1034 M0P_DMAC->CONFB0_f.FD = enMode; in Dma_SetDestinationIncMode()
1037 M0P_DMAC->CONFB1_f.FD = enMode; in Dma_SetDestinationIncMode()