Tool/software: Code Composer Studio
I think the given code of mcasp is only for DIT transfer mode .Can i get the example code of mcasp in burst transfer mode?? .
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.
"I think the given code of mcasp is only for DIT transfer mode"
Which code exactly you refer to?
I can see that McASP driver can be configured in DIT or TDM mode:
pdk_am57xx_1_0_13/packages/ti/drv/mcasp/mcasp_drv.h
pdk_am57xx_1_0_13/packages/ti/drv/mcasp/src/mcasp_drv.c
/**
* \brief enumerated constants for the Transfer modes supported by Mcasp
*/
typedef enum Mcasp_OpMode_e {
Mcasp_OpMode_TDM = 0, /**< TDM Mode for channel operation */
Mcasp_OpMode_DIT = 1 /**< DIT Mode for channel operation */
}Mcasp_OpMode;
Regards,
Pavel