Created
April 19, 2023 10:47
-
-
Save SzymonSzott/a8d85a86f8936af42c15bb8fdc1a79b4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from os import system | |
| import os, glob | |
| path = "./sys/kernel/debug/ieee80211/" | |
| path += os.listdir(path)[0]+"/" # Add single 'phy' directory | |
| path += glob.glob('*wl*',root_dir=path)[0]+"/stations/" # Add 'netdev\:wl*' directory | |
| path += os.listdir(path)[0]+"/rate_scale_table" # Add single MAC directory | |
| filePath_Intel8260 = path | |
| print(filePath_Intel8260) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment