kopia lustrzana https://github.com/Hamlib/Hamlib
Revert "Refactoring GPIO push-to-talk logic to use libgpiod rather than the d…"
rodzic
c06255d364
commit
efbe365701
|
@ -529,9 +529,6 @@ AS_IF([test x"${cf_with_xml_support}" = "xyes"], [
|
||||||
AC_SUBST([LIBXML2_LIBS])
|
AC_SUBST([LIBXML2_LIBS])
|
||||||
AC_SUBST([LIBXML2_CFLAGS])
|
AC_SUBST([LIBXML2_CFLAGS])
|
||||||
|
|
||||||
# TODO: I don't know how to use autoconf
|
|
||||||
LIBS="$LIBS -lgpiod"
|
|
||||||
|
|
||||||
|
|
||||||
## ----------------- ##
|
## ----------------- ##
|
||||||
## Language bindings ##
|
## Language bindings ##
|
||||||
|
|
|
@ -2340,7 +2340,6 @@ typedef struct hamlib_port {
|
||||||
|
|
||||||
int fd; /*!< File descriptor */
|
int fd; /*!< File descriptor */
|
||||||
void *handle; /*!< handle for USB */
|
void *handle; /*!< handle for USB */
|
||||||
void *gpio; /*!< handle for GPIO */
|
|
||||||
|
|
||||||
int write_delay; /*!< Delay between each byte sent out, in mS */
|
int write_delay; /*!< Delay between each byte sent out, in mS */
|
||||||
int post_write_delay; /*!< Delay between each commands send out, in mS */
|
int post_write_delay; /*!< Delay between each commands send out, in mS */
|
||||||
|
|
140
src/gpio.c
140
src/gpio.c
|
@ -19,91 +19,135 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <string.h>
|
||||||
|
#include <errno.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
|
||||||
#include "gpio.h"
|
#include "gpio.h"
|
||||||
|
|
||||||
#include <errno.h>
|
|
||||||
#include <fcntl.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <sys/stat.h>
|
|
||||||
#include <sys/types.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
#include <gpiod.h>
|
|
||||||
|
|
||||||
#ifndef GPIOD_PATH
|
|
||||||
// This is what's used on the Raspberry Pi 4; I'm not sure about others
|
|
||||||
#define GPIO_CHIP_NAME "gpiochip0"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define GPIO_CHIP_CONSUMER "Hamlib"
|
|
||||||
|
|
||||||
int gpio_open(hamlib_port_t *port, int output, int on_value)
|
int gpio_open(hamlib_port_t *port, int output, int on_value)
|
||||||
{
|
{
|
||||||
struct gpiod_chip *chip;
|
char pathname[HAMLIB_FILPATHLEN * 2];
|
||||||
struct gpiod_line *line;
|
FILE *fexp, *fdir;
|
||||||
|
int fd;
|
||||||
|
char *dir;
|
||||||
|
|
||||||
port->parm.gpio.on_value = on_value;
|
port->parm.gpio.on_value = on_value;
|
||||||
|
|
||||||
chip = gpiod_chip_open_by_name(GPIO_CHIP_NAME);
|
SNPRINTF(pathname, HAMLIB_FILPATHLEN, "/sys/class/gpio/export");
|
||||||
|
fexp = fopen(pathname, "w");
|
||||||
|
|
||||||
if (!chip)
|
if (!fexp)
|
||||||
{
|
{
|
||||||
rig_debug(RIG_DEBUG_ERR, "Failed to open GPIO chip %s: %s\n", GPIO_CHIP_NAME, strerror(errno));
|
rig_debug(RIG_DEBUG_ERR,
|
||||||
|
"Export GPIO%s (using %s): %s\n",
|
||||||
|
port->pathname,
|
||||||
|
pathname,
|
||||||
|
strerror(errno));
|
||||||
return -RIG_EIO;
|
return -RIG_EIO;
|
||||||
}
|
}
|
||||||
|
|
||||||
line = gpiod_chip_get_line(chip, atoi(port->pathname));
|
fprintf(fexp, "%s\n", port->pathname);
|
||||||
if (!line)
|
fclose(fexp);
|
||||||
|
|
||||||
|
SNPRINTF(pathname,
|
||||||
|
sizeof(pathname),
|
||||||
|
"/sys/class/gpio/gpio%s/direction",
|
||||||
|
port->pathname);
|
||||||
|
fdir = fopen(pathname, "w");
|
||||||
|
|
||||||
|
if (!fdir)
|
||||||
{
|
{
|
||||||
rig_debug(RIG_DEBUG_ERR, "Failed to acquire GPIO%s: %s\n", port->pathname, strerror(errno));
|
rig_debug(RIG_DEBUG_ERR,
|
||||||
gpiod_chip_close(chip);
|
"GPIO%s direction (using %s): %s\n",
|
||||||
|
port->pathname,
|
||||||
|
pathname,
|
||||||
|
strerror(errno));
|
||||||
return -RIG_EIO;
|
return -RIG_EIO;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((output && gpiod_line_request_output(line, GPIO_CHIP_CONSUMER, 0) < 0) ||
|
dir = output ? "out" : "in";
|
||||||
(!output && gpiod_line_request_input(line, GPIO_CHIP_CONSUMER) < 0))
|
rig_debug(RIG_DEBUG_VERBOSE, "Setting direction of GPIO%s to %s\n",
|
||||||
|
port->pathname, dir);
|
||||||
|
fprintf(fdir, "%s\n", dir);
|
||||||
|
fclose(fdir);
|
||||||
|
|
||||||
|
SNPRINTF(pathname,
|
||||||
|
sizeof(pathname),
|
||||||
|
"/sys/class/gpio/gpio%s/value",
|
||||||
|
port->pathname);
|
||||||
|
fd = open(pathname, O_RDWR);
|
||||||
|
|
||||||
|
if (fd < 0)
|
||||||
{
|
{
|
||||||
rig_debug(RIG_DEBUG_ERR, "Failed to set GPIO%s to %s mode: %s\n",
|
rig_debug(RIG_DEBUG_ERR,
|
||||||
port->pathname, (output ? "OUTPUT" : "INPUT"), strerror(errno));
|
"GPIO%s opening value file %s: %s\n",
|
||||||
gpiod_line_release(line);
|
port->pathname,
|
||||||
gpiod_chip_close(chip);
|
pathname,
|
||||||
|
strerror(errno));
|
||||||
return -RIG_EIO;
|
return -RIG_EIO;
|
||||||
}
|
}
|
||||||
|
|
||||||
port->gpio = line;
|
port->fd = fd;
|
||||||
|
return fd;
|
||||||
return RIG_OK;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int gpio_close(hamlib_port_t *port)
|
int gpio_close(hamlib_port_t *port)
|
||||||
{
|
{
|
||||||
gpiod_line_close_chip((struct gpiod_line*)port->gpio);
|
int retval;
|
||||||
return RIG_OK;
|
char pathname[HAMLIB_FILPATHLEN * 2];
|
||||||
|
FILE *fexp;
|
||||||
|
|
||||||
|
retval = close(port->fd);
|
||||||
|
|
||||||
|
SNPRINTF(pathname, HAMLIB_FILPATHLEN, "/sys/class/gpio/unexport");
|
||||||
|
fexp = fopen(pathname, "w");
|
||||||
|
|
||||||
|
if (!fexp)
|
||||||
|
{
|
||||||
|
rig_debug(RIG_DEBUG_ERR,
|
||||||
|
"Export GPIO%s (using %s): %s\n",
|
||||||
|
port->pathname,
|
||||||
|
pathname,
|
||||||
|
strerror(errno));
|
||||||
|
return -RIG_EIO;
|
||||||
|
}
|
||||||
|
|
||||||
|
fprintf(fexp, "%s\n", port->pathname);
|
||||||
|
fclose(fexp);
|
||||||
|
return retval;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int gpio_ptt_set(hamlib_port_t *port, ptt_t pttx)
|
int gpio_ptt_set(hamlib_port_t *port, ptt_t pttx)
|
||||||
{
|
{
|
||||||
int result = 0;
|
char *val;
|
||||||
port->parm.gpio.value = pttx != RIG_PTT_OFF;
|
port->parm.gpio.value = pttx != RIG_PTT_OFF;
|
||||||
|
|
||||||
if ((port->parm.gpio.value && port->parm.gpio.on_value) ||
|
if ((port->parm.gpio.value && port->parm.gpio.on_value)
|
||||||
(!port->parm.gpio.value && !port->parm.gpio.on_value))
|
|| (!port->parm.gpio.value && !port->parm.gpio.on_value))
|
||||||
{
|
{
|
||||||
result = gpiod_line_set_value((struct gpiod_line*)port->gpio, 1);
|
val = "1\n";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
result = gpiod_line_set_value((struct gpiod_line*)port->gpio, 0);
|
val = "0\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (result)
|
if (write(port->fd, val, strlen(val)) <= 0)
|
||||||
{
|
{
|
||||||
rig_debug(RIG_DEBUG_ERR, "Failed to set the value of GPIO%s: %s\n", port->pathname, strerror(errno));
|
|
||||||
return -RIG_EIO;
|
return -RIG_EIO;
|
||||||
}
|
}
|
||||||
|
|
||||||
return RIG_OK;
|
return RIG_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int gpio_ptt_get(hamlib_port_t *port, ptt_t *pttx)
|
int gpio_ptt_get(hamlib_port_t *port, ptt_t *pttx)
|
||||||
{
|
{
|
||||||
if (port->parm.gpio.value)
|
if (port->parm.gpio.value)
|
||||||
|
@ -120,15 +164,21 @@ int gpio_ptt_get(hamlib_port_t *port, ptt_t *pttx)
|
||||||
|
|
||||||
int gpio_dcd_get(hamlib_port_t *port, dcd_t *dcdx)
|
int gpio_dcd_get(hamlib_port_t *port, dcd_t *dcdx)
|
||||||
{
|
{
|
||||||
int val = gpiod_line_get_value((struct gpiod_line*)port->gpio);
|
char val;
|
||||||
if (val < 0)
|
int port_value;
|
||||||
|
|
||||||
|
lseek(port->fd, 0, SEEK_SET);
|
||||||
|
|
||||||
|
if (read(port->fd, &val, sizeof(val)) <= 0)
|
||||||
{
|
{
|
||||||
rig_debug(RIG_DEBUG_ERR, "Failed to read the value of GPIO%s: %s\n", port->pathname, strerror(errno));
|
return -RIG_EIO;
|
||||||
}
|
}
|
||||||
|
|
||||||
rig_debug(RIG_DEBUG_VERBOSE, "DCD GPIO pin value: %c\n", val);
|
rig_debug(RIG_DEBUG_VERBOSE, "DCD GPIO pin value: %c\n", val);
|
||||||
|
|
||||||
if (val == port->parm.gpio.on_value)
|
port_value = val - '0';
|
||||||
|
|
||||||
|
if (port_value == port->parm.gpio.on_value)
|
||||||
{
|
{
|
||||||
*dcdx = RIG_DCD_ON;
|
*dcdx = RIG_DCD_ON;
|
||||||
}
|
}
|
||||||
|
|
Ładowanie…
Reference in New Issue