Home
last modified time | relevance | path

Searched refs:ctag_num (Results 1 – 4 of 4) sorted by relevance

/dports/comms/direwolf/direwolf-1.6/src/
H A Dfx25_init.c262 struct rs *fx25_get_rs (int ctag_num) in fx25_get_rs() argument
264 assert (ctag_num >= CTAG_MIN && ctag_num <= CTAG_MAX); in fx25_get_rs()
265 assert (tags[ctag_num].itab >= 0 && tags[ctag_num].itab < NTAB); in fx25_get_rs()
272 assert (ctag_num >= CTAG_MIN && ctag_num <= CTAG_MAX); in fx25_get_ctag_value()
273 return (tags[ctag_num].value); in fx25_get_ctag_value()
278 assert (ctag_num >= CTAG_MIN && ctag_num <= CTAG_MAX); in fx25_get_k_data_radio()
282 int fx25_get_k_data_rs (int ctag_num) in fx25_get_k_data_rs() argument
284 assert (ctag_num >= CTAG_MIN && ctag_num <= CTAG_MAX); in fx25_get_k_data_rs()
285 return (tags[ctag_num].k_data_rs); in fx25_get_k_data_rs()
288 int fx25_get_nroots (int ctag_num) in fx25_get_nroots() argument
[all …]
H A Dfx25_send.c149 int ctag_num = fx25_pick_mode (fx_mode, dlen); in fx25_send_frame() local
151 if (ctag_num < CTAG_MIN || ctag_num > CTAG_MAX) { in fx25_send_frame()
157 uint64_t ctag_value = fx25_get_ctag_value (ctag_num); in fx25_send_frame()
162 int k_data_radio = fx25_get_k_data_radio (ctag_num); in fx25_send_frame()
163 int k_data_rs = fx25_get_k_data_rs (ctag_num); in fx25_send_frame()
173 struct rs *rs = fx25_get_rs (ctag_num); in fx25_send_frame()
182 …w_printf ("FX.25[%d]: transmit %d data bytes, ctag number 0x%02x\n", chan, k_data_radio, ctag_num); in fx25_send_frame()
194 snprintf (fname, sizeof(fname), "fx%02x.dat", ctag_num); in fx25_send_frame()
H A Dfx25.h74 struct rs *fx25_get_rs (int ctag_num);
75 uint64_t fx25_get_ctag_value (int ctag_num);
76 int fx25_get_k_data_radio (int ctag_num);
77 int fx25_get_k_data_rs (int ctag_num);
78 int fx25_get_nroots (int ctag_num);
H A Dfx25_rec.c52 int ctag_num; // Correlation tag number, CTAG_MIN to CTAG_MAX if approx. match found. member
177 F->ctag_num = c; in fx25_rec_bit()
178 F->k_data_radio = fx25_get_k_data_radio (F->ctag_num); in fx25_rec_bit()
179 F->nroots = fx25_get_nroots (F->ctag_num); in fx25_rec_bit()
180 F->coffs = fx25_get_k_data_rs (F->ctag_num); in fx25_rec_bit()
223 F->ctag_num = -1; in fx25_rec_bit()
318 struct rs *rs = fx25_get_rs(F->ctag_num); in process_rs_block()