From c70bc834cc40ea0084193edcdedd1a05b9442122 Mon Sep 17 00:00:00 2001 From: c vw Date: Thu, 4 Nov 2021 10:11:54 +0100 Subject: [PATCH] Rewritten CW event handling in process_edge, and removed debouncing from CW lines. --- gpio.c | 64 ++++++++++++++++++---------------------------------------- 1 file changed, 20 insertions(+), 44 deletions(-) diff --git a/gpio.c b/gpio.c index 3dcc827..a770078 100644 --- a/gpio.c +++ b/gpio.c @@ -507,50 +507,30 @@ static void process_edge(int offset,int value) { found=FALSE; // // handle CW events as quickly as possible HERE. - // This also implies to store the bouncing time locally. // - if (offset == CW_KEYER) { - static unsigned int cw_key_debounce=0; - found=true; - t=millis(); - if (t < cw_key_debounce) { + switch (offset) { + case CW_KEYER: + if (value == PRESSED && cw_keyer_internal == 0) { + cw_key_down=960000; // max. 20 sec to protect hardware + cw_key_up=0; + cw_key_hit=1; + } else { + cw_key_down=0; + cw_key_up=0; + } return; - } - cw_key_debounce=t+10; // use 10 msec for CW contacts - if (value == PRESSED && cw_keyer_internal == 0) { - cw_key_down=960000; // max. 20 sec to protect hardware - cw_key_up=0; - cw_key_hit=1; - } else { - cw_key_down=0; - cw_key_up=0; - } - } - if (found) return; #ifdef LOCALCW - if(ENABLE_CW_BUTTONS) { - static unsigned int cw_left_debounce=0; - static unsigned int cw_right_debounce=0; - if(offset==CWL_BUTTON) { - found=TRUE; - t=millis(); - if (t < cw_left_debounce) { - return; - } - cw_left_debounce=t+10; // use 10 msec for CW contacts + case CW_LEFT: keyer_event(1, CW_ACTIVE_LOW ? (value==PRESSED) : (value==RELEASED)); - } else if(offset==CWR_BUTTON) { - found=TRUE; - t=millis(); - if (t < cw_right_debounce) { - return; - } - cw_right_debounce=t+10; // use 10 msec for CW contacts + return; + case CW_RIGHT: keyer_event(0, CW_ACTIVE_LOW ? (value==PRESSED) : (value==RELEASED)); - } - } - if(found) return; + return; + default: + break; // do nothing, continue #endif + } + found=FALSE; // check encoders for(i=0;i