Revert "export correct function for wsjtx"

This reverts commit 4312b26bc9.
pull/1596/head
Mike Black W9MDB 2024-08-09 17:13:59 -05:00
rodzic 8975643aaa
commit f3bd0bdf0a
4 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -58,7 +58,7 @@ int commradio_transaction(RIG *rig, const unsigned char *cmd, int cmd_len,
{ {
goto transaction_quit; goto transaction_quit;
} }
ret = unpack_frame(data, rx, ret); ret = commradio_unpack_frame(data, rx, ret);
if (ret < RIG_OK) if (ret < RIG_OK)
{ {
goto transaction_quit; goto transaction_quit;

Wyświetl plik

@ -20,7 +20,7 @@ struct rig_caps ctx10_caps =
RIG_MODEL(RIG_MODEL_CTX10), RIG_MODEL(RIG_MODEL_CTX10),
.model_name = "CTX-10", .model_name = "CTX-10",
.mfg_name = "Commradio", .mfg_name = "Commradio",
.version = "20240802.0", .version = "20240809.0",
.copyright = "LGPL", .copyright = "LGPL",
.status = RIG_STATUS_STABLE, .status = RIG_STATUS_STABLE,
.rig_type = RIG_TYPE_TRANSCEIVER, .rig_type = RIG_TYPE_TRANSCEIVER,

Wyświetl plik

@ -104,7 +104,7 @@ int frame_message(unsigned char frame[], const unsigned char *data,
return frame_len; return frame_len;
} }
int unpack_frame(unsigned char msg[], const unsigned char *frame, int commradio_unpack_frame(unsigned char msg[], const unsigned char *frame,
const int frame_len) const int frame_len)
{ {
if (frame_len < 5) if (frame_len < 5)

Wyświetl plik

@ -16,7 +16,7 @@
int frame_message(unsigned char frame[], const unsigned char *data, int frame_message(unsigned char frame[], const unsigned char *data,
int data_len); int data_len);
int unpack_frame(unsigned char msg[], const unsigned char *frame, int frame_len); int commradio_unpack_frame(unsigned char msg[], const unsigned char *frame, int frame_len);
#endif /* _FRAME_H */ #endif /* _FRAME_H */