View | Details | Raw Unified | Return to bug 2754
Collapse All | Expand All

(-)a/src/lte/model/lte-enb-rrc.cc (-1 / +1 lines)
 Lines 226-232    Link Here 
226
    m_srb1->m_rlc = rlc;
226
    m_srb1->m_rlc = rlc;
227
    m_srb1->m_pdcp = pdcp;
227
    m_srb1->m_pdcp = pdcp;
228
    m_srb1->m_srbIdentity = 1;
228
    m_srb1->m_srbIdentity = 1;
229
    m_srb1->m_logicalChannelConfig.priority = 0;
229
    m_srb1->m_logicalChannelConfig.priority = 1;
230
    m_srb1->m_logicalChannelConfig.prioritizedBitRateKbps = 100;
230
    m_srb1->m_logicalChannelConfig.prioritizedBitRateKbps = 100;
231
    m_srb1->m_logicalChannelConfig.bucketSizeDurationMs = 100;
231
    m_srb1->m_logicalChannelConfig.bucketSizeDurationMs = 100;
232
    m_srb1->m_logicalChannelConfig.logicalChannelGroup = 0;
232
    m_srb1->m_logicalChannelConfig.logicalChannelGroup = 0;
(-)a/src/lte/model/lte-rrc-sap.h (-1 / +1 lines)
 Lines 59-65    Link Here 
59
  virtual ~LteRrcSap ();
59
  virtual ~LteRrcSap ();
60
60
61
  /// Constraint values
61
  /// Constraint values
62
  static const uint8_t MaxReportCells = 255;
62
  static const uint8_t MaxReportCells = 8; // Same as MAX_CELL_REPORT in lte-rrc-header.cc
63
63
64
  // Information Elements
64
  // Information Elements
65
  /// PlmnIdentityInfo structure
65
  /// PlmnIdentityInfo structure
(-)a/src/lte/model/lte-ue-rrc.cc (-1 / +1 lines)
 Lines 478-484    Link Here 
478
478
479
  // CCCH (LCID 0) is pre-configured, here is the hardcoded configuration:
479
  // CCCH (LCID 0) is pre-configured, here is the hardcoded configuration:
480
  LteUeCmacSapProvider::LogicalChannelConfig lcConfig;
480
  LteUeCmacSapProvider::LogicalChannelConfig lcConfig;
481
  lcConfig.priority = 0; // highest priority
481
  lcConfig.priority = 1; // highest priority
482
  lcConfig.prioritizedBitRateKbps = 65535; // maximum
482
  lcConfig.prioritizedBitRateKbps = 65535; // maximum
483
  lcConfig.bucketSizeDurationMs = 65535; // maximum
483
  lcConfig.bucketSizeDurationMs = 65535; // maximum
484
  lcConfig.logicalChannelGroup = 0; // all SRBs mapped to LCG 0
484
  lcConfig.logicalChannelGroup = 0; // all SRBs mapped to LCG 0

Return to bug 2754