probe-rs / vscode

VSCode debug extension for probe-rs. It uses the MS DAP protocol to communicate directly with the probe (via probe-rs), and supports basic command line debugging in addition to VSCode UI.
https://probe.rs/
Other
65 stars 5 forks source link

Add support for non Elf binary formats #62

Closed noppej closed 1 year ago

noppej commented 1 year ago

In addition to the currently supported Elf format, this adds support for binary formats Bin, Hex, and Idf.

To test, please use

noppej commented 1 year ago

cc: @mabezdev , this adds VSCode debugging support for the ESP-IDF bootloader work you did earlier this month :)

Snippet from launch.json:

...<snip>...
      "flashingConfig": {
        "flashingEnabled": true,
        "haltAfterReset": false,
        "formatOptions": {
          "format": "idf"
        }
      },
...<snip>...