From 493bb366cabf681d84e133a5038586d6bb7daf18 Mon Sep 17 00:00:00 2001 From: Luca Burelli Date: Wed, 12 Nov 2025 12:28:30 +0100 Subject: [PATCH 1/2] json: require version 0.2.0 of the sketch tool --- extra/artifacts/_common.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/artifacts/_common.json b/extra/artifacts/_common.json index c1b6b08b..03e9dece 100644 --- a/extra/artifacts/_common.json +++ b/extra/artifacts/_common.json @@ -30,7 +30,7 @@ { "packager": "arduino", "name": "zephyr-sketch-tool", - "version": "0.1.0" + "version": "0.2.0" }, { "packager": "arduino", From beb3cad43553d23fad66c434580c965f7f902f29 Mon Sep 17 00:00:00 2001 From: Luca Burelli Date: Wed, 12 Nov 2025 14:39:09 +0100 Subject: [PATCH 2/2] README: clarify symlink instructions for Arduino IDE/CLI usage --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 373b6dc8..fdf1be1e 100644 --- a/README.md +++ b/README.md @@ -231,7 +231,14 @@ This can also be performed via the "Burn bootloader" action in the IDE if the co ### Using the Core in Arduino IDE/CLI -After running the `bootstrap.sh` script, you can symlink the core to `$sketchbook/hardware/arduino-git/zephyr`. Once linked, it will appear in the IDE/CLI, and the board's Fully Qualified Board Name (FQBN) will be formatted as `arduino-git:zephyr:name_from_boards_txt`. +After running the `bootstrap.sh` script, you can create a symlink from the +`ArduinoCore-zephyr` folder to `${sketchbook}/hardware/arduino-git/zephyr`, so +that the `boards.txt` file in this repository will be also available as +`${sketchbook}/hardware/arduino-git/zephyr/boards.txt`. + +Once this is done, your development folder will appear in the IDE/CLI package +list as `arduino-git:zephyr`, and the Fully Qualified Board Name (FQBN) to use +will be `arduino-git:zephyr:name_from_boards_txt`. Remember to also install and/or update the officially published core in the IDE Board Manager to get the latest tools and dependencies. [⚙️ Installation](#️-installation).