All:
In working with C6713, there is a section of code applied at the end of the .tcf file:
// !GRAPHICAL_CONFIG_TOOL_SCRIPT_INSERT_POINT!
if (environment["ver"] == "Release" || environment["ver"] == "DebugFlash")
{
ti_tcapps_utils = {};
// utils.importFile( "../applyTable.tci" );
}
if (config.hasReportedError == false) {
prog.gen();
if (environment["ver"] == "Release" || environment["ver"] == "DebugFlash")
{
// after generating *cfg.cmd file, now modify it for table() operator
// ti_tcapps_utils.applyTableBinitCmdFile (prog.name + "cfg.cmd",
// prog.name + "cfg.cmd",
// ", table(BINIT)" );
}
}
--------------------------------------------------------------------------------------------------
In order to work with the .tcf file in graphical mode, I need to go into text mode and comment out 4 lines (shown above). I can then close the .tcf file and open in graphical mode. When I am done with graphical mode, I then have to go into text mode and uncomment these 4 lines before building.
This is different than CCS 3.3 - is there a way to NOT have to do this?