]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
let it compile with old libgipod
authorc vw <dl1ycf@darc.de>
Fri, 23 Jul 2021 13:18:48 +0000 (15:18 +0200)
committerc vw <dl1ycf@darc.de>
Fri, 23 Jul 2021 13:18:48 +0000 (15:18 +0200)
gpio.c

diff --git a/gpio.c b/gpio.c
index a61244ea72867d92c7f2a2e749a6e380d5ff216a..277bed0510ebb6948ca2e337850e6563a1d24352 100644 (file)
--- a/gpio.c
+++ b/gpio.c
@@ -1088,6 +1088,7 @@ void gpio_cw_sidetone_set(int level) {
   int rc;
   if (ENABLE_GPIO_SIDETONE) {
 #ifdef GPIO
+#ifdef OLD_GPIOD
     //
     // changed from gpiod_ctxless_set_value_ext to gpiod_ctxless_set_value,
     // so it works with older gpiod libs
@@ -1095,6 +1096,11 @@ void gpio_cw_sidetone_set(int level) {
     if((rc=gpiod_ctxless_set_value(gpio_device,SIDETONE_GPIO,level,FALSE,consumer,NULL,NULL))<0) {
       g_print("%s: err=%d\n",__FUNCTION__,rc);
     }
+#else
+    if((rc=gpiod_ctxless_set_value_ext(gpio_device,SIDETONE_GPIO,level,FALSE,consumer,NULL,NULL,0))<0) {
+      g_print("%s: err=%d\n",__FUNCTION__,rc);
+    }
+#endif
 #endif
   }
 }