From 40a8cedc9da307c00ca7b4bd591ffb69542a9cde Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Thu, 2 Nov 2023 17:06:39 -0500 Subject: [PATCH] get_conf/set_conf now shows parameters for rigctl and rotctl. Using it with rigctld and rotctld sends output to console instead of remote client https://github.com/Hamlib/Hamlib/issues/971 --- tests/dumpcaps.h | 3 +++ tests/dumpcaps_rot.h | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 tests/dumpcaps.h create mode 100644 tests/dumpcaps_rot.h diff --git a/tests/dumpcaps.h b/tests/dumpcaps.h new file mode 100644 index 000000000..6b1562d4c --- /dev/null +++ b/tests/dumpcaps.h @@ -0,0 +1,3 @@ +#include + +int dumpconf_list(RIG *rig, FILE *fout); diff --git a/tests/dumpcaps_rot.h b/tests/dumpcaps_rot.h new file mode 100644 index 000000000..4e00e4181 --- /dev/null +++ b/tests/dumpcaps_rot.h @@ -0,0 +1,3 @@ +#include + +int dumpconf_list(ROT *rot, FILE *fout);