From aeaba02e024ceb8858ac9a986d7ce5d0506cefb6 Mon Sep 17 00:00:00 2001 From: Alexander Chemeris Date: Tue, 15 Oct 2019 14:07:53 +0300 Subject: [PATCH] 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 --- CommonLibs/trx_vty.c | 1 - 1 file changed, 1 deletion(-) diff --git a/CommonLibs/trx_vty.c b/CommonLibs/trx_vty.c index bac9653d..df0114ab 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; }