Add USER-U USER-L modes to flrig.c for TS480

pull/555/head
Michael Black W9MDB 2021-02-20 00:02:58 -06:00
rodzic 83c75fa8c6
commit 59d09e42a5
2 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -914,6 +914,8 @@ static int flrig_open(RIG *rig)
else if (streq(p, "USB-D1")) { modeMapAdd(&modes, RIG_MODE_PKTUSB, p); }
else if (streq(p, "USB-D2")) { modeMapAdd(&modes, RIG_MODE_PKTUSB, p); }
else if (streq(p, "USB-D3")) { modeMapAdd(&modes, RIG_MODE_PKTUSB, p); }
else if (streq(p, "USER-U")) { modeMapAdd(&modes, RIG_MODE_PKTUSB, p); }
else if (streq(p, "USER-L")) { modeMapAdd(&modes, RIG_MODE_PKTLSB, p); }
else if (streq(p, "W-FM")) { modeMapAdd(&modes, RIG_MODE_WFM, p); }
else if (streq(p, "WFM")) { modeMapAdd(&modes, RIG_MODE_WFM, p); }
else if (streq(p, "UCW")) { modeMapAdd(&modes, RIG_MODE_CW, p); }

Wyświetl plik

@ -28,7 +28,7 @@
#include <sys/time.h>
#endif
#define BACKEND_VER "20210215"
#define BACKEND_VER "20210220"
#define EOM "\r"
#define TRUE 1