2021-04-16 12:01 PM
I am using SPC5 Studio ver 6.0 for a dev kit with freegcc with vle support for a SPC58NG-DISP dev kit and I want to add .srec file generation. I didn't see anything in the properties/c/c++ build/settings that was an easy selection and hope you can point me to what I need to do. Have an .srec parser and was hoping to reuse to not have to create an .elf parser or .hex parser.
Solved! Go to Solution.
2021-05-03 06:34 AM
Hello,
The Motorola S-Record binary is automatically generated for each SPC5Studio project and it is placed under build directory with the .mot extension.
The choice to use .mot and not .srec was stay stay near to Motorola name.
Typing from a bash sheel the command :
$ file build/out.mot
you should discover that is an S-Record....
$ file out.mot
out.mot: Motorola S-Record; binary data in text format
I hope this help you.
Regards
2021-05-03 06:34 AM
Hello,
The Motorola S-Record binary is automatically generated for each SPC5Studio project and it is placed under build directory with the .mot extension.
The choice to use .mot and not .srec was stay stay near to Motorola name.
Typing from a bash sheel the command :
$ file build/out.mot
you should discover that is an S-Record....
$ file out.mot
out.mot: Motorola S-Record; binary data in text format
I hope this help you.
Regards
2021-05-06 02:06 PM
Perfect thank you so much!