comparison cmu200/band.h @ 2:e2db512abbee

fc-cmu200d: band and ARFCN tables implemented
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 21 May 2017 06:37:56 +0000
parents
children 3ec82dc1dbda
comparison
equal deleted inserted replaced
1:698602bbd120 2:e2db512abbee
1 /*
2 * In this header file we are going to define structures which contain
3 * our knowledge about GSM frequency bands we work with.
4 */
5
6 struct arfcn_range {
7 unsigned min;
8 unsigned max;
9 unsigned ul_khz;
10 unsigned dl_khz;
11 };
12
13 struct band {
14 char *name;
15 int secaddr;
16 struct arfcn_range *arfcn_range;
17 struct arfcn_range *arfcn_range_ext;
18 };