From 8c23bcb7b6bc1bfd4957a453227d01988f2cfd0f Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 14 Oct 2025 16:49:53 +0200 Subject: [PATCH 1/2] readme update --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index ee1e6a0..01b12b5 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,19 @@ This tool acts as a versatile wrapper for OpenOCD (Open On-Chip Debugger), allow `remoteocd` is part of the `arduino:zephyr:unoq` platform. +### Uploading with remoteocd +Uploading the compiled binary to the microcontroller is handled by remoteocd. Instead of relying on hard-coded flash commands, it accepts an OpenOCD configuration file. This allows you to tailor the upload script to specific debugging or flashing requirements. +[ArduinoCore-Zephyr](https://github.com/arduino/ArduinoCore-zephyr) automatically installs remoteocd into the Arduino tools folder during setup. + +To upload your compiled sketch, use the following Arduino CLI command: + +```bash +arduino-cli compile -b arduino:zephyr:unoq + +arduino-cli upload -b arduino:zephyr:unoq +``` + ## License This project is licensed under the GPL3 license. See the LICENSE file for details. + From 514857da39b0ab2a79ddc12e68baf43a2b70dc49 Mon Sep 17 00:00:00 2001 From: Giulio Date: Wed, 5 Nov 2025 09:21:07 +0100 Subject: [PATCH 2/2] Update README.md Co-authored-by: Per Tillisch --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 01b12b5..02df675 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ This tool acts as a versatile wrapper for OpenOCD (Open On-Chip Debugger), allow ### Uploading with remoteocd Uploading the compiled binary to the microcontroller is handled by remoteocd. Instead of relying on hard-coded flash commands, it accepts an OpenOCD configuration file. This allows you to tailor the upload script to specific debugging or flashing requirements. -[ArduinoCore-Zephyr](https://github.com/arduino/ArduinoCore-zephyr) automatically installs remoteocd into the Arduino tools folder during setup. +remoteocd is automatically installed as a tool dependency of the [Arduino UNO Q Board platform](https://github.com/arduino/ArduinoCore-zephyr). To upload your compiled sketch, use the following Arduino CLI command: