wifi: (fixes #470) Update default Wi-Fi standard to 802.11ax

This commit is contained in:
Tom Henderson
2022-01-31 10:00:36 -08:00
parent bf78fabecf
commit f50ba3169c
22 changed files with 60 additions and 53 deletions

View File

@@ -93,12 +93,11 @@ channel = ns.wifi.YansWifiChannelHelper.Default()
phy = ns.wifi.YansWifiPhyHelper()
phy.SetChannel(channel.Create())
wifi = ns.wifi.WifiHelper()
wifi.SetRemoteStationManager("ns3::AarfWifiManager")
mac = ns.wifi.WifiMacHelper()
ssid = ns.wifi.Ssid ("ns-3-ssid")
wifi = ns.wifi.WifiHelper()
mac.SetType ("ns3::StaWifiMac", "Ssid", ns.wifi.SsidValue(ssid), "ActiveProbing", ns.core.BooleanValue(False))
staDevices = wifi.Install(phy, mac, wifiStaNodes)