Add MSP_SET_ADJUSTMENT_RANGE and MSP_ADJUSTMENT_RANGES commands.
[betaflight.git] / docs / Rssi.md
blobbae33e0b423d3a601611dad1115614545d5e1089
1 # RSSI
3 RSSI is a measurement of signal strength.  RSSI is very handy so you know when you are going out of range or there is interference.
5 Some receivers have RSSI outputs.  3 types are supported.
7 1. RSSI via PPM channel
8 2. RSSI via Parallel PWM channel
9 3. 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 1 then you would set:
17 ```
18 set rssi_channel = 1
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 to indicate between 0% and 100% RSSI.
28 Use inline resistors to lower voltage if required, inline smoothing capacitors may also help.
30 FrSky D4R-II and X8R supported.
32 Enable using the RSSI_ADC feature:
34 ```
35 feature RSSI_ADC
36 ```
38 The feature can not be used when RX_PARALLEL_PWM is enabled.