comparison librftab/rftablewr.c @ 289:329c31f7c797

fc-cal2text changed to emit Tx ramps for each band as a single table
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 18 Nov 2017 02:01:57 +0000
parents 90c475877d34
children 059649902c7f
comparison
equal deleted inserted replaced
288:730cdd32c3b9 289:329c31f7c797
217 int i; 217 int i;
218 u_char *p = bin; 218 u_char *p = bin;
219 219
220 fputs("rf_table tx-ramps\n", outf); 220 fputs("rf_table tx-ramps\n", outf);
221 for (i = 0; i < 16; i++) { 221 for (i = 0; i < 16; i++) {
222 fprintf(outf, "\n# Tx ramp template %d:\n\n"); 222 fprintf(outf, "\n# Tx ramp template %d:\n\n", i);
223 write_tx_ramp(p, outf); 223 write_tx_ramp(p, outf);
224 p += 32; 224 p += 32;
225 } 225 }
226 } 226 }