From a22b88a5f4e101d97a667a6c4333b2d708afc47d Mon Sep 17 00:00:00 2001 From: Alexander Krotov Date: Mon, 19 Jun 2017 18:34:48 +0300 Subject: [PATCH] lte: RRC header deserialization fix: alpha is not EARFCN --- src/lte/model/lte-rrc-header.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lte/model/lte-rrc-header.cc b/src/lte/model/lte-rrc-header.cc index 02cfa8782..8cff3911d 100644 --- a/src/lte/model/lte-rrc-header.cc +++ b/src/lte/model/lte-rrc-header.cc @@ -2687,7 +2687,7 @@ RrcAsn1Header::Print (std::ostream &os) const std::bitset<2> UlPowerControlCommonSCell_r10; bIterator = DeserializeSequence (&UlPowerControlCommonSCell_r10,false,bIterator); - bIterator = DeserializeInteger (&n,0,MAX_EARFCN,bIterator); + bIterator = DeserializeInteger (&n,0,65536,bIterator); rrccsc->ulConfiguration.ulPowerControlCommonSCell.alpha = n; std::bitset<1> prachConfigSCell_r10;