コード例 #1
0
ファイル: hs_mmcsd_rw.c プロジェクト: OS-Project/Divers
static void EDMA3Initialize(void)
{
    /* Initialization of EDMA3 */
    EDMA3Init(EDMA_INST_BASE, EVT_QUEUE_NUM);

    /* Configuring the AINTC to receive EDMA3 interrupts. */ 
    EDMA3AINTCConfigure();
}
コード例 #2
0
ファイル: mmcsd_rw.c プロジェクト: yuyaotsuka/etrobo
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();
}
コード例 #3
0
ファイル: mcspiFlash_edma.c プロジェクト: OS-Project/Divers
/*
** 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();
}