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.

TMS320F28379D: TMS320F28379D- CLA

Part Number: TMS320F28379D
Other Parts Discussed in Thread: C2000WARE

hi,

 i am using tms320f28379D launchpad , i would like to work CLA  +C28x processor ... for that i referred  workshop solution  when i am CLA_CODE on predefined symbol ,getting compile  error .

Please suggest me simple example understand the working of   CLA +C28x processor .

Thanks & Regards,

Rani

  • Hi Rani,

    The C2000Ware SDK has examples that show how to use CLA with C28. Please download the SDK from the following link and navigate to driverlib\f2837xd\examples\cpu1\cla for the necessary examples for your device:

    https://www.ti.com/tool/download/C2000WARE

    Thanks,

    Ashwini

  • Ashwini,

         when i am running example code also getting "Estop " error .

    Thanks & Regards ,

    Rani

        

  • Hi Rani,

    Please comment the ESTOP0 assembly line. The assembly ESTOP statement is only there for proof to show that CLA1 is being triggered. If you want your application to run without stopping you dont need that line.

    Thanks,

    Ashwini

  • Ashwini,

        I would like to take pulse count through ecap module running on CLA. Count value will be calculate on Main CPU function like RPM. For that i have done Code  but it doesnt work . Can you help me where i missed the configuration process to run my application as per my idea.

    1. Created variable in sharedcla. h and main file -Ecap_count

    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    #include "driverlib.h"
    #include "device.h"
    #include "cla_ex1_asin_shared.h"
    #include "Ecap_3.h"
    #ifdef __cplusplus
    #pragma DATA_SECTION("Cla1ToCpuMsgRAM");
    uint8_t Ecap_count;
    #else
    #pragma DATA_SECTION(Ecap_count,"Cla1ToCpuMsgRAM");
    int Ecap_count;
    #endif //__cplusplus
    //
    // Function Prototypes
    //
    void CLA_runTest(void);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    3. ECAP Peripheral is initialized as it is normal

    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    // Included Files
    //
    #include "driverlib.h"
    #include "device.h"
    #include "Ecap_3.h"
    //
    // Globals
    //
    uint32_t Roller_Pulse_Count;
    uint32_t ecap1PassCount;
    uint32_t epwm3TimerDirection;
    volatile uint16_t cap1Count;
    volatile uint16_t cap2Count;
    volatile uint16_t epwm3PeriodCount;
    void Ecap_Int()
    {
    XBAR_setInputPin(XBAR_INPUT7, 16);
    GPIO_setPinConfig(GPIO_16_GPIO16);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    4. In CLA file write the code to Read Pulse count

    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    //#############################################################################
    // \file f2837x/F2837x_internal_testcases/CLA/asin/asin.cla
    //
    // \brief Arc Sine Example
    // \author Vishal Coelho
    // \date Apr 8, 2013
    //
    //
    // Group: C2000
    // Target Family: F2837xS
    //
    //#############################################################################
    // $TI Release: F2837xS Support Library v3.11.00.00 $
    // $Release Date: Sun Oct 4 15:58:38 IST 2020 $
    // $Copyright:
    // Copyright (C) 2014-2020 Texas Instruments Incorporated - http://www.ti.com/
    //
    // Redistribution and use in source and binary forms, with or without
    // modification, are permitted provided that the following conditions
    // are met:
    //
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    My doubt is

    1. There are two place ISR function will be there , where i have to write code for count pulse ?

    2. when i am using C28x + CLA which   .cmd file  is used  cla or C28x  file (2837xD_FLASH_CLA_lnk_cpu1.cmd , 2837xS_Generic_FLASH_lnk.cmd.

    Thanks & Regards,

    Rani

  • Hi Rani,

    In the snapshot you have posted, the file names have a * next to them indicating that the files have not been saved. Could you check if this is causing the issue. Also, please could you provide more details on what is not working?

    Thanks,

    Ashwini

  • Ashwini,

       ISR functions in two places where we have to write functions for CLA application.

    Thanks & Regards,

    Rani

  • Hi Rani,

    The CLA task ISR only needs to be defined and implemented in the .cla file for CLA. You do not need any of the definitions you have in the .C file which will run on the C28.

    Make sure your code is setup to trigger the CLA task. It will help to read the TRM and this guide:

    https://software-dl.ti.com/C2000/docs/cla_software_dev_guide/intro.html

    You can check if the CLA task is being triggered by using the mdebugstop instruction.

    https://software-dl.ti.com/C2000/docs/cla_software_dev_guide/debugging.html

    Thanks,

    Ashwini

  • Ashwini,

     while uploading code getting an error as " Unknown properties :FlashcoreSelection " . But code is uploading i can debug the code.

    when i am add my peripheral initialization in ,cla file getting an error after adding Header files too.

    i am using "C:\ti\C2000Ware_3_03_00_00_Software\driverlib\f2837xd\examples\cpu1\cla "  Example sin program just added ECAP initialization.

    Thanks & Regards,

    Rani

  • Hi Rani,

    Can you check this post to see if the error you are getting is because while the target is the F2837xD i.e dual core the example you are using is for an F2837xS i.e. a single core.

    https://e2e.ti.com/support/tools/code-composer-studio-group/ccs/f/code-composer-studio-forum/479683/c2000-unknown-property-flashcoreselection

    Please could you post the code and the error you are getting regarding ECAP initialization? One suggestion is to have the C28 code do the initialization and have the CLA only use the ECAP module.

    Thanks,

    Ashwini

  • Ashwini,

    Can you check this post to see if the error you are getting is because while the target is the F2837xD i.e dual core the example you are using is for an F2837xS i.e. a single core.

             Yes, You are correct .Ok I will change it .

    Please could you post the code and the error you are getting regarding ECAP initialization? One suggestion is to have the C28 code do the initialization and have the CLA only use the ECAP module.

           

             In ECAP initialization there is no problem . But No action in code when i am given Pulse to ECAP Pin

           .When I am trying to write CLA1ISR to count Pulse of ECAP getting an error .

            Bellow i have attached my codes , Please look up any mistake i have done in  either configuration or Procedure to set up the CLA .

    .CLA file

    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    //
    // Included Files
    //
    #include "cla_ex1_asin_shared.h"
    #include "Ecap_3.h"
    __interrupt void Cla1Task1 ( void )
    {
    //
    Ecap_count = ECAP_getEventTimeStamp(ECAP1_BASE, ECAP_EVENT_1);
    Interrupt_clearACKGroup(INTERRUPT_ACK_GROUP11);
    __mdebugstop();
    }
    interrupt void Cla1Task2 ( void )
    {
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Shared .h file

    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    #ifndef _CLA_ASIN_SHARED_H_
    #define _CLA_ASIN_SHARED_H_
    //
    // Included Files
    //
    #include <stdint.h>
    #include "Ecap_3.h"
    #ifdef __cplusplus
    extern "C" {
    #endif
    //
    //Task 1 (C) Variables
    //
    extern int Ecap_count; //Result vector
    // function defintion
    __interrupt void Cla1Task1();
    __interrupt void Cla1Task2();
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Main File

    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    //
    // Included Files
    //
    #include "driverlib.h"
    #include "device.h"
    #include "cla_ex1_asin_shared.h"
    #include "Ecap_3.h"
    //
    // Defines
    //
    #define WAITSTEP asm(" RPT #255 || NOP")
    //
    // Globals
    //
    //
    //Task 1 (C) Variables
    // NOTE: Do not initialize the Message RAM variables globally, they will be
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    ECap.C file

    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    // Included Files
    //
    #include "Ecap_3.h"
    //
    // Globals
    //
    uint32_t Roller_Pulse_Count;
    uint32_t ecap1PassCount;
    uint32_t epwm3TimerDirection;
    volatile uint16_t cap1Count;
    volatile uint16_t cap2Count;
    volatile uint16_t epwm3PeriodCount;
    void Ecap_Int()
    {
    XBAR_setInputPin(XBAR_INPUT7, 16);
    GPIO_setPinConfig(GPIO_16_GPIO16);
    GPIO_setPadConfig(16, GPIO_PIN_TYPE_PULLUP);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Ecap.h file

    Fullscreen
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    /*
    * Ecap_3.h
    *
    * Created on: Jun 8, 2020
    * Author: Administrator
    */
    #ifndef ECAP_3_H_
    #define ECAP_3_H_
    #include "driverlib.h"
    #include "device.h"
    // Globals
    //
    extern uint32_t Roller_Pulse_Count;
    extern uint32_t ecap1PassCount;
    extern uint32_t epwm3TimerDirection;
    extern volatile uint16_t cap1Count;
    extern volatile uint16_t cap2Count;
    extern volatile uint16_t epwm3PeriodCount;
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    While compiling getting an error as below

    One more doubt In example CLA program used two claISR function . One is used in  Main C file other one is .cla File .

    Interrupt is occured process will be taken care of .cla File iSR function , Main . c file ISR function will be cleared this interrupt

    Am I correct ?

    Thanks & Regards,

    Rani

  • Hello Rani,

    I apologize for the long delay. I was out of office and hence could not reply sooner.

    1. Regarding the undefined CLA_O_SOFTINTEN message, this is a known issue with the C2000Ware 3.03 release. Please use the latest C2000Ware 3.04 from the ti.com/C2000Ware website to resolve this issue. 

    2. In the example CLA program, this is the flow:

    The C28 side in the CLA_initCpu1Cla1()

    • sets up the system for the CLA to execute Cla1Task1.  See source line "CLA_mapTaskVector(CLA1_BASE,CLA_MVECT_1,(uint16_t)&Cla1Task1);"
    • Along with this, the C28 side is also setting up the C28 side to generate an interrupt when the CLA finishes executing Cla1Task1. The C28 side interrupt service routine in cla1Isr1. See the source line "Interrupt_register(INT_CLA1_1, &cla1Isr1);"

    The C28 side in the CLA_runTest()

    • The C28 side code triggers the CLA task 1. See source line "CLA_forceTasks(CLA1_BASE,CLA_TASKFLAG_1);"

    The CLA side in  Cla1Task1()

    The C28 side cla1Isr1 ISR:

    • The ISR is generated when the CLA Task 1 completes. Hence this ISR then clears the C28 interrupt . See source line  "Interrupt_clearACKGroup(INTERRUPT_ACK_GROUP11);".  This code only belongs on the C28 side and is not relevant on CLA side as this is a C28 side interrupt.

    In this example, the C28 side interrupt is enabled for when CLA Task 1 completes as a demonstration to show that the CLA task completed as well as to show how handshaking can be done between CLA and C28. If this handshaking is not needed in your system you do not need to enable the C28 side interrupt for INT_CLA1_1 and hence don't  need the cla1Isr1.

    Hope this helps.

    Thanks.

    Ashwini

  • Thank you for the reply . I will check  it .

    Thanks ,

    Rani

  • Thanks Ashwini.

  • ?

    Ashwini,

     

    1.  If task can be requested by a peripheral interrupt which means have to  use this line   .DmaClaSrcSelRegs.CLA1TASKSRCSEL1.bit.TASK1     = CLA_TRIG_ECAP1INT;

    Am i Correct?

    2. What is difference between __attribute__((interrupt))  void Cla1Task1() & __interrupt void Cla1Task1().

    3. In hands on solution project file  doesn't  have .Cla file  i think so .cla file is mandatory or not?

    4. In Hands on Example project how adcintr is linked with CLA1ISR functions.

    __attribute__((interrupt))  void adca1intIsr( void );

    5. Corresponding API for this instruction is?

    DmaClaSrcSelRegs.CLA1TASKSRCSEL1.bit.TASK1  = CLA_TRIG_ECAP1INT;

    Thanks

    Rani

  • Hi Rani,

    1. Please look at the compiler optimization guide for details on the usage of interrupt keyword.

    Compiler Guide

    https://www.ti.com/lit/ug/spru514w/spru514w.pdf

    2. There is a .cla file in the solution project. In the project snapshot posted above, the build configuration is set to C28_CODE, hence cla file is excluded from build, Change the build configuration for the CLA and you will see the .cla file included in the project.

    3. Please see the device datasheet and TRM documentation to confirm if the CLA task can be triggered by ECAP peripheral and the programming of the TASK1 bit.

    Thanks,

    Ashwini