mirror of
https://codeberg.org/mclemens/ubitxv6.git
synced 2025-07-26 12:14:56 -04:00
Fix inter-element timing
This commit is contained in:
parent
d440be6c66
commit
bc5c39357f
@ -167,7 +167,7 @@ void cwKeyer(void){
|
|||||||
case KEYED:
|
case KEYED:
|
||||||
if (millis() > ktimer) { // are we at end of key down ?
|
if (millis() > ktimer) { // are we at end of key down ?
|
||||||
cwKeyUp();
|
cwKeyUp();
|
||||||
ktimer = millis() + (globalSettings.cwDitDurationMs / 10); // inter-element time
|
ktimer = millis() + globalSettings.cwDitDurationMs; // inter-element time
|
||||||
keyerState = INTER_ELEMENT; // next state
|
keyerState = INTER_ELEMENT; // next state
|
||||||
}
|
}
|
||||||
else if(KeyerMode_e::KEYER_IAMBIC_B == globalSettings.keyerMode){
|
else if(KeyerMode_e::KEYER_IAMBIC_B == globalSettings.keyerMode){
|
||||||
|
Loading…
x
Reference in New Issue
Block a user