view cmu200/band.h @ 109:5a7c174acd32

txlevels: rf3166-ideal and rf3166-fcdev3b profiles
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 13 Feb 2018 01:11:41 +0000
parents 3ec82dc1dbda
children
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;
	unsigned		ul_cable_loss;
	unsigned		dl_cable_loss;
};