aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Chemeris <Alexander.Chemeris@gmail.com>2019-10-15 14:07:53 +0300
committeripse <Alexander.Chemeris@gmail.com>2019-10-15 12:00:55 +0000
commitaeaba02e024ceb8858ac9a986d7ce5d0506cefb6 (patch)
tree6d80ef2fa2d2b9889f54e2c968d8b88e8ed12b98
parentb7e992703c285fa8ea1f22b970d4aa1f202720eb (diff)
vty: Don't enable random filler bursts automatically with EDGE.
The EGPRS switch in the VTY config enables 8-PSK burst detection on uplink. Enabling it shouldn't turn on filler bursts. Change-Id: I2786c768e038b769a80c8b78fe58cfa09eb322a9
-rw-r--r--CommonLibs/trx_vty.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/CommonLibs/trx_vty.c b/CommonLibs/trx_vty.c
index bac9653..df0114a 100644
--- a/CommonLibs/trx_vty.c
+++ b/CommonLibs/trx_vty.c
@@ -305,7 +305,6 @@ DEFUN(cfg_egprs, cfg_egprs_cmd,
trx->cfg.egprs = false;
} else if (strcmp("enable", argv[0]) == 0) {
trx->cfg.egprs = true;
- trx->cfg.filler = FILLER_EDGE_RAND;
} else {
return CMD_WARNING;
}