From 44e6e17eb5f8885071b51762bc15ddf1e6465a32 Mon Sep 17 00:00:00 2001 From: William Vinnicombe Date: Wed, 20 Nov 2024 15:27:48 +0000 Subject: [PATCH] Rename ignore-set to set-bits --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index 52e3cfa..5975ad4 100644 --- a/main.cpp +++ b/main.cpp @@ -1071,7 +1071,7 @@ struct otp_set_command : public cmd { (option('c', "--copies") & integer("copies").min(1).set(settings.otp.redundancy)) % "Read multiple redundant values" + option('r', "--raw").set(settings.otp.raw) % "Set raw 24 bit values" + option('e', "--ecc").set(settings.otp.ecc) % "Use error correction" + - option('s', "--ignore-set").set(settings.otp.ignore_set) % "Ignore any already-set bits" + + option('s', "--set-bits").set(settings.otp.ignore_set) % "Set bits only" + (option('i', "--include") & value("filename").add_to(settings.otp.extra_files)).min(0).max(1) % "Include extra otp definition" // todo more than 1 ).min(0).doc_non_optional(true) % "Redundancy/Error Correction Overrides" + (