lte: (fixes 2624) inconsistent coding of type and naming (thanks to Robert Ammon)
This commit is contained in:
@@ -175,12 +175,12 @@ LteSpectrumValueHelper::GetChannelBandwidth (uint8_t transmissionBandwidth)
|
||||
|
||||
struct LteSpectrumModelId
|
||||
{
|
||||
LteSpectrumModelId (uint16_t f, uint8_t b);
|
||||
LteSpectrumModelId (uint32_t f, uint8_t b);
|
||||
uint32_t earfcn;
|
||||
uint8_t bandwidth;
|
||||
};
|
||||
|
||||
LteSpectrumModelId::LteSpectrumModelId (uint16_t f, uint8_t b)
|
||||
LteSpectrumModelId::LteSpectrumModelId (uint32_t f, uint8_t b)
|
||||
: earfcn (f),
|
||||
bandwidth (b)
|
||||
{
|
||||
|
||||
@@ -316,7 +316,7 @@ private:
|
||||
void DoStartCellSearch (uint32_t dlEarfcn);
|
||||
void DoSynchronizeWithEnb (uint16_t cellId);
|
||||
void DoSynchronizeWithEnb (uint16_t cellId, uint32_t dlEarfcn);
|
||||
void DoSetDlBandwidth (uint8_t ulBandwidth);
|
||||
void DoSetDlBandwidth (uint8_t dlBandwidth);
|
||||
void DoConfigureUplink (uint32_t ulEarfcn, uint8_t ulBandwidth);
|
||||
void DoConfigureReferenceSignalPower (int8_t referenceSignalPower);
|
||||
void DoSetRnti (uint16_t rnti);
|
||||
|
||||
Reference in New Issue
Block a user