Lines Matching +full:tx +full:- +full:output +full:- +full:config
8 #include <config.h>
21 #undef write /* ports/winnt/include/config.h: #define write _write */
38 * Frames begin with a two-octet preamble PR-PR followyd by the
39 * transceiver address RE, controller address TX, control code CN, zero
41 * Since the bus is bidirectional, every octet output is echoed on
43 * format, but with the RE and TX fields interchanged. The CN field is
48 * +------+------+------+------+------+--//--+------+
49 * | PR | PR | RE | TX | CN | DA | FI |
50 * +------+------+------+------+------+--//--+------+
64 * icom_freq(fd, ident, freq) - load radio frequency
68 * -1 (error)
78 u_char cmd[] = {PAD, PR, PR, 0, TX, V_SFREQ, 0, 0, 0, 0, FI, in icom_freq()
90 if (rc == -1) { in icom_freq()
92 return -1; in icom_freq()
104 * doublefreq(freq, y, len) - double to ICOM frequency with padding
121 x[i] = *y-- & 0x0f; in doublefreq()
122 x[i] = x[i] | ((*y-- & 0x0f) << 4); in doublefreq()
131 * icom_init() - open and initialize serial interface
134 * is, character-at-a-time, no stripping, checking or monkeying with the
136 * character or a 0.5-s timeout.
151 return -1; in icom_init()
158 return -1; in icom_init()
161 ttyb.c_oflag = 0; /* output modes */ in icom_init()
173 return -1; in icom_init()