-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path88x2bu.conf
104 lines (104 loc) · 2.55 KB
/
88x2bu.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# /etc/modprobe.d/88x2bu.conf
#
# Purpose: Allow easy access to specific driver options (module parameters).
#
# Edit the following line to change options:
options 88x2bu rtw_drv_log_level=0 rtw_led_ctrl=1 rtw_vht_enable=1 rtw_power_mgnt=1 rtw_switch_usb_mode=2 rtw_beamform_cap=0
#
# After editing is complete, save this file and reboot to activate the changes.
#
# Documentation:
#
# -----
#
# Log level options: ( rtw_drv_log_level )
#
# 0 = NONE (default)
# 1 = ALWAYS
# 2 = ERROR
# 3 = WARNING
# 4 = INFO
# 5 = DEBUG
# 6 = MAX
#
# Note: From the driver directory, you can save a log file that only includes
# RTW log entries by running the following in a terminal:
#
# $ sudo ./save-log.sh
#
# -----
#
# LED control options: ( rtw_led_ctrl )
#
# 0 = Always off
# 1 = Normal blink (default)
# 2 = Always on
#
# -----
#
# VHT enable options: ( rtw_vht_enable )
#
# 0 = Disable
# 1 = Enable (default)
# 2 = Force auto enable (use caution)
#
# Notes:
# - Unless you know what you are doing, don't change the default setting.
# - A non-default setting can degrade performance greatly in some modes.
# - For 5 GHz in AP mode, setting this option to 2 allows 80 MHz channel width.
#
# -----
#
# Power saving options: ( rtw_power_mgnt )
#
# 0 = Disable power saving
# 1 = Power saving on, minPS (default)
# 2 = Power saving on, maxPS
#
# Note: Extensive testing has shown that the default setting works well.
#
# -----
#
# USB mode options: ( rtw_switch_usb_mode )
#
# 0 = No switch
# 1 = Switch from usb 2.0 to usb 3.0
# 2 = Switch from usb 3.0 to usb 2.0 (default)
#
# Notes:
# - When in client (managed) mode, using 1 (USB3) works well.
# - When in master (AP) mode, use 2 (USB2) for 2.4 GHz.
# - When in master (AP) mode, use 1 (USB3) for 5 GHz.
#
# -----
#
# Beamforming options: ( rtw_beamform_cap )
#
# 0 = Disable (default)
# 1 = SU Beamformer
# 2 = SU Beamformee
# 3 = SU Beamformer and SU Beamformee
# 10= SU Beamformee and MU Beamformee
# 11= SU Beamformer and SU Beamformee and MU Beamformee
#
# Notes:
# - MU Beamformer is not supported.
# - The driver default setting is 10 but that is being overridden based
# on test results. Beamforming tests at this location indicate that
# beamforming is only slightly beneficial at medium range distances
# (25-35 ft.) and detrimental at short (< 25 ft.) and long (> 35 ft.)
# distances. Your results may vary. Testing is the only way to know.
#
# -----
#
# To see all options that are available:
#
# $ ls /sys/module/88x2bu/parameters/
#
# -----
#
# To see the values that are in use:
#
# $ grep [[:alnum:]] /sys/module/88x2bu/parameters/*
#
# -----