Other Parts Discussed in Thread: C2000WARE
Tool/software: TI C/C++ Compiler
my customer allocate flash on both Page0 and Page1, then convert the .out file to .s19 file is suppose to have two .s19 file. but with the command line below only generate one .s19 file, and the other one is .m10 file, question is how to write the command line to generate two .s19 files with different name. the command line they used is below:
hex2000.exe --romwidth=16 --memwidth=16 --exclude + "\".resetisr*\"" + "--exclude" + "+"\"codestart*\"" + " -m3 -byte -o " + FileTemp_s19 + " " + FileWithoutPath;
How to modify the command line so that can generate two different .s19 files?