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


Pointer Artimetic Gets Compiler Warning

ptestar = testar+1;

is not equivalent to

ptestar = &testar+1;

The former is the same as

ptestar = &testar[1];

This is not what I am seeking to do, which is to get a pointer to a location just beyond the bounds of the array to find the array size by the method I describe in this thread:
http://www.openstm32.org/tiki-view_forum_thread.php?forumId=7&comments_parentId=1612Question

I have given up on that method. I realize now there is no advantage to doing it that way over the use of the sizeof operator.