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


Best way to create a generic library

Building a static library would seem like a difficult task.

In crossstudio I have a general project which used the stdperph library. This project was included in the specific application project. By including it, it would inherent the settings from the specific application (chip type etc). This solved the problems with all the ifdefs and I could include all library code at once.

In my own code I still had to take into account the different capabilities of the chip types but this was managable with some ifdefs.

Is such a work flow possible with SW?