cancel
Showing results for 
Search instead for 
Did you mean: 

How to enable .srec generation from SPC5 Studio?

NMazz.2
Associate II

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.

1 ACCEPTED SOLUTION

Accepted Solutions
Angelo Castello
Associate III

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

View solution in original post

2 REPLIES 2
Angelo Castello
Associate III

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

NMazz.2
Associate II

Perfect thank you so much!