From 575eb6e1e279e89afc153c71fc3e82b782331932 Mon Sep 17 00:00:00 2001 From: JackN Date: Mon, 25 Oct 2021 17:10:08 -0400 Subject: [PATCH] Updated VSCode documentation --- content/docs/tools/vscode.md | 103 ++++++++++++++++++++++------------- 1 file changed, 66 insertions(+), 37 deletions(-) diff --git a/content/docs/tools/vscode.md b/content/docs/tools/vscode.md index e74be91..e73407f 100644 --- a/content/docs/tools/vscode.md +++ b/content/docs/tools/vscode.md @@ -15,29 +15,36 @@ top = false ## Basics -The probe-rs-debugger VS Code extension uses the Microsoft Debug Adapter Protocol to implement an interactive debugging experience between VS Code and a probe-rs target. +The **probe-rs-debugger VS Code extension** uses the Microsoft Debug Adapter Protocol to implement an interactive debugging experience between VS Code and a probe-rs target. -The extension is currently in pre-production/Alpha stage, with limited functionality. For details of current status and functionality please read this section. +The extension is currently in pre-production/Alpha stage, with limited functionality. For details of current status and functionality please read this [section](#current-working-functionality-and-known-limitations). -

Installation

+### Installation -* Install the **probe-rs-debugger** extension in VS Code, by downloading the latest `probe-rs-debugger-0.2.2.vsix` from the [Releases](https://github.com/probe-rs/vscode/releases) page in our repo (we will publish to the Microsoft Extension marketplace when we exit the 'Alpha' phase of this project) - * Install the extension by running `code --install-extension probe-rs-debugger-0.2.2.vsix` in the terminal +* Install the **probe-rs-debugger** extension in VS Code, by downloading the latest `probe-rs-debugger-0.3.0.vsix` from the [Releases](https://github.com/probe-rs/vscode/releases) page in our repo (we will publish to the Microsoft Extension marketplace when we exit the 'Alpha' phase of this project) + * Install the extension by running `code --install-extension probe-rs-debugger-0.3.0.vsix` in the terminal * Alternatively, - * To generate the extension from source code...(if you wish to update the version distributed with this repository), please follow these instructions + * To generate the extension from source code...(if you wish to update the version distributed with this repository), [please follow these instructions](#building-and-testing-the-debug-extension-in-vs-code) -* Install the **probe-rs-debugger** server component, using instructions from [probe-rs-debugger](https://github.com/probe-rs/probe-rs/tree/master/debugger) +* Install the **probe-rs-debugger** server component, using instructions from [probe-rs-debugger](https://github.com/probe-rs/probe-rs/tree/master/debugger/README.md) -

Usage and Configuration

+### Usage and Configuration -To use the `probe-rs-debugger` extension for VS Code, you will need to configure a `launch.json` entry for your target project. -The configuration choices are slightly different depending on if you wish to Launch a new, or Attach to an existing, `probe-rs-debugger` server. +To use the `probe-rs-debugger` extension for VS Code, you will need to configure a `launch.json` entry for your target project. + +We recommend that you familiarize yourself with the [VSCode debug process](https://code.visualstudio.com/docs/editor/debugging), and specifically the section that discusses [the differences](https://code.visualstudio.com/docs/editor/debugging#_launch-versus-attach-configurations) between launch and attach request types. + +The configuration choices may differ based on your use case, as demonstrated in the following examples: +- Start a debug session, by [launching a new](#using-the-launch-request-type) process on your target device. +- Start a debug session, by [attaching to an existing](#using-the-attach-request-type) process on your target device. +- Start a debug session (either form above) against a [remote debug server](#using-to-an-existing-probe-rs-debugger-server) process running on a server on a specific TCP/IP address and port. +- [Using RTT](#using-rtt-to-transfer-data) to transfer data (e.g. logs, and println) between VSCode and your target application Many of the entries in `launch.json` are optional, and the values for each are described in the hover tips. When values are restricted, the allowable values are available through VS Code intellisense. A minimum configuration would look something like this (required customizations are indicated with //!MODIFY tags ) -

