2017-04-02 00:57:59 -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/>.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "AP_RPM.h"
|
2018-03-26 03:19:13 -03:00
|
|
|
|
2017-04-02 00:57:59 -03:00
|
|
|
#include "RPM_Backend.h"
|
2022-07-15 08:53:41 -03:00
|
|
|
|
|
|
|
#if AP_RPM_PIN_ENABLED
|
|
|
|
|
2017-04-02 00:57:59 -03:00
|
|
|
#include <Filter/Filter.h>
|
|
|
|
#include <AP_Math/AP_Math.h>
|
|
|
|
|
|
|
|
class AP_RPM_Pin : public AP_RPM_Backend
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// constructor
|
|
|
|
AP_RPM_Pin(AP_RPM &ranger, uint8_t instance, AP_RPM::RPM_State &_state);
|
|
|
|
|
|
|
|
// update state
|
2018-11-07 08:13:21 -04:00
|
|
|
void update(void) override;
|
2017-04-02 00:57:59 -03:00
|
|
|
|
|
|
|
private:
|
2018-07-04 02:38:36 -03:00
|
|
|
|
2017-04-02 00:57:59 -03:00
|
|
|
ModeFilterFloat_Size5 signal_quality_filter {3};
|
2022-04-19 05:14:36 -03:00
|
|
|
int8_t last_pin = -1; // last pin number checked vs PIN parameter
|
|
|
|
bool interrupt_attached; // true if an interrupt has been attached to last_pin
|
2017-04-02 00:57:59 -03:00
|
|
|
struct IrqState {
|
|
|
|
uint32_t last_pulse_us;
|
|
|
|
uint32_t dt_sum;
|
|
|
|
uint32_t dt_count;
|
|
|
|
};
|
|
|
|
static struct IrqState irq_state[RPM_MAX_INSTANCES];
|
2018-07-04 02:38:36 -03:00
|
|
|
|
|
|
|
void irq_handler(uint8_t pin,
|
|
|
|
bool pin_state,
|
|
|
|
uint32_t timestamp);
|
|
|
|
|
2017-04-02 00:57:59 -03:00
|
|
|
};
|
2022-07-15 08:53:41 -03:00
|
|
|
|
|
|
|
#endif // AP_RPM_PIN_ENABLED
|