Bug 953: WiMAX channel scanning overflow

This commit is contained in:
Flavio Kubota
2010-12-28 22:22:52 -02:00
parent 6908fb3840
commit a23f3761d6

View File

@@ -321,7 +321,11 @@ BSLinkManager::DeallocateCids (Cid cid)
uint64_t
BSLinkManager::SelectDlChannel (void)
{
// temporarily set to 1 for quick scanning
// Values according to WirelessMAN-OFDM RF profile for 10 MHz channelization
// Section 12.3.3.1 from IEEE 802.16-2004 standard
// profR10_3 :
// channels: 5000 + n ⋅ 5 MHz, ∀n ∈ { 147, 149, 151, 153, 155, 157, 159, 161, 163, 165, 167 }
// temporarily set to 1 for quick scanning. To be standard compliant, use a value in the list above
return m_bs->GetChannel (1);
}