aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/Makefile.am1
-rw-r--r--include/osmo-bts/Makefile.am1
-rw-r--r--include/osmo-bts/logging.h26
3 files changed, 28 insertions, 0 deletions
diff --git a/include/Makefile.am b/include/Makefile.am
new file mode 100644
index 00000000..7585a65f
--- /dev/null
+++ b/include/Makefile.am
@@ -0,0 +1 @@
+SUBDIRS = osmo-bts
diff --git a/include/osmo-bts/Makefile.am b/include/osmo-bts/Makefile.am
new file mode 100644
index 00000000..4b4f2b63
--- /dev/null
+++ b/include/osmo-bts/Makefile.am
@@ -0,0 +1 @@
+noinst_HEADERS = bts.h abis.h rsl.h oml.h support.h rtp.h logging.h
diff --git a/include/osmo-bts/logging.h b/include/osmo-bts/logging.h
new file mode 100644
index 00000000..466d5953
--- /dev/null
+++ b/include/osmo-bts/logging.h
@@ -0,0 +1,26 @@
+#ifndef _LOGGING_H
+#define _LOGGING_H
+
+#define DEBUG
+#include <osmocore/logging.h>
+
+enum {
+ DRSL,
+ DOML,
+ DRLL,
+ DRR,
+ DMM,
+ DCC,
+ DSMS,
+ DMEAS,
+ DPAG,
+ DLAPDM,
+ DL1C,
+ DSAP,
+ DABIS,
+ DRTP,
+};
+
+extern const struct log_info log_info;
+
+#endif /* _LOGGING_H */