Update rigctl.1

Update simft897.c
Hamlib-4.5
Mike Black W9MDB 2022-10-21 22:59:49 -05:00
rodzic e3ce4a35a4
commit 8c274456d4
2 zmienionych plików z 12 dodań i 4 usunięć

Wyświetl plik

@ -947,13 +947,18 @@ radio backend.
Perform a
.RI \(aq "Scan Fct" \(aq
on a
.RI \(aq "Scan Channel" \(aq.
.RI \(aq "Scan Option" \(aq.
.IP
Scan Function is a token: \(oqSTOP\(cq, \(oqMEM\(cq, \(oqSLCT\(cq,
\(oqPRIO\(cq, \(oqPROG\(cq, \(oqDELTA\(cq, \(oqVFO\(cq, \(oqPLT\(cq.
.IP
.\" FIXME: What is a scan channel value?
Scan Channel is an integer (maybe?).
Scan Option is an integer.
.IP
Scan Option for Yaesu rigs 0=STOP, 1=UP, 2=DOWN.
.IP
Scan Option for Icom rigs is a channel number to program with G otherwise not used.
.IP
Scan Option for Kenwood rigs is not used.
.IP
.BR Note :
Passing a \(oq?\(cq (query) as the first argument instead of a Scan Fct token

Wyświetl plik

@ -144,7 +144,10 @@ again:
case 0x03:
printf("READ RX STATUS\n");
buf[0] = buf[1] = buf[2] = buf[3] = 0;
buf[0] = 0x01;
buf[1] = 0x40;
buf[2] = 0x74;
buf[3] = 0x00;
buf[4] = 0x03; n = write(fd, buf, 5);
break;