Fix Icom dual watch set command. Make rotator macro name buffer larger, as the macro names are longer than the space allocated.

pull/936/head
Mikael Nousiainen 2022-01-18 19:02:01 +02:00
rodzic d01e939559
commit 5b9feffa78
2 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -6926,6 +6926,7 @@ int icom_set_func(RIG *rig, vfo_t vfo, setting_t func, int status)
{ {
fct_cn = C_SET_VFO; fct_cn = C_SET_VFO;
fct_sc = status ? S_DUAL_ON : S_DUAL_OFF; fct_sc = status ? S_DUAL_ON : S_DUAL_OFF;
fct_len = 0;
} }
break; break;

Wyświetl plik

@ -275,7 +275,7 @@ struct mod_lst
char model_name[32]; /* caps->model_name */ char model_name[32]; /* caps->model_name */
char version[32]; /* caps->version */ char version[32]; /* caps->version */
char status[32]; /* caps->status */ char status[32]; /* caps->status */
char macro_name[32]; /* caps->macro_name */ char macro_name[64]; /* caps->macro_name */
UT_hash_handle hh; /* makes this structure hashable */ UT_hash_handle hh; /* makes this structure hashable */
}; };