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

rssi correction #405

Open
wangdan25 opened this issue May 13, 2024 · 2 comments
Open

rssi correction #405

wangdan25 opened this issue May 13, 2024 · 2 comments

Comments

@wangdan25
Copy link

Hi xianjun,
I'm confused about how the RSSI value is obtained, and why is the rssi_half_db_offset 150? If I want to use the 1G band, how should I determine these values?

if (freq_MHz<2412) {
rssi_correction = 153;
} else if (freq_MHz<=2484) {
rssi_correction = 153;
} else if (freq_MHz<5160) {
rssi_correction = 153;
} else if (freq_MHz<=5240) {
rssi_correction = 145;
} else if (freq_MHz<=5320) {
rssi_correction = 145;
} else {
rssi_correction = 145;
}
@chenmo234
Copy link

Hello, sorry to bother you. May I ask you some questions regarding IQ capture in OpenWiFi? Here is my contact information: c2385405729.

@JiaoXianjun
Copy link
Member

Hi xianjun, I'm confused about how the RSSI value is obtained, and why is the rssi_half_db_offset 150? If I want to use the 1G band, how should I determine these values?

if (freq_MHz<2412) {
rssi_correction = 153;
} else if (freq_MHz<=2484) {
rssi_correction = 153;
} else if (freq_MHz<5160) {
rssi_correction = 153;
} else if (freq_MHz<=5240) {
rssi_correction = 145;
} else if (freq_MHz<=5320) {
rssi_correction = 145;
} else {
rssi_correction = 145;
}

This is kind of "manual calibration" values.
If the RSSI in your new band is not accurate, you need to add the new calibration/correction value inot that piece of code.

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

3 participants