ardupilot/libraries/AP_RPM/AP_RPM.h

112 lines
3.0 KiB
C
Raw Normal View History

/*
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/>.
*/
#pragma once
#include <AP_Common/AP_Common.h>
#include <AP_HAL/AP_HAL.h>
#include <AP_Param/AP_Param.h>
#include <AP_Math/AP_Math.h>
#include "AP_RPM_Params.h"
// Maximum number of RPM measurement instances available on this platform
#define RPM_MAX_INSTANCES 2
2017-08-25 15:49:28 -03:00
class AP_RPM_Backend;
class AP_RPM
{
friend class AP_RPM_Backend;
2017-08-25 15:49:28 -03:00
public:
AP_RPM();
2017-08-25 15:49:28 -03:00
/* Do not allow copies */
AP_RPM(const AP_RPM &other) = delete;
AP_RPM &operator=(const AP_RPM&) = delete;
// RPM driver types
enum RPM_Type {
RPM_TYPE_NONE = 0,
2019-10-17 03:04:59 -03:00
RPM_TYPE_PWM = 1,
2019-11-11 00:37:44 -04:00
RPM_TYPE_PIN = 2,
RPM_TYPE_EFI = 3,
RPM_TYPE_HNTCH = 4,
RPM_TYPE_ESC_TELEM = 5,
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL
RPM_TYPE_SITL = 10,
#endif
};
// The RPM_State structure is filled in by the backend driver
struct RPM_State {
uint8_t instance; // the instance number of this RPM
float rate_rpm; // measured rate in revs per minute
uint32_t last_reading_ms; // time of last reading
float signal_quality; // synthetic quality metric
};
// parameters for each instance
AP_RPM_Params _params[RPM_MAX_INSTANCES];
static const struct AP_Param::GroupInfo var_info[];
2017-08-25 15:49:28 -03:00
// Return the number of rpm sensor instances
uint8_t num_sensors(void) const {
return num_instances;
}
// detect and initialise any available rpm sensors
void init(void);
// update state of all rpm sensors. Should be called from main loop
void update(void);
/*
return RPM for a sensor. Return -1 if not healthy
*/
bool get_rpm(uint8_t instance, float &rpm_value) const;
/*
return signal quality for a sensor.
*/
float get_signal_quality(uint8_t instance) const {
return state[instance].signal_quality;
}
bool healthy(uint8_t instance) const;
bool enabled(uint8_t instance) const;
2019-02-25 12:48:19 -04:00
static AP_RPM *get_singleton() { return _singleton; }
2021-07-20 01:20:16 -03:00
// check settings are valid
bool arming_checks(size_t buflen, char *buffer) const;
private:
void convert_params(void);
2019-02-25 12:48:19 -04:00
static AP_RPM *_singleton;
RPM_State state[RPM_MAX_INSTANCES];
AP_RPM_Backend *drivers[RPM_MAX_INSTANCES];
uint8_t num_instances;
void detect_instance(uint8_t instance);
};
namespace AP {
AP_RPM *rpm();
};