kopia lustrzana https://github.com/Hamlib/Hamlib
Add -S/--separator option to rigctld to allow something other then \n as a field separator
Should work better for node-red parsing https://github.com/Hamlib/Hamlib/issues/1030pull/1042/head
rodzic
85dfb1bed8
commit
921d4d43ef
|
@ -202,6 +202,13 @@ is in decimal notation, unless prefixed by
|
||||||
in which case it is hexadecimal.
|
in which case it is hexadecimal.
|
||||||
.
|
.
|
||||||
.TP
|
.TP
|
||||||
|
.BR \-S ", " \-\-separator = \fIchar\fP
|
||||||
|
Use char as separator instead of line feed
|
||||||
|
.IP
|
||||||
|
The default is \n
|
||||||
|
.IP
|
||||||
|
.
|
||||||
|
.TP
|
||||||
.BR \-T ", " \-\-listen\-addr = \fIIPADDR\fP
|
.BR \-T ", " \-\-listen\-addr = \fIIPADDR\fP
|
||||||
Use
|
Use
|
||||||
.I IPADDR
|
.I IPADDR
|
||||||
|
|
|
@ -1782,6 +1782,7 @@ readline_repeat:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (*resp_sep_ptr != '\n') fprintf(fout, "\n");
|
||||||
|
|
||||||
fflush(fout);
|
fflush(fout);
|
||||||
|
|
||||||
|
|
|
@ -84,7 +84,7 @@
|
||||||
* keep up to date SHORT_OPTIONS, usage()'s output and man page. thanks.
|
* keep up to date SHORT_OPTIONS, usage()'s output and man page. thanks.
|
||||||
* TODO: add an option to read from a file
|
* TODO: add an option to read from a file
|
||||||
*/
|
*/
|
||||||
#define SHORT_OPTIONS "m:r:p:d:P:D:s:c:T:t:C:W:w:x:z:lLuovhVZMA:n:"
|
#define SHORT_OPTIONS "m:r:p:d:P:D:s:S:c:T:t:C:W:w:x:z:lLuovhVZMA:n:"
|
||||||
static struct option long_options[] =
|
static struct option long_options[] =
|
||||||
{
|
{
|
||||||
{"model", 1, 0, 'm'},
|
{"model", 1, 0, 'm'},
|
||||||
|
@ -94,6 +94,7 @@ static struct option long_options[] =
|
||||||
{"ptt-type", 1, 0, 'P'},
|
{"ptt-type", 1, 0, 'P'},
|
||||||
{"dcd-type", 1, 0, 'D'},
|
{"dcd-type", 1, 0, 'D'},
|
||||||
{"serial-speed", 1, 0, 's'},
|
{"serial-speed", 1, 0, 's'},
|
||||||
|
{"separator", 1, 0, 'S'},
|
||||||
{"civaddr", 1, 0, 'c'},
|
{"civaddr", 1, 0, 'c'},
|
||||||
{"listen-addr", 1, 0, 'T'},
|
{"listen-addr", 1, 0, 'T'},
|
||||||
{"port", 1, 0, 't'},
|
{"port", 1, 0, 't'},
|
||||||
|
@ -150,6 +151,7 @@ const char *src_addr = NULL; /* INADDR_ANY */
|
||||||
const char *multicast_addr = "0.0.0.0";
|
const char *multicast_addr = "0.0.0.0";
|
||||||
int multicast_port = 4532;
|
int multicast_port = 4532;
|
||||||
extern char rigctld_password[65];
|
extern char rigctld_password[65];
|
||||||
|
char resp_sep = '\n';
|
||||||
|
|
||||||
#define MAXCONFLEN 1024
|
#define MAXCONFLEN 1024
|
||||||
|
|
||||||
|
@ -460,6 +462,16 @@ int main(int argc, char *argv[])
|
||||||
civaddr = optarg;
|
civaddr = optarg;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case 'S':
|
||||||
|
if (!optarg)
|
||||||
|
{
|
||||||
|
usage(); /* wrong arg count */
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
resp_sep = *optarg;
|
||||||
|
rig_debug(RIG_DEBUG_VERBOSE, "%s: resp_sep=%c\n", __func__, resp_sep);
|
||||||
|
break;
|
||||||
|
|
||||||
case 's':
|
case 's':
|
||||||
if (!optarg)
|
if (!optarg)
|
||||||
{
|
{
|
||||||
|
@ -1135,7 +1147,6 @@ void *handle_socket(void *arg)
|
||||||
char serv[NI_MAXSERV];
|
char serv[NI_MAXSERV];
|
||||||
char send_cmd_term = '\r'; /* send_cmd termination char */
|
char send_cmd_term = '\r'; /* send_cmd termination char */
|
||||||
int ext_resp = 0;
|
int ext_resp = 0;
|
||||||
char resp_sep = '\n';
|
|
||||||
|
|
||||||
fsockin = get_fsockin(handle_data_arg);
|
fsockin = get_fsockin(handle_data_arg);
|
||||||
|
|
||||||
|
@ -1351,6 +1362,7 @@ void usage(void)
|
||||||
" -s, --serial-speed=BAUD set serial speed of the serial port\n"
|
" -s, --serial-speed=BAUD set serial speed of the serial port\n"
|
||||||
" -c, --civaddr=ID set CI-V address, decimal (for Icom rigs only)\n"
|
" -c, --civaddr=ID set CI-V address, decimal (for Icom rigs only)\n"
|
||||||
" -t, --port=NUM set TCP listening port, default %s\n"
|
" -t, --port=NUM set TCP listening port, default %s\n"
|
||||||
|
" -S, --separator=CHAR set char as rigctld response separator, default is \\n\n"
|
||||||
" -T, --listen-addr=IPADDR set listening IP address, default ANY\n"
|
" -T, --listen-addr=IPADDR set listening IP address, default ANY\n"
|
||||||
" -C, --set-conf=PARM=VAL set config parameters\n"
|
" -C, --set-conf=PARM=VAL set config parameters\n"
|
||||||
" -L, --show-conf list all config parameters\n"
|
" -L, --show-conf list all config parameters\n"
|
||||||
|
|
Ładowanie…
Reference in New Issue