2015-08-28 02:59:17 -03:00
|
|
|
/*
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2016-02-17 21:25:47 -04:00
|
|
|
#pragma once
|
2015-08-28 02:59:17 -03:00
|
|
|
|
2023-12-07 22:02:40 -04:00
|
|
|
#include "AP_RSSI_config.h"
|
|
|
|
|
|
|
|
#if AP_RSSI_ENABLED
|
|
|
|
|
2015-08-28 02:59:17 -03:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
|
|
|
#include <AP_Param/AP_Param.h>
|
|
|
|
#include <AP_Math/AP_Math.h>
|
|
|
|
|
|
|
|
class AP_RSSI
|
|
|
|
{
|
|
|
|
public:
|
2019-04-05 20:12:25 -03:00
|
|
|
enum class RssiType {
|
|
|
|
TYPE_DISABLED = 0,
|
|
|
|
ANALOG_PIN = 1,
|
|
|
|
RC_CHANNEL_VALUE = 2,
|
|
|
|
RECEIVER = 3,
|
2020-06-03 23:02:56 -03:00
|
|
|
PWM_PIN = 4,
|
|
|
|
TELEMETRY_RADIO_RSSI = 5,
|
2015-08-28 02:59:17 -03:00
|
|
|
};
|
2015-09-16 03:58:38 -03:00
|
|
|
|
2017-12-12 21:06:14 -04:00
|
|
|
AP_RSSI();
|
2017-08-29 20:47:23 -03:00
|
|
|
|
|
|
|
/* Do not allow copies */
|
2022-09-30 06:50:43 -03:00
|
|
|
CLASS_NO_COPY(AP_RSSI);
|
2015-08-28 02:59:17 -03:00
|
|
|
|
|
|
|
// destructor
|
2017-08-29 20:47:23 -03:00
|
|
|
~AP_RSSI(void);
|
2015-09-16 03:58:38 -03:00
|
|
|
|
2019-02-10 01:04:49 -04:00
|
|
|
static AP_RSSI *get_singleton();
|
2018-05-02 07:16:35 -03:00
|
|
|
|
2015-08-28 02:59:17 -03:00
|
|
|
// Initialize the rssi object and prepare it for use
|
|
|
|
void init();
|
2015-09-16 03:58:38 -03:00
|
|
|
|
2015-09-16 04:24:47 -03:00
|
|
|
// return true if rssi reading is enabled
|
2019-04-05 20:12:25 -03:00
|
|
|
bool enabled() const { return RssiType(rssi_type.get()) != RssiType::TYPE_DISABLED; }
|
2015-09-16 04:24:47 -03:00
|
|
|
|
2015-08-28 02:59:17 -03:00
|
|
|
// Read the receiver RSSI value as a float 0.0f - 1.0f.
|
|
|
|
// 0.0 represents weakest signal, 1.0 represents maximum signal.
|
|
|
|
float read_receiver_rssi();
|
2021-07-13 13:45:08 -03:00
|
|
|
float read_receiver_link_quality();
|
2015-08-28 02:59:17 -03:00
|
|
|
// Read the receiver RSSI value as an 8-bit integer
|
|
|
|
// 0 represents weakest signal, 255 represents maximum signal.
|
|
|
|
uint8_t read_receiver_rssi_uint8();
|
2015-09-16 03:58:38 -03:00
|
|
|
|
2015-09-16 04:23:46 -03:00
|
|
|
// parameter block
|
|
|
|
static const struct AP_Param::GroupInfo var_info[];
|
|
|
|
|
2015-08-28 02:59:17 -03:00
|
|
|
private:
|
2018-05-02 07:16:35 -03:00
|
|
|
|
2019-02-10 01:04:49 -04:00
|
|
|
static AP_RSSI *_singleton;
|
2018-05-02 07:16:35 -03:00
|
|
|
|
2015-09-16 04:23:46 -03:00
|
|
|
// RSSI parameters
|
|
|
|
AP_Int8 rssi_type; // Type of RSSI being used
|
|
|
|
AP_Int8 rssi_analog_pin; // Analog pin RSSI value found on
|
|
|
|
AP_Float rssi_analog_pin_range_low; // Voltage value for weakest rssi signal
|
|
|
|
AP_Float rssi_analog_pin_range_high; // Voltage value for strongest rssi signal
|
|
|
|
AP_Int8 rssi_channel; // allows rssi to be read from given channel as PWM value
|
|
|
|
AP_Int16 rssi_channel_low_pwm_value; // PWM value for weakest rssi signal
|
|
|
|
AP_Int16 rssi_channel_high_pwm_value; // PWM value for strongest rssi signal
|
|
|
|
|
2015-08-28 02:59:17 -03:00
|
|
|
// Analog Inputs
|
|
|
|
// a pin for reading the receiver RSSI voltage.
|
|
|
|
AP_HAL::AnalogSource *rssi_analog_source;
|
2015-09-16 03:58:38 -03:00
|
|
|
|
2018-07-28 01:35:10 -03:00
|
|
|
// PWM input
|
2018-08-12 21:53:03 -03:00
|
|
|
struct PWMState {
|
2020-09-01 02:45:15 -03:00
|
|
|
int8_t last_warn_pin; // last pin used for reading pwm (used to recognise change failure in pin assignment)
|
2018-08-12 21:53:03 -03:00
|
|
|
uint32_t last_reading_ms; // system time of last read (used for health reporting)
|
|
|
|
float rssi_value; // last calculated RSSI value
|
|
|
|
// the following two members are updated by the interrupt handler
|
2020-09-01 02:45:15 -03:00
|
|
|
AP_HAL::PWMSource pwm_source;
|
2018-07-28 01:35:10 -03:00
|
|
|
} pwm_state;
|
|
|
|
|
2015-08-28 02:59:17 -03:00
|
|
|
// read the RSSI value from an analog pin - returns float in range 0.0 to 1.0
|
|
|
|
float read_pin_rssi();
|
|
|
|
|
|
|
|
// read the RSSI value from a PWM value on a RC channel
|
|
|
|
float read_channel_rssi();
|
|
|
|
|
2018-07-28 01:35:10 -03:00
|
|
|
// read the PWM value from a pin
|
|
|
|
float read_pwm_pin_rssi();
|
|
|
|
|
2022-01-16 01:55:21 -04:00
|
|
|
// read the (RC) RSSI value from telemetry radio RSSI (e.g. rfd900x pass-through)
|
2020-06-03 23:02:56 -03:00
|
|
|
float read_telemetry_radio_rssi();
|
|
|
|
|
2018-07-28 01:35:10 -03:00
|
|
|
// Scale and constrain a float rssi value to 0.0 to 1.0 range
|
2015-08-28 02:59:17 -03:00
|
|
|
float scale_and_constrain_float_rssi(float current_rssi_value, float low_rssi_range, float high_rssi_range);
|
|
|
|
};
|
2018-05-02 07:16:35 -03:00
|
|
|
|
|
|
|
namespace AP {
|
|
|
|
AP_RSSI *rssi();
|
|
|
|
};
|
2023-12-07 22:02:40 -04:00
|
|
|
|
|
|
|
#endif // AP_RSSI_ENABLED
|