STM32F3DISCOVERY - Updating L3GD20 alignment defaults. (MJ666)
[betaflight.git] / docs / Rssi.md
blobd10002d459c7b495ece89f599022c1a22ef84047
1 # RSSI
3 RSSI is a measurement of signal strength and is very handy so you know when your aircraft isw going out of range or if it is suffering RF interference.
5 Some receivers have RSSI outputs.  3 types are supported.
7 1. RSSI via PPM channel
8 1. RSSI via Parallel PWM channel
9 1. RSSI via ADC with PPM RC that has an RSSI output - aka RSSI ADC
11 ## RSSI via PPM
13 Configure your receiver to output RSSI on a spare channel, then select the channel used via the CLI.
15 e.g. if you used channel 9 then you would set:
17 ```
18 set rssi_channel = 9
19 ```
21 ## RSSI via Parallel PWM channel
23 Connect the RSSI signal to any PWM input channel then set the RSSI channel as you would for RSSI via PPM
25 ## RSSI ADC
27 Connect the RSSI signal to the RC2/CH2 input. The signal must be between 0v and 3.3v.
28 Use inline resistors to lower voltage if required; inline smoothing capacitors may also help.
29 A simple PPM->RSSI conditioner can easily be made. See the  PPM-RSSI conditioning.pdf  for details.
31 Under CLI :
32 - enable using the RSSI_ADC feature  :  `feature RSSI_ADC`
33 - set the RSSI_SCALE parameter (between 1 and 255) to adjust RSSI level according to your configuration.
36 FrSky D4R-II and X8R supported.
38 The feature can not be used when RX_PARALLEL_PWM is enabled.