luci-mod-network: wireless.js cell_density support 4630/head
authorNick Lowe <nick.lowe@gmail.com>
Tue, 1 Dec 2020 16:01:53 +0000 (16:01 +0000)
committerNick Lowe <nick.lowe@gmail.com>
Tue, 1 Dec 2020 16:01:53 +0000 (16:01 +0000)
Add support for the cell_density option added to OpenWRT via commit:
81ff23fc91dbbedc374e58afdb4b0b13146c0f15

This configures data rates based on the coverage cell density.
Normal configures basic rates to 6, 12, 24 Mbps if legacy 802.11b rates
are not used else to 5.5, 11 Mbps.
High configures basic rates to 12, 24 Mbps if legacy 802.11b rates are
not used else to the 11 Mbps rate.
Very High configures 24 Mbps as the basic rate. Supported rates lower
than the minimum basic rate are not offered.

Signed-off-by: Nick Lowe <nick.lowe@gmail.com>
modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js

index 01a12c5728f4738f07d8e182d399e465aa18378a..c03b559cb380266f1b6fe8a556dcd5eb8dd0ab25 100644 (file)
@@ -888,6 +888,12 @@ return view.extend({
 
                                        o = ss.taboption('advanced', CBIWifiCountryValue, 'country', _('Country Code'));
                                        o.wifiNetwork = radioNet;
+                                       o = ss.taboption('advanced', form.ListValue, 'cell_density', _('Coverage cell density'), _('Configures data rates based on the coverage cell density. Normal configures basic rates to 6, 12, 24 Mbps if legacy 802.11b rates are not used else to 5.5, 11 Mbps. High configures basic rates to 12, 24 Mbps if legacy 802.11b rates are not used else to the 11 Mbps rate. Very High configures 24 Mbps as the basic rate. Supported rates lower than the minimum basic rate are not offered.'));
+                                       o.value('0', _('Disabled'));
+                                       o.value('1', _('Normal'));
+                                       o.value('2', _('High'));
+                                       o.value('3', _('Very High'));
 
                                        o = ss.taboption('advanced', form.Flag, 'legacy_rates', _('Allow legacy 802.11b rates'));
                                        o.default = o.enabled;