cancel
Showing results for 
Search instead for 
Did you mean: 

TrustZone with VScode extension

Adrian_
Associate

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

3 REPLIES 3
Sarra.S
ST Employee

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)

debug in secure mode.png

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.

Adrian_
Associate

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.

Adrian__1-1741772766877.png

I also tried to set "executable" to the SecureTarget, but still not running.

Note: I am working on Ubuntu 24.04

 

Sarra.S
ST Employee

Regarding the default six configurations; 

  • Build & Debug Secure Microcontroller - ST-Link: This option allows you to load the code onto the Secure microcontroller, and initiate debugging.
  • Attach to Secure Microcontroller - ST-Link: With this option, you can connect the debugger to the Secure core without downloading new firmware.
  • Build & Debug NonSecure Microcontroller - ST-Link: This option allows you to load the code onto the NonSecure microcontroller, and initiate debugging.
  • Attach to NonSecure Microcontroller - ST-Link: With this option, you can connect the debugger to NonSecure core without downloading new firmware.
  • Build & Debug Microcontroller Secure and NonSecure- ST-Link: This option allows you to load the code onto the Secure and NonSecure microcontroller, and initiate debugging.
  • Attach to Microcontroller Secure and NonSecure- ST-Link: With this option, you can connect the debugger to both the Secure and NonSecure without downloading new firmware.

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.