mode = s:taboption("advanced", ListValue, "hwmode", translate("Band"))
- if hw_modes.n then
+ if hw_modes.ac then
+ if hw_modes.ac then mode:value("11a", "5GHz (802.11n+ac)") end
+
+ htmode = s:taboption("advanced", ListValue, "htmode", translate("VHT mode (802.11ac)"))
+ htmode:value("", translate("disabled"))
+ htmode:value("VHT20", "20MHz")
+ htmode:value("VHT40", "40MHz")
+ htmode:value("VHT80", "80MHz")
+
+ elseif hw_modes.n then
if hw_modes.g then mode:value("11g", "2.4GHz (802.11g+n)") end
if hw_modes.a then mode:value("11a", "5GHz (802.11a+n)") end
if bl.b then bands = bands .. "b" end
if bl.g then bands = bands .. "g" end
if bl.n then bands = bands .. "n" end
+ if bl.ac then bands = bands .. "ac" end
end
local hw = dev.iwinfo.hardware_name
if l.b then m = m .. "b" end
if l.g then m = m .. "g" end
if l.n then m = m .. "n" end
+ if l.ac then m = "ac" end
return "%s 802.11%s Wireless Controller (%s)" %{ t, m, self:name() }
end