We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wifi6连接,同时显示vht和he 按理来说不是应该只显示he吗?是bug吗?
The text was updated successfully, but these errors were encountered:
同时接入有WIFI4 WIFI5 WIFI6设备好像是会这样! iwinfo这样改试试(本来无线省电的话会自动降低连接速率,这样改后不知道有没有后遗症): if (HTSetting.field.MODE >= MODE_HTMIX && HTSetting.field.MODE <= MODE_HTGREENFIELD) { re->is_ht = 1; re->is_he = 0; // re->is_vht = 0; } else if (HTSetting.field.MODE == MODE_VHT) { re->is_vht = 1; re->is_he = 0; re->is_ht = 0; } else if (HTSetting.field.MODE >= MODE_HE) { re->is_he = 1; re->is_vht = 0; re->is_ht = 0; }
if (HTSetting.field.MODE >= MODE_HE) { re->he_gi = HTSetting.field.ShortGI;
// re->he_dcm = HTSetting.field.MCS & 0x10 ? 1 : 0; }
Sorry, something went wrong.
hanwckf
No branches or pull requests
wifi6连接,同时显示vht和he 按理来说不是应该只显示he吗?是bug吗?
The text was updated successfully, but these errors were encountered: