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


You are viewing a reply to Issue snprintf floats  

Issue snprintf floats

Ok I found a discussion on reddit. One of the fixes they describe is doing a garbage snprintf call very early. This allocates the necessary memory. This seems to work. The obvious problem is will it always work?

https://www.reddit.com/r/embedded/comments/9uvogb/freertos_malloc_and_c_standard_library/e9896qo?utm_source=share&utm_medium=web2xQuestion

I have updated my project with the fix:
https://bitbucket.org/arminoonk/printf-float-issue/src/master/Question