mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-14 12:48:31 -04:00
79 lines
2.8 KiB
C
79 lines
2.8 KiB
C
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
||
|
/*
|
||
|
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/>.
|
||
|
*/
|
||
|
|
||
|
#ifndef AP_RSSI_H
|
||
|
#define AP_RSSI_H
|
||
|
|
||
|
#include <AP_HAL/AP_HAL.h>
|
||
|
#include <AP_Param/AP_Param.h>
|
||
|
#include <AP_Math/AP_Math.h>
|
||
|
|
||
|
class AP_RSSI
|
||
|
{
|
||
|
public:
|
||
|
enum RssiType {
|
||
|
RSSI_DISABLED = 0x0000,
|
||
|
RSSI_ANALOG_PIN = 0x0001,
|
||
|
RSSI_RC_CHANNEL_VALUE = 0x0002
|
||
|
};
|
||
|
|
||
|
// parameter block
|
||
|
static const struct AP_Param::GroupInfo var_info[];
|
||
|
|
||
|
// 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
|
||
|
|
||
|
// constructor
|
||
|
AP_RSSI();
|
||
|
|
||
|
// destructor
|
||
|
~AP_RSSI(void);
|
||
|
|
||
|
// Initialize the rssi object and prepare it for use
|
||
|
void init();
|
||
|
|
||
|
// 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();
|
||
|
|
||
|
// Read the receiver RSSI value as an 8-bit integer
|
||
|
// 0 represents weakest signal, 255 represents maximum signal.
|
||
|
uint8_t read_receiver_rssi_uint8();
|
||
|
|
||
|
private:
|
||
|
|
||
|
// Analog Inputs
|
||
|
// a pin for reading the receiver RSSI voltage.
|
||
|
AP_HAL::AnalogSource *rssi_analog_source;
|
||
|
|
||
|
// 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();
|
||
|
|
||
|
// Scale and constrain a float rssi value to 0.0 to 1.0 range
|
||
|
float scale_and_constrain_float_rssi(float current_rssi_value, float low_rssi_range, float high_rssi_range);
|
||
|
};
|
||
|
|
||
|
#endif // AP_RSSI_H
|