* Also, has anyone been able to get Jtag working with rust? This is my vscode `launch.json` which works when I flash the GIGA R1 with the mbed bootloader + Arduino `.ino` C++ code. However, it keeps saying timeout to GDB server when I try the same with the `stm32h7xx-hal` bare metal bin flashed to 0x0800_0000 ``` { "version": "0.2.0", "configurations": [ { "name": "Cortex Debug", "cwd": "${workspaceFolder}", "executable": "${workspaceFolder}/target/thumbv7em-none-eabihf/release/stm32_blink", "request": "attach", "type": "cortex-debug", "runToEntryPoint": "main", "servertype": "jlink", "serverpath": "/Applications/SEGGER/JLink/JLinkGDBServerCLExe", "device": "STM32H747XI_M7", "interface": "swd", "armToolchainPath": "/opt/homebrew/bin", // "showDevDebugOutput": "vscode", } ] } ```