Reduce CHANNEL_LIST to essential channels for improved performance

This commit is contained in:
Yaro Kasear 2025-05-06 08:27:24 -05:00
parent 0effd8a28d
commit dcbd240bb5

View file

@ -35,7 +35,7 @@ unlinked_candidates = set()
bssid_channels = {}
vendor_cache = {}
CHANNEL_LIST = [1, 6, 11, 36, 40, 44, 48, 52, 56, 60, 64, 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140, 149, 153, 157, 161, 165] # Channels to hop
CHANNEL_LIST = [1, 6, 11, 36, 40, 48, 52, 64, 153, 161] # Channels to hop
CHANNEL_HOP_INTERVAL = 5 # Seconds per channel
def get_channel_from_freq(freq):