2016-05-19 07:47 AM
I used to work with
http://www.ti.com/product/MSP430F47197
and I found out that there is a Flasher which gives you this ability to load the code through a batch file.So, I am just wondering if you guys are familiar with such thing other than using IAR or other IDEs?
#command-line #lmgtfy:-stm32-resources #stm32f1072016-05-19 08:53 AM
Both the
(JTAG/SWD) and (Serial) come with command line versions, the latter also having source. There are also a number of open source projects supporting the serial protocol, the protocol is well documented, and not inherently complicated.There is also the .2016-05-19 10:49 AM
But, all I can see is only .exe files and no actual batch file to use!
2016-05-19 12:18 PM
Ok, but what do you think batch files execute?
Run the command line utilities, learn the usage/parameters suitable for your part and mode of connectivity, and then put that in a .BAT file.2016-05-19 12:26 PM
2016-05-19 03:39 PM
Not sure what tool chain you are using.
I'm pretty sure that ST-LINK can take binary files, and that IAR and KEIL can output .HEX using a project output check-box selection. FromELF or objcopy/objdump type tools can generate .HEX from .ELF/.AXF type files. For HEX there are also tools like srecords2016-08-31 06:14 AM