Hello
I have a board that uses a C6743 and i'm presented with a strange isssue.
I declare the following code:
unsigned short test2 = 0x5678;
void main( void )
{
static unsigned short test1 = 0x1234;
system.fwVersion[0] = test1 + test2;
return;
}
And when i start the debug session the value that i read for test1 and test2 in memory is wrong.
To further debug the problem i ran the same code, with the same .gel file on the omap-l137EVM and the variables present the correct values.
I'm using CCS4.1, code generation tools v6.1.12, DSPBIOS 5.41.
Is there any specific step i need to take to get the code in the C6743 to work?
Because in the C6747 the code runs fine...
Thanks in advance,
Sergio Martins