HI:
I have some question about global/static parameter setting to ask.
We use dm648 dsp, but the problem that I can't find way to fix it.
However, I find something unusual that maybe a breakpoint.
Here's my tooling version:
Tooling Version: CCS 3.3.82.13
Integrated Development : 5.98.0.393
BIOS Version: 5.41.13.43
CGT version: 6.0.8
DSP: dm648
example:
TVP5154.c
/*******Global Variable*********/
static _TVP5154_decObj decObj[NUM_DECODERS] =
{
{0x5E, NULL, 0, {{0, 1}, {0, 2}, {0, 4}, {0, 8}}}
};
Uint8 x = 0x5e;
static Uint8 y = 0x5e;
static TVP5154_ConfParams TVP5154_default =
{
TVP5154_MODE_NTSC,
/**< NTSC operation defayult */
TVP5154_AFMT_COMPOSITE_A,
/**< Composite channel A selection default */
TRUE
/**< BT656 sync enabled */
};
/********************************/
I watch the memory when the program running.
expect reality
x 0x5E 0x0E
Y 0x5E 0x02
In the struct, the first and the last parameter are uncorrect, but the other parameter corrent
I saw the post of E2E.
Does this problem happen because the SDSCM00039997 issue?