forked from svpcom/rtl8812au
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from OpenHD/consti-dev
Cleanup, add development install script, fix retry count, finalize openhd channel override
- Loading branch information
Showing
6 changed files
with
50 additions
and
13 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#bin/bash | ||
|
||
# need to run make 2 times for whatever reason to get the .ko | ||
make | ||
make | ||
|
||
sudo rmmod 88XXau_wfb | ||
|
||
sudo insmod 88XXau_wfb.ko |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -121,8 +121,11 @@ static s32 update_txdesc(struct xmit_frame *pxmitframe, u8 *pmem, s32 sz , u8 ba | |
/* injected frame */ | ||
if(pattrib->inject == 0xa5) { | ||
SET_TX_DESC_RETRY_LIMIT_ENABLE_8812(ptxdesc, 1); | ||
//RTW_WARN("pattrib->retry_ctrl %d\n",(int)pattrib->retry_ctrl); | ||
if (pattrib->retry_ctrl == _TRUE) { | ||
SET_TX_DESC_DATA_RETRY_LIMIT_8812(ptxdesc, 6); | ||
// OpenHD: See https://patchwork.kernel.org/project/linux-wireless/patch/[email protected]/ | ||
//SET_TX_DESC_DATA_RETRY_LIMIT_8812(ptxdesc, 6); | ||
SET_TX_DESC_DATA_RETRY_LIMIT_8812(ptxdesc, 32); | ||
} else { | ||
SET_TX_DESC_DATA_RETRY_LIMIT_8812(ptxdesc, 0); | ||
} | ||
|