Loading...
 

Zephyr project on STM32

   Zephyr Workbench, a VSCode extension to manage Zephyr on STM32.
It enables users to easily create, develop, and debug Zephyr applications.
Main features:
  • Install host dependencies.
  • Import toolchain and SDK.
  • Create, configure, build and manage apps.
  • Debug STM32.
You can directly download it from the VSCode marketplace
For more details, visit the Zephyr Workbench

System Workbench for STM32


You are viewing a reply to ac6_flasher execute directly  

Re: ac6_flasher execute directly

Hi,

1-
The “ac6_stm32flasher.exe” ($ECLIPSE_HOME/plugins/fr.ac6.mcu.externaltools.win32.xxxx/tools/flasher) is an obselete tool. It does not support all the boards.

For now, we recommend you to launch the debug to program your chip or to download and to use “STM32 ST-LINK Utility” (at http://www.st.com/web/en/catalog/tools/PF258168).Question
We are currently working on a new feature to program/erase the chip from the Windows and Unix-based systems versions.

2-
To generate an intel hex file, you need to change the post-build command.
Select the project > Properties > C/C++ Build > Settings > Build Steps
Then replace the command by :
arm-none-eabi-objcopy -O ihex “${BuildArtifactFileBaseName}.elf” “${BuildArtifactFileBaseName}.hex”

Kevin.