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.

TMS320F280039C-Q1: CLA cannot read the variables in LS RAM properly

Part Number: TMS320F280039C-Q1
Other Parts Discussed in Thread: C2000WARE

Tool/software:

Hi team

Customer reported an issue that they defined the LLC_IF.initOK variable in LS4RAM as a flag, but CLA cannot get the proper value of this flag, it makes the program always step into the if statement.

The LLC_IF.initOK is set to 1 with C28 in init. process, but CLA program go into if (LLC_IF.initOK == 0).

RAM register is checked that LS4RAM is allocated properly to share RAM.

the data is also checked in memory browser. Other data located in LS4RAM can be accessed properly by CLA.

Attached in the CLA init function:

device_cla.c
Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//###########################################################################
//
// FILE: device_cla.c
//
// TITLE: f28003x CPU 32-bit Timers Initialization & Support Functions.
//
//###########################################################################
//
//
// $Copyright:
// Copyright (C) 2021 Texas Instruments Incorporated - http://www.ti.com/
//
// $
//###########################################################################
#include "device.h"
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

thanks

Joe

  • Hi Joe,

    Can you please import the CLA_ex1_asin example in C2000Ware and reference the memcfg section in board.c and the linker command file the application for more. I suspect that there may be a missing memory configuration for RAMLS4.  I see you have two mode between OBC and DCDC. I'm not sure what mode you're observing this in but I don't see a configuration for LS4 in the DCDC operation. Please double check you've done the assignment for that section. Make sure you have a .scratchpad section as well.

    It should be noted that the CLA compiler places all CLA function data, arguments, and temporary storage in function frames in the .scratchpad section.

    Regards,

    Ozino

  • Hi Ozino

    Yes, the DCDC part is not include the LS4 configuration, but you can see the screen shot on the register configuration, MSEL_LS4 and CLAPGM_LS is configured properly. but I will check the  .scratchpad configuration and go back to you latter.

    Thanks

    Joe

  • Hi Joe,

    Sounds good. Feel free to respond if you have more questions

    Regards,

    Ozino

  • Hi Ozino

    We deleted the code, so there is no issue for now.

    Thanks

    Joe