FIXED: Source code inconsistency after major code change.

pull/1390/head
Frank Goenninger 2023-09-28 18:36:30 +02:00
rodzic cd9077fbc2
commit 76a836af5b
2 zmienionych plików z 2 dodań i 24 usunięć

Wyświetl plik

@ -294,20 +294,6 @@ static adat_cmd_def_t adat_cmd_get_callsign =
}
};
// -- ADAT SPECIAL: SET CALLSIGN --
static adat_cmd_def_t adat_cmd_set_callsign =
{
ADAT_CMD_DEF_ADAT_SPECIAL,
ADAT_CMD_KIND_WITHOUT_RESULT,
adat_cmd_fn_set_callsign,
1,
{
ADAT_CMD_DEF_STRING_SET_CALLSIGN
}
};
// -- HAMLIB DEFINED COMMANDS --
// -- GET FREQ --
@ -531,7 +517,7 @@ static adat_cmd_list_t adat_cmd_list_open_adat =
&adat_cmd_get_gui_fw_version,
&adat_cmd_get_hw_version,
&adat_cmd_get_options,
&adat_cmd_set_callsign
&adat_cmd_get_callsign
}
};
@ -2593,11 +2579,7 @@ int adat_cleanup(RIG *pRig)
}
else
{
if (pRig->state.priv != NULL)
{
adat_del_priv_data((adat_priv_data_t **) & (pRig->state.priv));
pRig->state.priv = NULL;
}
pRig->state.priv = NULL;
}
rig_debug(RIG_DEBUG_TRACE,

Wyświetl plik

@ -547,9 +547,6 @@ int adat_cmd_recover_from_error(RIG *, int);
int adat_transaction(RIG *, adat_cmd_list_ptr);
adat_priv_data_ptr adat_new_priv_data(RIG *);
void adat_del_priv_data(adat_priv_data_t **);
// Command implementation
int adat_cmd_fn_get_serial_nr(RIG *);
@ -559,7 +556,6 @@ int adat_cmd_fn_get_gui_fw_version(RIG *);
int adat_cmd_fn_get_id_code(RIG *);
int adat_cmd_fn_get_options(RIG *);
int adat_cmd_fn_set_callsign(RIG *);
int adat_cmd_fn_get_callsign(RIG *);
int adat_cmd_fn_set_freq(RIG *);