mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-trx.git
synced 2025-11-02 13:13:17 +00:00
This patch is a preparation for next patches, which add full VTY cfg support. Change-Id: I3d5b0576aa96869756f1629a40306c0043b6304b
21 lines
315 B
C
21 lines
315 B
C
#pragma once
|
|
|
|
/*
|
|
* This file contains structures used by both VTY (C, dir CommonLibs) and
|
|
* osmo-trx (CXX, dir Transceiver52)
|
|
*/
|
|
|
|
enum FillerType {
|
|
FILLER_DUMMY,
|
|
FILLER_ZERO,
|
|
FILLER_NORM_RAND,
|
|
FILLER_EDGE_RAND,
|
|
FILLER_ACCESS_RAND,
|
|
};
|
|
|
|
enum ReferenceType {
|
|
REF_INTERNAL,
|
|
REF_EXTERNAL,
|
|
REF_GPS,
|
|
};
|