Tool/software: Code Composer Studio
Hi,
When I launch the debug session of the firmware I want to AUTOMATICALLY add the symbols from the bootloader which resides in same project folder.
CCS_Project/
Booloader/bin/bootloader.out
I have read that it could be done with an GEL file. Is this correct?
1) Added a GEL file to a folder named GEL in project root (CCS_Project)
2) Launched the debug session (break @ main) and then opened the "Tools->GEL Files" menu.
3) Added the GEL file
4) Reload GEL file
ERROR : MSP430: GEL: Error loading file 'C:\abc\def\CCS_Project\Bootloader\my_gel_file.gel': line 3: mismatched char: 'EOF'
Contents of GEL file is
StartUp()
{
GEL_SymbolAdd($(GEL_file_dir)/bin/Bootloader.out");
}
Even if that would work it doesn't stay there. Have to add it each time. Is this because it doesn't execute properly?
What is wrong with the GEL file and how to I load it automatically?




