I'm liking the new Eclipse IDE, but wow so many options! I can't seem to find where I can change the S19 file name output after a build. I see the project properties (right click on the root project folder, click on Properties) dialog with its build options, but nothing specific about output file.
I also see the Run Configurations (go to the Run menu, click Run Configurations). In that tree, under the BDM_PandE_Multilink_CyclonePro branch, in the Main tab, there are options for C/C++ application. These are by default "Project" and "Standard/Project.abs"
I tried changing these both to my new name, but the S19 file that is created remains "Project.s19". Anyone?
Solved! Go to Solution.
Thanks, BlackNight. I settled on manually (outside of CW10 / Eclipse) renaming the *.abs, *.args, *.map files. I also had to update the reference to the old name in the .cproject config file.
Works fine now.
Proper way:
properties->C/C++ Build/Built Artifacts
Hello,
if you are using in your project the Burner to create the S19 file, then have a look at the burner.bbl inside the Project_Settings/Linker_Files/burner.bbl:
there is
OPENFILE "%ABS_FILE%.s19"
format=motorola
busWidth=1
origin=0
len=0x1000000
destination=0
SRECORD=Sx
SENDBYTE 1 "%ABS_FILE%"
CLOSE
So you can change the OPENFILE line to whatever you like.
BK
Thanks, BlackNight. I settled on manually (outside of CW10 / Eclipse) renaming the *.abs, *.args, *.map files. I also had to update the reference to the old name in the .cproject config file.
Works fine now.