Update Rssi.md formula for rssi_offset

Fixing the formula  rssi_offset = (1000-rssi_nosig) / 10  which is now in line with the example.
This commit is contained in:
MarcBoettinger 2020-07-17 09:38:39 +02:00 committed by GitHub
parent f8f01c9fa3
commit 8b27f0fd63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ To calculate the rssi offset and scale, check the rc value at full signal (`rssi
Then, calculate the offset and scale values using the following formula:
```
rssi_offset = 1000-(rssi_nosig) / 10
rssi_offset = (1000-rssi_nosig) / 10
rssi_scale = 100 * 1000 / (rssi_fullsig - rssi_nosig)
```