Part Number: TMS320F280049C
Tool/software: Code Composer Studio
Dear All,
I configuring the CLA as following:
MemCfgRegs.LSxCLAPGM.bit.CLAPGM_LS7 = 0;//// CLA data in RAMLS7
MemCfgRegs.LSxMSEL.bit.MSEL_LS7 = 1;//Select CLA as the master of RAMLS7
and the CMD file set:
RAMLS7 : origin = 0x00B800, length = 0x000800
Cla1DataRam1 : > RAMLS7, PAGE = 1
I defined a struct in Cla1DataRam1:
#pragma DATA_SECTION(CLA_Epwm_gstv, "Cla1DataRam1");
CLA_Epwm CLA_Epwm_gstv;
then debug and connect to the target,the struct address at:0x0000BA34~0x0000BA5E@Data. I want initialize the struct, and the result is address at 0x0000BA34~0x0000BA3F can initialized, But else can not initialized. 0x0000BA40~0x0000BA5E write Uint32 number( not 0) but read return 0. the address not over RAMLS7. I don't know why like this.
I hope a Daniel can help me solve this problem. Thanks!