Launch'ing the `probe-rs-debugger` with minimum configufation

+#### Start a debug session with minimum configufation ```json { @@ -57,7 +64,7 @@ A minimum configuration would look something like this (required customizations The following fully configured examples can be used (with customizations to reflect your own project and chip) to help you get started.
-

Launching the `probe-rs-debugger` server automatically

+#### Using the `launch` request type ```json { @@ -88,40 +95,59 @@ The following fully configured examples can be used (with customizations to refl } ``` -

Attachinging to an existing `probe-rs-debugger` server

+#### Using the `attach` request type ```json { "version": "0.2.0", "configurations": [ { - "preLaunchTask": "${defaultBuildTask}", //Configure a default build task for 'cargo build' "type": "probe-rs-debug", "request": "attach", - "name": "probe_rs Server attach example", - "server": "127.0.0.1:50001", + "name": "probe_rs Executable launch example", "cwd": "${workspaceFolder}", "program_binary": "Relative or fully qualified path to your program_binary", //!MODIFY "chip": "STM32H745ZITx", //!MODIFY - "connect_under_reset": true, "speed": 24000, //!MODIFY "probe": "PID:VID:", //!MODIFY "core_index": 0, "flashing_enabled": true, - "reset_after_flashing": true, - "halt_after_reset": false, + "console_log_level": "Info", //Error, Warn, Info, Debug + } + ] +} +``` + +#### Using to an existing `probe-rs-debugger` server + +```json +{ + "version": "0.2.0", + "configurations": [ + { + "preLaunchTask": "${defaultBuildTask}", //Configure a default build task for 'cargo build' + "type": "probe-rs-debug", + "request": "launch", + "name": "probe_rs Server attach example", + "server": "127.0.0.1:50001", //!MODIFY ... can be a server that is remote from the VSCode session, but local to the probe + "cwd": "${workspaceFolder}", + "program_binary": "Relative or fully qualified path to your program_binary", //!MODIFY + "chip": "STM32H745ZITx", //!MODIFY + "speed": 24000, //!MODIFY + "probe": "PID:VID:", //!MODIFY + "core_index": 0, "console_log_level": "Info", //Error, Warn, Info, Debug } ] } ``` -

Using RTT to transfer data (e.g. logs, and println) between VSCode and your target application

