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.

TMS320F28377S:

Part Number: TMS320F28377S

Hi Team,

Can you please share me the reason for the below issue while I am trying to instrument the software build on RTRT Version 7.5.0.0

FileA.h consists of the below piece of code.
#ifndef EALLOW
#define EALLOW __asm(" EALLOW")
#endif

Now, EALLOW is called in file FileB.c as follows

void function( void )
{
// Write ADC configurations and power up the ADC's
TUInt16 l_usI = 0;

EALLOW;

.

.

.

}

Issue: When I trying to instrumented this code on RTRT, The following error is observed "FileB.c", line 90: error: expected an expression

Do I have to manually update Target deployement port or any RTRT settings to resolve this issue?

I am currently using ccs_setup_10.4.0.00006.

Thanks

  • Hi, 

    The statement __asm(" EALLOW") is an assemby instruction invoked from the C code.

    I am not familiar with RTRT and the mechanism used to instrumented the code.  Does it also work with asm files?

    You may have to check with the RTRT tool for a resolution on this issue.

    Best Regards

    Siddharth