diff options
author | David Bauer <mail@david-bauer.net> | 2020-07-30 22:33:53 +0200 |
---|---|---|
committer | David Bauer <mail@david-bauer.net> | 2020-07-30 22:33:53 +0200 |
commit | ced167d72971e125825941dae22aad1d318c9dd2 (patch) | |
tree | b89d92e7027715900a8983bf04c8b69f38a5e615 | |
parent | e9f7923a1d4b327ef4b9ac25fbe197f2b4ea61d7 (diff) | |
download | upstream-ced167d72971e125825941dae22aad1d318c9dd2.tar.gz upstream-ced167d72971e125825941dae22aad1d318c9dd2.tar.bz2 upstream-ced167d72971e125825941dae22aad1d318c9dd2.zip |
ramips: limit 5GHz channels for RAVPower RP-WD009
When selecting a channel below 100 on the 5GHz radio, the channel will
be detected as busy all the time.
Survey data from wlan1
frequency: 5240 MHz [in use]
channel active time: 165729 ms
channel busy time: 158704 ms
channel transmit time: 0 ms
Channels 100 and above work fine:
Survey data from wlan1
frequency: 5500 MHz
channel active time: 133000 ms
channel busy time: 21090 ms
channel transmit time: 0 ms
Limit the available channels, so users do not have the impression
their device is broken.
Signed-off-by: David Bauer <mail@david-bauer.net>
-rw-r--r-- | target/linux/ramips/dts/mt7628an_ravpower_rp-wd009.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ramips/dts/mt7628an_ravpower_rp-wd009.dts b/target/linux/ramips/dts/mt7628an_ravpower_rp-wd009.dts index 5f556af1d3..f592681eb1 100644 --- a/target/linux/ramips/dts/mt7628an_ravpower_rp-wd009.dts +++ b/target/linux/ramips/dts/mt7628an_ravpower_rp-wd009.dts @@ -120,7 +120,7 @@ wifi@0,0 { reg = <0x0000 0 0 0 0>; mediatek,mtd-eeprom = <&factory 0x8000>; - ieee80211-freq-limit = <5000000 6000000>; + ieee80211-freq-limit = <5470000 6000000>; }; }; |