"Also, has anyone been able to..." <- > <@michael.desilva:matrix.org> 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 (in this case the bootloader is flashed to 0x0800\_0000 and the `ino` source to 0x0804\_0000)+ 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 > > ```json > { > "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", > } > ] > } > ``` Are you using an external debug probe?