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


External Compiler error

When I try to build whatever project with external compiler I get the following error:

‘’make all
Building file: ../startup/startup_stm32f767xx.s
Invoking: MCU GCC Assembler
%cd%
make: Interrupt/Exception caught (code = 0xc00000fd, addr = 0x4227d3)’’


while internal copiler build everything. What is the problem with the external compiler?
I tried everything I have no idea about the source of “%cd%”, but it appears a syntax error somewhere...


Thank you

The problem was on the System Path.
I make a start.bat as follow:


@ECHO OFF
set PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Ac6\SystemWorkbench;C:\ProgramData\Oracle\Java\javapath;
eclipse.exe



and now the internal compiler works.