aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2017-02-01 13:51:03 +0100
committerPhilipp Maier <pmaier@sysmocom.de>2017-02-15 17:52:15 +0100
commit3eff7df766c81b77f55d2446db5a29a2a782e6e3 (patch)
tree75119144318c9400846ef472e2ddf708a44ad9c4
parentb4ebdd61a880731bf4d9c160c39d04608ba8aba9 (diff)
lapd: Reduce N200 (SABM retransmission count)
N200 is set to 300, which turned out to be uncomfortably high, the commit reduces the value to 50
-rw-r--r--src/input/lapd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/lapd.c b/src/input/lapd.c
index 344ef46..3e0f6f7 100644
--- a/src/input/lapd.c
+++ b/src/input/lapd.c
@@ -101,12 +101,12 @@ const struct lapd_profile lapd_profile_abis = {
* periodically scanning through all timeslots to find the timeslot
* where the bsc is transmitting its sabm frames the normal maximum
* retransmission (n200) of 3 is not enough. In order not to miss
- * the bts, n200 has been increased to 300, which is an educated
+ * the bts, n200 has been increased to 50, which is an educated
* guess. */
const struct lapd_profile lapd_profile_abis_ericsson = {
.k = LAPD_SET_K(2,1),
- .n200 = 300,
+ .n200 = 50,
.n201 = 260,
.n202 = 0, /* infinite */
.t200_sec = 0, .t200_usec = 300000,