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
I noticed that the implementation of the determination of the RSSI packet is in discordance with the SX1272 datasheet. Do you agree?
if( _SNR < 0 ) { _RSSIpacket = -NOISE_ABSOLUTE_ZERO + 10.0 * SignalBwLog[_bandwidth] + NOISE_FIGURE + ( double )_SNR; state = 0; } else { _RSSIpacket = readRegister(REG_PKT_RSSI_VALUE); _RSSIpacket = -OFFSET_RSSI + ( double )_RSSIpacket; state = 0; }
The text was updated successfully, but these errors were encountered:
Hi,
Where do you think there is a discordance of this code with the datasheet?
Please give us some feedback to know where to start.
Regard
Sorry, something went wrong.
No branches or pull requests
I noticed that the implementation of the determination of the RSSI packet is in discordance with the SX1272 datasheet. Do you agree?
if( _SNR < 0 ) { _RSSIpacket = -NOISE_ABSOLUTE_ZERO + 10.0 * SignalBwLog[_bandwidth] + NOISE_FIGURE + ( double )_SNR; state = 0; } else { _RSSIpacket = readRegister(REG_PKT_RSSI_VALUE); _RSSIpacket = -OFFSET_RSSI + ( double )_RSSIpacket; state = 0; }
The text was updated successfully, but these errors were encountered: