view cmu200/band.h @ 20:7ac866c3baf6

autocal: set_std_band() function replaced with RFPW_STD_BAND() macro
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 22 May 2017 20:35:42 +0000
parents e2db512abbee
children 3ec82dc1dbda
line wrap: on
line source

/*
 * In this header file we are going to define structures which contain
 * our knowledge about GSM frequency bands we work with.
 */

struct arfcn_range {
	unsigned	min;
	unsigned	max;
	unsigned	ul_khz;
	unsigned	dl_khz;
};

struct band {
	char			*name;
	int			secaddr;
	struct arfcn_range	*arfcn_range;
	struct arfcn_range	*arfcn_range_ext;
};