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