From 63d47be74868cd669bd35ef478363ff6639a07de Mon Sep 17 00:00:00 2001 From: DL1YCF Date: Thu, 20 May 2021 17:20:31 +0200 Subject: [PATCH] Fix for setting CW side tone on GPIO line --- gpio.c | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/gpio.c b/gpio.c index 2ef989f..c658c06 100644 --- a/gpio.c +++ b/gpio.c @@ -518,7 +518,7 @@ static void process_edge(int offset,int value) { keyer_event(1, CW_ACTIVE_LOW ? (value==PRESSED) : value); found=TRUE; } else if(offset==CWR_BUTTON) { - keyer_event(1, CW_ACTIVE_LOW ? (value==PRESSED) : value); + keyer_event(2, CW_ACTIVE_LOW ? (value==PRESSED) : value); found=TRUE; } } @@ -1084,21 +1084,13 @@ void gpio_cw_sidetone_set(int level) { int rc; #ifdef GPIO if (ENABLE_GPIO_SIDETONE) { - if((rc=gpiod_ctxless_set_value_ext(gpio_device,SIDETONE_GPIO,level,FALSE,consumer,NULL,NULL,0))<0) { + if((rc=gpiod_ctxless_set_value(gpio_device,SIDETONE_GPIO,level,FALSE,consumer,NULL,NULL))<0) { g_print("%s: err=%d\n",__FUNCTION__,rc); } } #endif } -int gpio_left_cw_key() { - return 0; -} - -int gpio_right_cw_key() { - return 0; -} - int gpio_cw_sidetone_enabled() { return ENABLE_GPIO_SIDETONE; } -- 2.45.2