Fix default filter_width in icom.c

pull/1551/head
Mike Black W9MDB 2024-05-04 22:57:25 -05:00
rodzic 9bcb4c4771
commit 42c900cb8a
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -2699,7 +2699,7 @@ static int icom_get_mode_without_data(RIG *rig, vfo_t vfo, rmode_t *mode,
* The DSP filter width can be read only for the selected VFO, so use cached width for other VFOs.
*/
pbwidth_t filter_width;
pbwidth_t filter_width = 1;
if (vfo == rig->state.current_vfo)
{

Wyświetl plik

@ -35,7 +35,7 @@
#include <sys/time.h>
#endif
#define BACKEND_VER "20240422"
#define BACKEND_VER "20240504"
#define ICOM_IS_ID31 rig_is_model(rig, RIG_MODEL_ID31)
#define ICOM_IS_ID51 rig_is_model(rig, RIG_MODEL_ID51)