Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
351 changes: 12 additions & 339 deletions LICENSE

Large diffs are not rendered by default.

1,180 changes: 859 additions & 321 deletions Makefile

Large diffs are not rendered by default.

17 changes: 13 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# rtl8188eus
Wifi driver support for rtl8188eu, rtl8188eus and rtl8188etv chips and working under the new linux kernel (4.17.x).
Wifi driver support for rtl8188eu, rtl8188eus and rtl8188etv chips and working under the new linux kernel (5.1.x).
More information about your wifi device can be found here: https://wikidevi.com.

Compiling & Building
Expand All @@ -12,7 +12,7 @@ with make: KSRC=path_to_kernel_source and KVER=kernel_version. The same goes for

### Download
```
git clone -b master https://github.com/quickreflex/rtl8188eus.git
git clone -b v5.2.2.4 https://github.com/quickreflex/rtl8188eus.git
cd rtl8188eu
```

Expand All @@ -31,10 +31,19 @@ dkms install 8188eu/1.0

Switch modes
---------
### For setting monitor mode
### Supported interface modes
```
* IBSS
* managed
* AP
* monitor
* P2P-client
* P2P-GO
```
### For setting interface modes
```
ifconfig wlan0 down
iw dev wlan0 set type monitor
iw dev wlan0 set type managed
ifconfig wlan0 up
```
### For setting TX power
Expand Down
Loading