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


int16_t working in System Workbench, uint16_t not

Hi,
I’m trying to declear some varibales in my project for a STM32F429 MCU,
but I’m struggeling to get uint16_t working.

I added: “#include “stdint.h”, but for uint16_t I get: unknown type name.
How can I resolve this?

Thanky a lot

I think you should try stdtypes.h or types.h or similar

Thank you very much hardwareguyvw!

I got it working with: #include “stdint.h” #include “stdlib.h” #include “stdio.h”