aboutsummaryrefslogtreecommitdiffstats
path: root/CommonLibs/config_defs.h
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2018-02-21 14:59:19 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2018-03-05 17:16:05 +0100
commitefac20b6bb856eccd4995c4513318375f292a1d1 (patch)
treef2768696d64eca95390a151936d2461de68ba16b /CommonLibs/config_defs.h
parent0bbd8922ea637dbfb013ebf2e79b754f03929cb0 (diff)
Move enums required by VTY to a separate header
This patch is a preparation for next patches, which add full VTY cfg support. Change-Id: I3d5b0576aa96869756f1629a40306c0043b6304b
Diffstat (limited to 'CommonLibs/config_defs.h')
-rw-r--r--CommonLibs/config_defs.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/CommonLibs/config_defs.h b/CommonLibs/config_defs.h
new file mode 100644
index 0000000..8626166
--- /dev/null
+++ b/CommonLibs/config_defs.h
@@ -0,0 +1,20 @@
+#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,
+};