From b9446912c7acceca42f732f0ab55981deca9c2da Mon Sep 17 00:00:00 2001 From: Sergio Gasquez Date: Thu, 14 Dec 2023 10:29:18 +0100 Subject: [PATCH] docs: Minor updates in probe-rs config --- src/tooling/debugging/probe-rs.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/tooling/debugging/probe-rs.md b/src/tooling/debugging/probe-rs.md index 8720cac..cc35b9e 100644 --- a/src/tooling/debugging/probe-rs.md +++ b/src/tooling/debugging/probe-rs.md @@ -33,7 +33,7 @@ The flashing command can be set as a custom Cargo runner by adding the following ```toml [target.'cfg(any(target_arch = "riscv32", target_arch = "xtensa"))'] -runner = "probe-rs run --chip esp32c3 --format idf" +runner = "probe-rs run --chip esp32c3" ``` With this configuration, you can flash and monitor your application using `cargo run`. @@ -67,11 +67,11 @@ There is a `probe-rs` extension in VS Code, see `probe-rs` [VS Code documentatio "coreConfigs": [ { "coreIndex": 0, - "programBinary": "./target/riscv32imc-unknown-none-elf/debug/${workspaceFolderBasename}", //!MODIFY + "programBinary": "target/riscv32imc-unknown-none-elf/debug/${workspaceFolderBasename}", //!MODIFY "rttEnabled": true, "rttChannelFormats": [ { - "channelNumber": "0", + "channelNumber": 0, "dataFormat": "String", "showTimestamp": true, } @@ -88,11 +88,11 @@ There is a `probe-rs` extension in VS Code, see `probe-rs` [VS Code documentatio "coreConfigs": [ { "coreIndex": 0, - "programBinary": "./target/riscv32imc-unknown-none-elf/debug/${workspaceFolderBasename}", //!MODIFY + "programBinary": "target/riscv32imc-unknown-none-elf/debug/${workspaceFolderBasename}", //!MODIFY "rttEnabled": true, "rttChannelFormats": [ { - "channelNumber": "0", + "channelNumber": 0, "dataFormat": "String", "showTimestamp": true, }