pull/1458/head
Mike Black W9MDB 2023-12-08 11:42:44 -06:00
rodzic f6eed23494
commit ae69772d2a
1 zmienionych plików z 8 dodań i 0 usunięć

8
NEWS
Wyświetl plik

@ -13,6 +13,14 @@ Version 5.x -- future
* Change FT1000MP Mark V model names to align with FT1000MP
Version 4.6
* rig_caps is no longer constant -- this may break some 3rd party relying on the "const" declaration. Here's an example of how to handle compatiblity.
#ifdef RIGCAPS_NOT_CONST
static int add_to_list(struct rig_caps* rc, void*)
#else
static int add_to_list(const struct rig_caps* rc, void*)
#endif
* IC7610 now has IPP, DPP, and TX_INHIBIT functions set/get
* Hamlib now starts a multicast server that sends out rig information. Does not receive commands yet.
See README.multicast