mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-09 01:13:57 -04:00
AP_RSSI: clarify PIN_LOW/HIGH parameter description
This commit is contained in:
parent
b7609cdf95
commit
08ef942907
@ -47,8 +47,8 @@ const AP_Param::GroupInfo AP_RSSI::var_info[] = {
|
|||||||
AP_GROUPINFO("ANA_PIN", 1, AP_RSSI, rssi_analog_pin, BOARD_RSSI_ANA_PIN),
|
AP_GROUPINFO("ANA_PIN", 1, AP_RSSI, rssi_analog_pin, BOARD_RSSI_ANA_PIN),
|
||||||
|
|
||||||
// @Param: PIN_LOW
|
// @Param: PIN_LOW
|
||||||
// @DisplayName: Receiver RSSI voltage low
|
// @DisplayName: RSSI pin's lowest voltage
|
||||||
// @Description: This is the voltage value that the radio receiver will put on the RSSI_ANA_PIN when the signal strength is the weakest. Since some radio receivers put out inverted values from what you might otherwise expect, this isn't necessarily a lower value than RSSI_PIN_HIGH.
|
// @Description: RSSI pin's voltage received on the RSSI_ANA_PIN when the signal strength is the weakest. Some radio receivers put out inverted values so this value may be higher than RSSI_PIN_HIGH
|
||||||
// @Units: V
|
// @Units: V
|
||||||
// @Increment: 0.01
|
// @Increment: 0.01
|
||||||
// @Range: 0 5.0
|
// @Range: 0 5.0
|
||||||
@ -56,8 +56,8 @@ const AP_Param::GroupInfo AP_RSSI::var_info[] = {
|
|||||||
AP_GROUPINFO("PIN_LOW", 2, AP_RSSI, rssi_analog_pin_range_low, 0.0f),
|
AP_GROUPINFO("PIN_LOW", 2, AP_RSSI, rssi_analog_pin_range_low, 0.0f),
|
||||||
|
|
||||||
// @Param: PIN_HIGH
|
// @Param: PIN_HIGH
|
||||||
// @DisplayName: Receiver RSSI voltage high
|
// @DisplayName: RSSI pin's highest voltage
|
||||||
// @Description: This is the voltage value that the radio receiver will put on the RSSI_ANA_PIN when the signal strength is the strongest. Since some radio receivers put out inverted values from what you might otherwise expect, this isn't necessarily a higher value than RSSI_PIN_LOW.
|
// @Description: RSSI pin's voltage received on the RSSI_ANA_PIN when the signal strength is the strongest. Some radio receivers put out inverted values so this value may be lower than RSSI_PIN_LOW
|
||||||
// @Units: V
|
// @Units: V
|
||||||
// @Increment: 0.01
|
// @Increment: 0.01
|
||||||
// @Range: 0 5.0
|
// @Range: 0 5.0
|
||||||
@ -67,7 +67,7 @@ const AP_Param::GroupInfo AP_RSSI::var_info[] = {
|
|||||||
// @Param: CHANNEL
|
// @Param: CHANNEL
|
||||||
// @DisplayName: Receiver RSSI channel number
|
// @DisplayName: Receiver RSSI channel number
|
||||||
// @Description: The channel number where RSSI will be output by the radio receiver (5 and above).
|
// @Description: The channel number where RSSI will be output by the radio receiver (5 and above).
|
||||||
// @Units:
|
// @Range: 0 16
|
||||||
// @User: Standard
|
// @User: Standard
|
||||||
AP_GROUPINFO("CHANNEL", 4, AP_RSSI, rssi_channel, 0),
|
AP_GROUPINFO("CHANNEL", 4, AP_RSSI, rssi_channel, 0),
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user