I am trying to use the rCSL quickstart example code for my OMAP-L138 project and am having trouble locating the #defines for the field and token values used in the examples. The example code looks like this:
// Enable Channel 10 - 11 to ARM (Region 0)
edma3ccRegs->DRA[CSL_EDMA3_REGION_0].DRAE =
CSL_FMKT(EDMA3CC_DRAE_E10, ENABLE) |
CSL_FMKT(EDMA3CC_DRAE_E11, ENABLE);
I can't seem to locate (since ccs does not search outside of the project folder) the definition of (ie) EDMA3CC_DRAE_E10. The rCSL defines the same name but precedes it with "CSL_" so that the define is "CSL_EDMA3CC_DRAE_E10". Where can I find the #define used in the example code?
Also, is there a User Guide for the rCSL that shows syntax and usage?
Thx,
MikeH