Increase FT747GX cache timeout to 1500ms as get_freq is taking over 1000ms

pull/1102/head
Mike Black W9MDB 2022-08-19 08:33:31 -05:00
rodzic 179ee66f0d
commit 28b1a9bb95
2 zmienionych plików z 3 dodań i 4 usunięć

Wyświetl plik

@ -303,7 +303,7 @@ const struct rig_caps ft747_caps =
RIG_MODEL(RIG_MODEL_FT747),
.model_name = "FT-747GX",
.mfg_name = "Yaesu",
.version = "20220819.0",
.version = "20220819.1",
.copyright = "LGPL",
.status = RIG_STATUS_STABLE,
.rig_type = RIG_TYPE_MOBILE,

Wyświetl plik

@ -67,10 +67,9 @@
* rig_get_mode() in a row.
*
* The timeout is set to at least the time to transfer the block (790ms)
* plus post write delay, plus some margin, but less than 1 second,
* which may be typical polling period.
* plus post write delay, plus some margin as get_freq was taking > 1000ms
*/
#define FT747_CACHE_TIMEOUT 900
#define FT747_CACHE_TIMEOUT 1500
#endif /* _FT747_H */