2015-08-07 00:37:06 -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:46 -04:00
|
|
|
#pragma once
|
2015-08-07 00:37:06 -03:00
|
|
|
|
|
|
|
#include "AP_RPM.h"
|
|
|
|
#include "RPM_Backend.h"
|
2015-11-19 22:00:41 -04:00
|
|
|
#include <Filter/Filter.h>
|
|
|
|
#include <AP_Math/AP_Math.h>
|
2015-08-07 00:37:06 -03:00
|
|
|
|
|
|
|
class AP_RPM_PX4_PWM : public AP_RPM_Backend
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// constructor
|
|
|
|
AP_RPM_PX4_PWM(AP_RPM &ranger, uint8_t instance, AP_RPM::RPM_State &_state);
|
|
|
|
|
|
|
|
// destructor
|
|
|
|
~AP_RPM_PX4_PWM(void);
|
|
|
|
|
|
|
|
// update state
|
|
|
|
void update(void);
|
|
|
|
|
|
|
|
private:
|
|
|
|
int _fd = -1;
|
2015-11-18 20:00:39 -04:00
|
|
|
int _logfd = -1;
|
2018-07-23 01:06:55 -03:00
|
|
|
uint64_t _last_timestamp;
|
2016-05-14 05:05:13 -03:00
|
|
|
uint32_t _resolution_usec = 1;
|
2015-11-19 22:00:41 -04:00
|
|
|
|
|
|
|
ModeFilterFloat_Size5 signal_quality_filter {3};
|
2015-08-07 00:37:06 -03:00
|
|
|
};
|