Porównaj commity

...

3 Commity

Autor SHA1 Wiadomość Data
Mike Black W9MDB bddd7e1a7d Fix github build for using libgpsd 2024-04-11 11:27:11 -05:00
Mike Black W9MDB 35b0bb086b Fix fortify warning in misc.c 2024-04-11 09:06:21 -05:00
Mike Black W9MDB 0ba199448b Make TS890S behave like TS990S for mode on VFOB 2024-04-09 17:14:48 -05:00
6 zmienionych plików z 9 dodań i 4 usunięć

Wyświetl plik

@ -16,6 +16,7 @@ jobs:
- name: bootstrap
run: |
sudo apt install libusb-1.0-0-dev
sudo apt install libgpiod-dev
sudo apt install grep
./bootstrap
- name: README Debug

Wyświetl plik

@ -16,6 +16,7 @@ jobs:
- name: bootstrap
run: |
sudo apt install libusb-1.0-0-dev
sudo apt install libgpiod-dev
./bootstrap
- name: configure
run: ./configure --without-cxx-binding

Wyświetl plik

@ -65,6 +65,7 @@ jobs:
- run: |
sudo apt install libusb-1.0-0-dev
sudo apt install libgpiod-dev
./bootstrap
./configure
make

Wyświetl plik

@ -2442,7 +2442,7 @@ int kenwood_set_mode(RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t width)
rig_debug(RIG_DEBUG_VERBOSE, "%s: kmode=%d, cmode=%c, datamode=%c\n", __func__,
kmode, c, data_mode);
if (RIG_IS_TS990S)
if (RIG_IS_TS990S || RIG_IS_TS890S)
{
/* The TS990s has targetable read mode but can only set the mode
of the current VFO :( So we need to toggle the operating VFO
@ -2711,7 +2711,7 @@ int kenwood_get_mode(RIG *rig, vfo_t vfo, rmode_t *mode, pbwidth_t *width)
RETURNFUNC2(RIG_OK);
}
if (RIG_IS_TS990S)
if (RIG_IS_TS990S || RIG_IS_TS890S)
{
char c;
@ -2725,8 +2725,10 @@ int kenwood_get_mode(RIG *rig, vfo_t vfo, rmode_t *mode, pbwidth_t *width)
switch (vfo)
{
case RIG_VFO_A:
case RIG_VFO_MAIN: c = '0'; break;
case RIG_VFO_B:
case RIG_VFO_SUB: c = '1'; break;
default:

Wyświetl plik

@ -28,7 +28,7 @@
#include "token.h"
#include "idx_builtin.h"
#define BACKEND_VER "20240224"
#define BACKEND_VER "20240405"
#define EOM_KEN ';'
#define EOM_TH '\r'

Wyświetl plik

@ -3103,7 +3103,7 @@ int rig_test_2038(RIG *rig)
if (s == NULL) { failed = 1; }
rig_debug(RIG_DEBUG_VERBOSE, "%s: time_t 2038 test = 0x%08lx:%s", __func__, x,
else rig_debug(RIG_DEBUG_VERBOSE, "%s: time_t 2038 test = 0x%08lx:%s", __func__, x,
s);
#endif