Tool/software: TI-RTOS
Dear sir:
I want to test EDMA on AM335X, using RTOS, which example can I refer to reference ?
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: TI-RTOS
Dear sir:
I want to test EDMA on AM335X, using RTOS, which example can I refer to reference ?
Hi Pavel
Compared to the EDMA LLD,I prefer to use starterware for my prohect,can I use these api
on pdk_am335x_1_0_13/packages/ti/starterware/examples/example_utils/edma_utils.c for my project?
my purpose is to use GPMC to read FPGA data. EDMA needs to be used here for data relocation and it is build on RTOS.
Dear Pavel
thanks for your help.but I when I tried to use the api as follows:
#include <stdint.h>
#include <stdbool.h>
#include <stddef.h>
#include <ti/sdo/edma3/drv/edma3_drv.h>
#include <ti/sdo/edma3/rm/edma3_rm.h>
#include <ti/sdo/edma3/drv/sample/bios6_edma3_drv_sample.h>
extern EDMA3_RM_Handle app_EDMAInit(void);
EDMA3_RM_Handle app_EDMAInit(void)
{
EDMA3_DRV_Result edmaResult = 0;
EDMA3_RM_Handle gEdmaHandle = NULL;
gEdmaHandle = (EDMA3_RM_Handle)edma3init(0, &edmaResult);
return gEdmaHandle;
}
Error while program running edma3init,the log show:
CortxA8: Unhandled ADP_Stopped exception 0x8103CC58.