From dcbd240bb50eafc6b51fec6ae6aca18227747c47 Mon Sep 17 00:00:00 2001 From: Yaro Kasear Date: Tue, 6 May 2025 08:27:24 -0500 Subject: [PATCH] Reduce CHANNEL_LIST to essential channels for improved performance --- listener.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/listener.py b/listener.py index 93d7f2d..8091a42 100755 --- a/listener.py +++ b/listener.py @@ -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):