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){ 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 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