Files
osmocom-analog/src/cnetz/sysinfo.h
Andreas Eversberg e2a9c2c6a5 Automatic FSK polarity selection on TX side
This is done by simulating two cells with different polarities.
On first message from mobile station, the cell with the correct
polarity is used, the other is disabled.

On RX side the polarity is not selected, since FSK decoder detects
polarity for every frame.
2016-05-13 09:37:01 +02:00

25 lines
638 B
C

typedef struct system_information {
int flip_polarity; /* use negative polarity for FSK transmission */
uint8_t fuz_nat; /* national network ID */
uint8_t fuz_fuvst; /* id of switching center */
uint8_t fuz_rest; /* rest of base station id */
uint8_t mittel_umschalten;
uint8_t grenz_umschalten;
uint8_t mittel_ausloesen;
uint8_t grenz_ausloesen;
uint8_t sperre;
uint8_t genauigkeit;
uint8_t entfernung;
uint8_t grenz_einbuchen;
uint8_t fufst_prio; /* prio of base station */
uint8_t nachbar_prio;
uint8_t bewertung;
uint8_t reduzierung;
} cnetz_si;
extern cnetz_si si[];
void init_sysinfo(void);