Tool/software: Code Composer Studio
Hello,
because of the used dsp TMS320F2407A I have to use the CCSv3.3.
I just moved from an old Windows XP VM to a real Windows 7 64 bit PC.
In the old XP VM I use the Spectrum Digital XDS510PP, now I use the Blackhawk USB510L Emulator, because of the 64-bit-OS.
To use the possibility of a flash breakpoint, I use the symbols ANAENBL, HBPENBL, PGABRKP and PGAQUAL.
Today I only can find some information in the file SPU055B, but this document was written for the TMS320C5x.
These symbols work in my old XP VM in a GEL-File:
dialog EnableFlashBreakpoint( ProgAdr "ProgAdr")
{
ANAENBL = 0x0001; /* #0 = 1: enable analysis Module */
HBPENBL = 0x0020; /* #5 = 1: enable program adress */
PGABRKP = ProgAdr; /* new program adress */
PGAQUAL = 0x0002; /* = 2: Program instruction acquisition */
}
hotmenu DisableFlashBreakpoint()
{
ANAENBL = 0x0000; /* #0 = 0: disable analysis Module */
HBPENBL = 0x0000; /* #5 = 0: disable program adress */
PGABRKP = 0x0000; /* reset program adress */
PGAQUAL = 0x0000; /* = 0: */
}
But this GEL-file doen't work on my Windows7-PC.
I can display these symbols in the watch window, but they have a fixed value and I cannot change them.
Do I have to install some Scripting tools?
What is wrong?
Gerd