Skip to content
New issue

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

无线连接信息显示问题 #287

Open
ghost opened this issue May 7, 2024 · 1 comment
Open

无线连接信息显示问题 #287

ghost opened this issue May 7, 2024 · 1 comment
Assignees

Comments

@ghost
Copy link

ghost commented May 7, 2024

wifi6连接,同时显示vht和he 按理来说不是应该只显示he吗?是bug吗?
Screenshot_20240507-115006_Via

@benboguan
Copy link
Contributor

benboguan commented Jun 5, 2024

同时接入有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;
}

@hanwckf hanwckf self-assigned this Sep 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants