summaryrefslogtreecommitdiffstats
path: root/src/host/trxcon/logging.h
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2017-06-09 01:10:05 +0700
committerVadim Yanitskiy <axilirator@gmail.com>2017-11-19 17:35:07 +0700
commit9b1d398685e70e3bc9ed2fa1a07209a24e2b31b6 (patch)
tree810e5ca0f54da3a3e49f70b0176edd9b0fd8b9f1 /src/host/trxcon/logging.h
parent90a0d3c78dbebc9722629c31dd8fcdf19c148cb4 (diff)
host/trxcon/scheduler: add basic clock counter
The core of scheduler is a simple clock counter, which relays on system time for now. One was a bit simplified and migrated from OsmoBTS. Due to system time is not an ideal clock source, the counter should be periodically corrected by clock indications from BTS. Change-Id: I27d85bd3e2c8bca3f876f73517027b9fe43c9825
Diffstat (limited to 'src/host/trxcon/logging.h')
-rw-r--r--src/host/trxcon/logging.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/host/trxcon/logging.h b/src/host/trxcon/logging.h
index 4d7cea06..52afd4ba 100644
--- a/src/host/trxcon/logging.h
+++ b/src/host/trxcon/logging.h
@@ -2,12 +2,13 @@
#include <osmocom/core/logging.h>
-#define DEBUG_DEFAULT "DAPP:DL1C:DTRX"
+#define DEBUG_DEFAULT "DAPP:DL1C:DTRX:DSCH"
enum {
DAPP,
DL1C,
DTRX,
+ DSCH,
};
int trx_log_init(const char *category_mask);