+### Using RTT to transfer data -`probe-rs-debugger` and the VS Code extension supports using RTT in your target application.
+`probe-rs-debugger` and the VS Code extension supports using RTT in your target application. -For more information on how to configure your target application to use RTT, please refer to the instructions under the -cargo-embed section of this guide.
+For more information on how to configure your target application to use RTT, please refer to the instructions under the [cargo-embed](../cargo-embed#RTT) +section of this guide. In order to capture the RTT output in the VSCode extension, you will need to supply additional entries to your applications `launch.json` entry. You can use the following example and modify the channel information to match the `rtt-target` channel configurations in your application. @@ -135,7 +161,6 @@ In order to capture the RTT output in the VSCode extension, you will need to sup "name": "probe_rs rtt-target example", // ... ... "rtt_enabled": true, - "rtt_timeout": 300, "rtt_channel_formats": [ { "channel_number": 0, @@ -166,7 +191,6 @@ When using `defmt`, we can configure the client side based on what is captured i "name": "probe_rs rtt-target example", // ... ... "rtt_enabled": true, - // "rtt_timeout": 300, //!OPTIONAL // "rtt_channel_formats": [ //!OPTIONAL // { // "channel_number": 0, @@ -178,21 +202,26 @@ When using `defmt`, we can configure the client side based on what is captured i } ``` -NOTE:When using `defmt` RTT, please keep the following limitations in mind.
+**NOTE:** When using `defmt` RTT, please keep the following limitations in mind. + * Due to the way the `defmt` crate works, it is currently not possible to mix `defmt` and `rtt-target` channels in a single application. * The `defmt` crate always uses channel number 0 for its output. -TIP:When using RTT, the data is streamed into a terminal window on a per channel basis. If your application uses multiple RTT channels, you may want to consider using the new [VSCode Terminal tabs](https://code.visualstudio.com/updates/v1_57#_integrated-terminal) setting.
+**TIP:** When using RTT, the data is streamed into a terminal window on a per channel basis. If your application uses multiple RTT channels, you may want to consider using the new [VSCode Terminal tabs](https://code.visualstudio.com/updates/v1_57#_integrated-terminal) setting. -

Current working functionality and known limitations

+### Current working functionality and known limitations -- [x] **Launch**: Automatcially launch probe-rs-debugger executable and connect to it, or ... -- [x] **Attach**: Use TCIP/IP port to connect to an existing probe-rs-debugger server -- [x] **Connect** to probe with probe-rs +- [x] **Launch**: Start a debug session on the target by (optionally) flashing the target firmware. +- [x] **Attach**: +- [x] By default, VSCode will manage (start/stop) the `probe-rs-debugger` process to facilite a debug session against a target process. It is also possible for the user to manage the `probe-rs-debugger` as a standalone process, and then use TCIP/IP port to connect to from VSCode. +- [x] **Connect** to the target with `probe-rs` - [x] Supports `connect-under-reset` - - [ ] Only tested against STM32H745, using the Cortex-M7 core of this multi-core chip. + - [x] Tested against the following architectures: + - [x] Cortex-M7 using STM32H745 + - [x] Cortex-M4 using nRF52833_xxAA + - [ ] RISC-V using ESP32-C3 - [x] **Flash** the chip with your own binary. - - [x] Supports `reset-after-flashing` + - [x] Supports `reset-after-flashing`, `full-chip-erase`, and `restore-unwritten-bytes` - [x] Supports `halt-after-reset`. This will allow you to set breakpoints in your main() function. - [x] Set, clear, disable, enable hardware **Breakpoints** - [x] **Step Over** executing code @@ -200,7 +229,7 @@ When using `defmt`, we can configure the client side based on what is captured i - [ ] Stepping at 'line' level, Step Into, Step Out, does not work yet - [x] **Variables View** - [x] View values of core **Registers**, and changes during code execution - - [ ] TODO: Expand to show additional architecture registers + - [ ] TODO: Expand to show additional architecture (e.g. RISC-V) registers - [x] View values of **Locals** and **Statics** variables, and update values during code execution. - [x] Shows datatypes and values for the following Rust datatypes. - [x] Base types, including &str @@ -222,19 +251,19 @@ When using `defmt`, we can configure the client side based on what is captured i - [x] RTT Channels that support Capture AND Input to VSCode Terminal windows - [ ] TODO: Enable Debug Console to accept CLI commands via REPL -

Build and Testing the debug extension in VS Code

+### Building and Testing the debug extension in VS Code * Open the project folder in VSCode. * Open a terminal and run the `yarn` command, to install VSCode development dependencies -

To run against a compiled executable of `probe-rs-debugger`

+#### To run against a compiled executable of `probe-rs-debugger` * Modify the `debug-example` entry in '.vscode/launch.json' file to point to your target project. * Press `F5` to __build and launch executable__ `probe-rs-debugger`. VSCode will open another VS Code window. In that window, * You will see the `debug-example` project you just configured. * Select the debug environment `probe_rs Executable Test`.* Press `F5` to start debugging. -

To run against an debuggable instance of `probe-rs-debugger`

+#### To run against an debuggable instance of `probe-rs-debugger` * Clone the [probe-rs](https://github.com/probe-rs/probe-rs.git) repository, and open it in VSCode. * In this `probe-rs` repo, select the debug environment `DAP-Server probe-rs-debugger`