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


Generating Project Build Scripts

Hi,

On Windows, I know you can build a project and generate the ELF file with the following command line :

To build :
{INSTALLATION_PATH}/eclipsec.exe --launcher.suppressErrors -nosplash -application org.eclipse.cdt.managedbuilder.core.headlessbuild -build {PROJECT_NAME} -data {WORKSPACE_LOC}

To clean :
{INSTALLATION_PATH}/eclipsec.exe --launcher.suppressErrors -nosplash -application org.eclipse.cdt.managedbuilder.core.headlessbuild -cleanBuild {PROJECT_NAME} -data {WORKSPACE_LOC}

To generate the HEX file, you have to manually modify the project post-build step command (Project Properties > C/C++ Build > Settings > Build Step) or add a command to your script.

I did not used this on Linux, I can’t tell you if it also works..

Hope it answer your question.
Kevin.