Hi , I wants to Build by Firmware through cmd that generate .bin and .hex file in Window system
So , How to do that ??
解決済! 解決策の投稿を見る。
Hi @ankitvats ,
you have many options:
a) simple create batch file and call the compiler and linker. Easy for simple projects.
b) use a make file and call it with make (or cmake, if you prefer), see for example https://mcuoneclipse.com/2017/07/22/tutorial-makefile-projects-with-eclipse/ or https://mcuoneclipse.com/2012/02/13/make-my-make-with-eclipse-and-mcu10/
c) call the IDE to build your project from the command line, see https://mcuoneclipse.com/2017/08/03/building-eclipse-and-mcuxpresso-ide-projects-from-the-command-li...
d) if using the MCUXpresso SDK, you can do it directly too, see https://mcuoneclipse.com/2019/04/14/tutorial-mcuxpresso-sdk-with-linux-part-1-installation-and-build...
I hope this helps,
Erich
Thanks for your support.
Hi @ankitvats ,
you have many options:
a) simple create batch file and call the compiler and linker. Easy for simple projects.
b) use a make file and call it with make (or cmake, if you prefer), see for example https://mcuoneclipse.com/2017/07/22/tutorial-makefile-projects-with-eclipse/ or https://mcuoneclipse.com/2012/02/13/make-my-make-with-eclipse-and-mcu10/
c) call the IDE to build your project from the command line, see https://mcuoneclipse.com/2017/08/03/building-eclipse-and-mcuxpresso-ide-projects-from-the-command-li...
d) if using the MCUXpresso SDK, you can do it directly too, see https://mcuoneclipse.com/2019/04/14/tutorial-mcuxpresso-sdk-with-linux-part-1-installation-and-build...
I hope this helps,
Erich