I have been debugging my application for some time. As part of this debugging process I regularly try changing memory locations for certain sections of code and TSK priorities for various tasks. Each time I make a change it shows up in the .tcf file, as it should. However, the changes seem to be appended to the end of the file instead of removing the previous line of script. After debugging for a while my .tcf file has grown significantly with many redundant/old configurations appended onto the old configs. Is this normal? Is there some way to "clean" the .tcf file of all of my old test configurations?
Here is a short sample of some of my tests and the script generated:
bios.TSK.instance("TSK_processBuffer").order = 1; bios.TSK.instance("TSK_dipMonitor").order = 3; bios.TSK.instance("TSK_processBuffer").priority = 3; bios.TSK.instance("TSK_processBuffer").priority = 2; bios.TSK.instance("TSK_processBuffer").priority = 3; bios.TSK.instance("TSK_dipMonitor").order = 1; bios.TSK.instance("TSK_processBuffer").order = 2; bios.TSK.instance("TSK_idle").order = 3; bios.TSK.instance("TSK_dipMonitor").priority = 2;
Thx,
MikeH