Hi all.
I am using the following batch file as a post-build step:
---
@ECHO OFF
set HexUtil=C:\TI\ccsv5\tools\compiler\c2000_6.1.9\bin\hex2000.exe
set CCSOutFile=Project.out
@ECHO ON
md App
%HexUtil% -o App\app.bin -boot -b -sci8 %CCSOutFile%
--
How can I automatically change the variable HexUtil as the compiler version is changed. For example, can I access the code composer studio path variable CG_TOOL_ROOT= C:\TI\ccsv5\tools\compiler\c2000_6.1.9 from the windows batch file?
Many thanks,
Christian