blob: 862616682cd14e739e66d9b758f7235be43f845f [file] [log] [blame]
Pau Espin Pedrolefac20b2018-02-21 14:59:19 +01001#pragma once
2
3/*
4 * This file contains structures used by both VTY (C, dir CommonLibs) and
5 * osmo-trx (CXX, dir Transceiver52)
6 */
7
8enum FillerType {
9 FILLER_DUMMY,
10 FILLER_ZERO,
11 FILLER_NORM_RAND,
12 FILLER_EDGE_RAND,
13 FILLER_ACCESS_RAND,
14};
15
16enum ReferenceType {
17 REF_INTERNAL,
18 REF_EXTERNAL,
19 REF_GPS,
20};