From a23f3761d6bc6571b2e93cbafae95cbebcd45b76 Mon Sep 17 00:00:00 2001 From: Flavio Kubota Date: Tue, 28 Dec 2010 22:22:52 -0200 Subject: [PATCH] Bug 953: WiMAX channel scanning overflow --- src/devices/wimax/bs-link-manager.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/devices/wimax/bs-link-manager.cc b/src/devices/wimax/bs-link-manager.cc index 258a6952c..f5f1a0b64 100644 --- a/src/devices/wimax/bs-link-manager.cc +++ b/src/devices/wimax/bs-link-manager.cc @@ -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); }