view autocal/rxband.h @ 87:34a1e06a8587

checking in cableconf and txlevels config files
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 17 Jul 2017 00:03:27 +0000
parents 2588f9eed11a
children
line wrap: on
line source

/* internal structures for fc-rfcal-rxband */

struct rx_calchan_range {
	unsigned	lower_bound;
	unsigned	upper_bound;
	unsigned	test_arfcn;
};

struct rxcal_band {
	char		*name;
	unsigned	rfpw_std_band;
	unsigned	main_arfcn;
	struct rx_calchan_range *calchan_ranges;
	unsigned	num_calchan_ranges;
};