From 67643140cfb9a7d59a641f5c4ad96da22fd780aa Mon Sep 17 00:00:00 2001 From: Brendan <2bndy5@gmail.com> Date: Mon, 13 Jul 2026 03:34:09 -0700 Subject: [PATCH 1/2] chore(dev): use the new arduino CI action - ref: nRF24/.github#31 --- .github/workflows/build_arduino.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_arduino.yml b/.github/workflows/build_arduino.yml index 1f24deb3..b1709a31 100644 --- a/.github/workflows/build_arduino.yml +++ b/.github/workflows/build_arduino.yml @@ -23,7 +23,7 @@ concurrency: jobs: build: - uses: nRF24/.github/.github/workflows/build_arduino.yaml@main + uses: nRF24/.github/.github/workflows/build_arduino.yaml@rust-compile-sketches with: sketch-paths: | - examples/GettingStarted From 2728c7df49aee82021f8cc162b7a170bd7956df6 Mon Sep 17 00:00:00 2001 From: Brendan <2bndy5@gmail.com> Date: Tue, 14 Jul 2026 14:32:59 -0700 Subject: [PATCH 2/2] cause increase in size delta --- examples/GettingStarted/GettingStarted.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/GettingStarted/GettingStarted.ino b/examples/GettingStarted/GettingStarted.ino index 82734575..f6f903cf 100644 --- a/examples/GettingStarted/GettingStarted.ino +++ b/examples/GettingStarted/GettingStarted.ino @@ -86,9 +86,9 @@ void setup() { } // For debugging info - // printf_begin(); // needed only once for printing details + printf_begin(); // needed only once for printing details // radio.printDetails(); // (smaller) function that prints raw register values - // radio.printPrettyDetails(); // (larger) function that prints human readable data + radio.printPrettyDetails(); // (larger) function that prints human readable data } // setup