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


Can't run any program that uses floating point arithmetic in STM32F4219 (Cortex M4)

This problem can be marked as solved.

I forgot to code SysTicck ISR. Then, as used floating point operations takes more time than a 1ms, the SysTick ISR is launched and serviced by the DefaultHandler that loops forever doing nothing.

Once I placed a breakpoint at this function, I discovered the issue.

Regards.