Tool/software:
I am porting the Code Composer 4.10 development environment to another laptop. We use gel scripts to run tests using the TMSC3x simulator. When the script runs it executes these gel commands:
memory()
{ GEL_MapOff( );
GEL_MapReset( );
GEL_MapOn( );
GEL_MapReset( );
GEL_MapAdd(0x00000000, 0, 0x00020000, 1, 1);
GEL_MapAdd(0x00020000, 0, 0x00000100, 1, 1);
GEL_MapAdd(0x00800000, 0, 0x00009fbf, 1, 1);
GEL_MapAdd(0x00809fc0, 0, 0x0000603f, 1, 1);
GEL_MapAdd(0x00810000, 0, 0x00008000, 1, 1);
GEL_MapAdd(0x00840000, 0, 0x0005000, 1, 1);
GEL_MapAdd(0x00850000, 0, 0x00000100, 1, 1);
GEL_MapAdd(0x00860000, 0, 0x0000ffff, 1, 1);
GEL_MapAdd(0x00870000, 0, 0x00000100, 1, 1);
GEL_MapAdd(0x00880000, 0, 0x00000100, 1, 1);
GEL_MapAdd(0x00890000, 0, 0x00000100, 1, 1);
}
A popup with error: Can't Add Memory Map. Add Memory Map failed: Address: 0x800000, Length:0x9FBF Page0
followed by more 0x8500F4, 8500F5, 0x8500F8 and 0x8500FF.
I am using the brd file from the other laptop, same scripts and Code Composer. Any help is greatly appreciated.