2025-03-04 8:18 AM
Hi,
I'm using an STM32L562 Discovery Kit, and trying to use the VSCode extension to debug.
For now, I am only working with a basic code to blink LD10 with TrustZone activated.
Now, I have an issue when flashing the MCU : the program doesn't seam to be running with TrustZone, but the same code without TrustZone runs as expected.
I saw that when debugging (with STM32CubeIDE) I need to tell that I want to start in the Secure world.
https://youtu.be/R9DsR-qF3bw?si=qIQG0d2XnSpl39vA&t=1970
Do I need to set this somewhere in VSCode too, or is the default mode ?
Is "Build & Debug Microcontroller Secure and NonSecure - ST-Link" doing it by default ?
Thank you in advance,
Adrian
2025-03-11 3:06 AM - edited 2025-03-11 3:09 AM
Hello @Adrian_,
Using VS Code, you should flash 2 images starting from the non secure than the secure one!
First, you have to build the project to have the binaries then the images that will be flashed to the MCU can be found in the launch.json file as follows (modify the launch.json file to add the 2nd image context)
Please note that the first context to be flashed is the NS one, the 2nd context is the Secure one!
This configuration can be stored so the next time you debug a secure project, you don't have to flash the MCU in that specific order, you just select the securedebug config
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
2025-03-12 3:06 AM
Thanks for your answer.
My lauch.json file is quite different from yours, but it looks like the "symbolFiles" are already in the right order.
I also tried to set "executable" to the SecureTarget, but still not running.
Note: I am working on Ubuntu 24.04
2025-03-12 5:36 AM
Regarding the default six configurations;
Try using Build & Debug NonSecure Microcontroller - ST-Link first then Build & Debug Secure Microcontroller - ST-Link
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.