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


System Workbench for STM32 failed to run on Mac OS X

Was seeing the ‘sed’ issue on Mac OS X Sierra (10.12.6). Had homebrew installed so:

% which sed
/usr/local/bin/sed

The simple fix was to temporarily move homebrew sed out of the way:

% cd /usr/local/bin
% mv sed sed0

Now sed reports using the stock one:

% which sed
/usr/bin/sed

Ran the installer. This time it ran to completion. Then renamed sed back to where it was:

% cd /usr/local/bin
% mv sed0 sed

Thanks for the tip.