lte: RRC header deserialization fix: alpha is not EARFCN

This commit is contained in:
Alexander Krotov
2017-06-19 18:34:48 +03:00
parent 28a0524f72
commit a22b88a5f4

View File

@@ -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;