fixed EARFCN attribute limits for band 21
authorNicola Baldo <nbaldo@cttc.es>
Wed, 03 Jul 2013 16:58:46 +0200
changeset 9889 727fce98f147
parent 9888 ba0cc8987365
child 9892 91a40fb09b58
fixed EARFCN attribute limits for band 21
src/lte/model/lte-enb-net-device.cc
--- a/src/lte/model/lte-enb-net-device.cc	Wed Jul 03 15:46:49 2013 +0200
+++ b/src/lte/model/lte-enb-net-device.cc	Wed Jul 03 16:58:46 2013 +0200
@@ -97,13 +97,13 @@
                    "as per 3GPP 36.101 Section 5.7.3. ",
                    UintegerValue (100),
                    MakeUintegerAccessor (&LteEnbNetDevice::m_dlEarfcn),
-                   MakeUintegerChecker<uint16_t> (0, 6149))
+                   MakeUintegerChecker<uint16_t> (0, 6599))
     .AddAttribute ("UlEarfcn",
                    "Uplink E-UTRA Absolute Radio Frequency Channel Number (EARFCN) "
                    "as per 3GPP 36.101 Section 5.7.3. ",
                    UintegerValue (18100),
                    MakeUintegerAccessor (&LteEnbNetDevice::m_ulEarfcn),
-                   MakeUintegerChecker<uint16_t> (18000, 24149))
+                   MakeUintegerChecker<uint16_t> (18000, 24599))
   ;
   return tid;
 }