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


New C++ project should create cpp files

How does
file->New->C++ project
differ from
file->New->C project
both create files with .c extension
and the compiler used is based on these extensions, not File->New choice.
(Is this a joke?)

Also I would expect the startup to be different for C++, its not.

If I create a C++ project that refs the standard peripheral library or the HAL library, should I convert the libraries to C++ too (by changing file extennsions to cpp and casting more strongly etc), or can I leave them alone and call their C functions from my C++ project? (as if).