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 Simple debugger problem...  

Simple debugger problem...

France

Hi,

There is a small problem in the memory view, where the debugger tries to read past the end of the existing memory (which is the case as your stack is at the end of the chip internal SRAM), thus getting an access error and not updating the memory view. We are currently working on a solution, that will be available in a coming update.

In the meantime you could, instead of using the memory view, you could create a watch to check that the variable is correctly updated, possibly accessing the variable by *(int*)0x20003ff3

Hops this helps,

Bernard