I have started my adventure with ESP32C3 (ESP32-C3-DevKitM-1). I am getting to know the platform with a tutorial (https://github.com/espressif/vscode-esp ... ial/toc.md). Currently, I'm testing the debug (https://github.com/espressif/vscode-esp ... bugging.md) where I have little the problem.
I would like to check watchpoint functionality, but my "Variables Window" is empty. I can't see the windows such as peripherals, registers, memory and disassembly too. Have I forgotten any configuration?
I use the "blink example" project, Espressif IDF v1.4.0 and ESP-IDF v4.4.1 (stable).
My launch.json file:
Code: Select all
{
"version": "0.2.0",
"configurations": [
{
"type": "espidf",
"name": "Launch-name",
"request": "launch"
},
]
}