Skip to content

Commit bdbf4d9

Browse files
authored
[change] Added missing WiFi 5GHz / 802.11ac channels on U-NII-2C and U-NII-3 #233
Closes #233
1 parent 6db272c commit bdbf4d9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

netjsonconfig/channels.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
"""
44

55
channels_2ghz = list(range(0, 14))
6-
channels_5ghz = list(range(36, 68, 4)) + list(range(100, 144, 4))
6+
channels_5ghz = (
7+
list(range(36, 68, 4)) + list(range(100, 148, 4)) + list(range(149, 181, 4))
8+
)
79
channels_2and5 = list(channels_2ghz + channels_5ghz)
810
channels_5ghz.insert(0, 0)

0 commit comments

Comments
 (0)