From 08cefdc11f8b8224eed0c574772cf16eca7ddc71 Mon Sep 17 00:00:00 2001 From: Andrew Scheller Date: Mon, 27 Jul 2026 14:02:01 +0100 Subject: [PATCH 1/2] Display uf2 combine --offset default-value in hexadecimal --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index d53d5301..e0dc54fd 100644 --- a/main.cpp +++ b/main.cpp @@ -1639,7 +1639,7 @@ struct uf2_combine_command : public cmd { ).force_expand_help(true) % "UF2 Family options" + ( option("--offset").set(settings.uf2.offset_set) % "Offset second UF2 by amount" & - hex("offset").set(settings.uf2.offset) % "offset amount (default to 0)" + hex("offset").set(settings.uf2.offset) % "offset amount (default to 0x0)" ).force_expand_help(true) % "Offset options" + ( option("--partition").set(settings.uf2.partition_set) % "Place second UF2 in partition (first UF2 must contain a partition table)" & From 5fede286863e5b56858d76cfa54a80f9da99129e Mon Sep 17 00:00:00 2001 From: Andrew Scheller Date: Mon, 27 Jul 2026 14:40:23 +0100 Subject: [PATCH 2/2] Also update README.md to match --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d3ec328f..87762c4b 100644 --- a/README.md +++ b/README.md @@ -1067,7 +1067,7 @@ OPTIONS: --offset Offset second UF2 by amount - offset amount (default to 0) + offset amount (default to 0x0) Partition options --partition Place second UF2 in partition (first UF2 must contain a partition table)