1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-13 11:29:58 +03:00

Move chapter up hierarchy

This commit is contained in:
Noah Huetter 2020-02-08 10:39:57 +01:00
parent df626d34a4
commit 9444d0d93b
No known key found for this signature in database
GPG key ID: 362A1C58456DDA0F

View file

@ -24,29 +24,6 @@ set rssi_invert = ON
```
Default is set to "OFF" for normal operation ( 100 = Full signal / 0 = Lost signal).
### RSSI_SCALE setup method
To calculate the rssi offset and scale, check the rc value at full signal (`rssi_fullsig`) and at almost no signal strength (`rssi_nosig`).
Then, calculate the offset and scale values using the following formula:
```
rssi_offset = 1000-(rssi_nosig) / 10
rssi_scale = 100 * 1000 * (rssi_fullsig - rssi_nosig)
```
Examples are:
| RC System | RC value at full strength | RC value at no strength | `rssi_offset` | `rssi_scale` |
|:----------|:--------------------------|:------------------------|:--------------|:-------------|
| Graupner | `1900` | `1100` | `-10` | `125` |
Then set these values via CLI:
```
set rssi_offset = -10
set rssi_scale = 125
```
## RSSI via Parallel PWM channel
Connect the RSSI signal to any PWM input channel then set the RSSI channel as you would for RSSI via PPM
@ -86,3 +63,26 @@ set rssi_invert = ON
FrSky D4R-II and X8R supported.
The feature can not be used when RX_PARALLEL_PWM is enabled.
## RSSI_SCALE setup method
To calculate the rssi offset and scale, check the rc value at full signal (`rssi_fullsig`) and at almost no signal strength (`rssi_nosig`).
Then, calculate the offset and scale values using the following formula:
```
rssi_offset = 1000-(rssi_nosig) / 10
rssi_scale = 100 * 1000 * (rssi_fullsig - rssi_nosig)
```
Examples are:
| RC System | RC value at full strength | RC value at no strength | `rssi_offset` | `rssi_scale` |
|:----------|:--------------------------|:------------------------|:--------------|:-------------|
| Graupner | `1900` | `1100` | `-10` | `125` |
Then set these values via CLI:
```
set rssi_offset = -10
set rssi_scale = 125
```