Trying to debug STM32F767 (NUCLEO-F767ZI board) with OpenOCD 0.10.0 in VSCode I get the following error:
Info : device id = 0xa05f0000
Warn : Cannot identify target as a STM32 family.
Error: auto_probe failed
Does it mean OpenOCD simply does not support this MCU?
How do I go about solving it?
I attach launch.json configuration below.
"name": "Debug (OpenOCD)",
"type":"cortex-debug",
"request": "launch",
"servertype":"openocd",
"cwd": "${workspaceRoot}",
"executable": "${workspaceRoot}/BUILD/NUCLEO_F767ZI/GCC_ARM-DEBUG/${workspaceRootFolderName}.elf",
"svdFile": "${workspaceRoot}/STM32F7x7.svd",
"runToMain": true,
"device": "STM32F767ZI",
"searchDir": ["C:/Program Files/OpenOCD/scripts"],
"configFiles": [
"/interface/stlink.cfg",
"/target/stm32f7x.cfg",
]