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


storing Bitmap in a STM32 - STM32F407VGT6 - Discovery Board

France

Hi,

Depending on how you declare your variable in the C file, it may be placed in RAM or Flash. You could check in the output.map file that is created in the Debug folder.

To place the image in flash, you should declare it as const; then it should be placed in the .rodata section that is loaded in flash instead of SRAM; there you should have ample space to save quite big images.

Bernard (Ac6)