fix for something or other.

This commit is contained in:
Rob French 2022-03-17 17:28:58 -05:00
parent 4765ab5a22
commit 89af919e42
1 changed files with 7 additions and 0 deletions

View File

@ -1465,8 +1465,15 @@ void checkAutoSaveFreqMode()
void loop(){
if (isCWAutoMode == 0){ //when CW AutoKey Mode, disable this process
#ifdef USE_ALTKEYER
// when using the alternate keyer, don't check the PTT if we're in CW mode, because
// the PTT is also a straight key
if (!txCAT && (cwMode == 0))
checkPTT();
#else
if (!txCAT)
checkPTT();
#endif
checkButton();
}
else