summaryrefslogtreecommitdiffstats
path: root/src/host/trxcon/trx_if.c
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2017-12-04 20:58:22 +0700
committerVadim Yanitskiy <axilirator@gmail.com>2017-12-04 23:59:55 +0700
commit0d9680e88ae4aabe54fea89e21f2a5fc14f6d8d6 (patch)
treeaf533dbcb08c8f91ec4904f03a8fc7f2aceb234c /src/host/trxcon/trx_if.c
parentc5d9507b5ddd04d4ac14dc009b6df20c3098e2cc (diff)
host/trxcon/trx_if.c: get rid of useless commands
The 'SETMAXDLY' command is used on the BTS side to limit maximal Time of Arrival for access bursts. As we don't receive RACH bursts on the MS side, the command is useless. The 'SETRXGAIN' command is used on the BTS side to set initial receive gain value for TRX. On the MS side it's possible to set that parameter via command-line options of TRX. Change-Id: I3e61b4b48193004cdcb241cefabb44c12db93120
Diffstat (limited to 'src/host/trxcon/trx_if.c')
-rw-r--r--src/host/trxcon/trx_if.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/host/trxcon/trx_if.c b/src/host/trxcon/trx_if.c
index 1f5edb28..c9bf6c87 100644
--- a/src/host/trxcon/trx_if.c
+++ b/src/host/trxcon/trx_if.c
@@ -299,16 +299,6 @@ int trx_if_cmd_adjpower(struct trx_instance *trx, int db)
return trx_ctrl_cmd(trx, 0, "ADJPOWER", "%d", db);
}
-int trx_if_cmd_setrxgain(struct trx_instance *trx, int db)
-{
- return trx_ctrl_cmd(trx, 0, "SETRXGAIN", "%d", db);
-}
-
-int trx_if_cmd_setmaxdly(struct trx_instance *trx, int dly)
-{
- return trx_ctrl_cmd(trx, 0, "SETMAXDLY", "%d", dly);
-}
-
/*
* Timeslot Control
*