Bug 953: WiMAX channel scanning overflow
authorFlavio Kubota <flaviokubota@gmail.com>
Tue, 28 Dec 2010 22:22:52 -0200
changeset 6726 bb11224b1a48
parent 6725 62511407485d
child 6727 e1242c2f97d3
Bug 953: WiMAX channel scanning overflow
src/devices/wimax/bs-link-manager.cc
--- a/src/devices/wimax/bs-link-manager.cc	Thu Dec 23 12:40:48 2010 -0800
+++ b/src/devices/wimax/bs-link-manager.cc	Tue Dec 28 22:22:52 2010 -0200
@@ -321,7 +321,11 @@
 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);
 }