From 13fa83d4408a69bd2323eafaf3460bf29ef5e129 Mon Sep 17 00:00:00 2001 From: Reed Nightingale Date: Tue, 28 Jan 2020 20:54:02 -0800 Subject: [PATCH 1/3] Update reported version --- version.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.cpp b/version.cpp index bd2cde7..59e9fe4 100644 --- a/version.cpp +++ b/version.cpp @@ -1,4 +1,4 @@ #include "version.h" -const char VERSION_STRING_PRIVATE [] PROGMEM = "R1.1.1"; +const char VERSION_STRING_PRIVATE [] PROGMEM = "R1.1.2"; const char* const VERSION_STRING = VERSION_STRING_PRIVATE; \ No newline at end of file From d440be6c66f49d28ed546e43281590af741af59b Mon Sep 17 00:00:00 2001 From: Reed Nightingale Date: Wed, 29 Jan 2020 21:44:46 -0800 Subject: [PATCH 2/3] Rename INO file, so that it matches the repo name, and thus doesn't cause issues when checked out initially with default folder name --- ubitx_v6.3.1_code.ino => ubitxv6.ino | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename ubitx_v6.3.1_code.ino => ubitxv6.ino (100%) diff --git a/ubitx_v6.3.1_code.ino b/ubitxv6.ino similarity index 100% rename from ubitx_v6.3.1_code.ino rename to ubitxv6.ino From bc5c39357f44a0f5e52857d350bc5639cbb9f433 Mon Sep 17 00:00:00 2001 From: Reed Nightingale Date: Thu, 30 Jan 2020 20:23:17 -0800 Subject: [PATCH 3/3] Fix inter-element timing --- keyer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keyer.cpp b/keyer.cpp index d138013..121477f 100644 --- a/keyer.cpp +++ b/keyer.cpp @@ -167,7 +167,7 @@ void cwKeyer(void){ case KEYED: if (millis() > ktimer) { // are we at end of key down ? cwKeyUp(); - ktimer = millis() + (globalSettings.cwDitDurationMs / 10); // inter-element time + ktimer = millis() + globalSettings.cwDitDurationMs; // inter-element time keyerState = INTER_ELEMENT; // next state } else if(KeyerMode_e::KEYER_IAMBIC_B == globalSettings.keyerMode){