You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,19 @@ This tool acts as a versatile wrapper for OpenOCD (Open On-Chip Debugger), allow
11
11
12
12
`remoteocd` is part of the `arduino:zephyr:unoq` platform.
13
13
14
+
### Uploading with remoteocd
15
+
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.
16
+
[ArduinoCore-Zephyr](https://github.com/arduino/ArduinoCore-zephyr) automatically installs remoteocd into the Arduino tools folder during setup.
17
+
18
+
To upload your compiled sketch, use the following Arduino CLI command:
19
+
20
+
```bash
21
+
arduino-cli compile -b arduino:zephyr:unoq
22
+
23
+
arduino-cli upload -b arduino:zephyr:unoq
24
+
```
25
+
14
26
## License
15
27
16
28
This project is licensed under the GPL3 license. See the LICENSE file for details.
0 commit comments