static void EDMA3Initialize(void) { /* Initialization of EDMA3 */ EDMA3Init(EDMA_INST_BASE, EVT_QUEUE_NUM); /* Configuring the AINTC to receive EDMA3 interrupts. */ EDMA3AINTCConfigure(); }
static void EDMA3Initialize(void) { #if DEBUG_PRINT UARTprintf("%s()\r\n", __FUNCTION__); #endif /* Initialization of EDMA3 */ EDMA3Init(EDMA_INST_BASE, EVT_QUEUE_NUM); /* Configuring the AINTC to receive EDMA3 interrupts. */ EDMA3AINTCConfigure(); }
/* ** This function configures the power supply for EDMA3 Channel Controller 0 ** and Transfer Controller 0, registers the EDMA interrupts in AINTC. */ static void EDMA3Initialize(void) { /* Enable module clock for EDMA */ EDMAModuleClkConfig(); /* Initialization of EDMA3 */ EDMA3Init(SOC_EDMA30CC_0_REGS, EVT_QUEQUE_NUM); /* Configuring the AINTC to receive EDMA3 Interrupts */ EDMA3AINTCConfigure(); }