2018-08-29 11:18:49 -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
|
|
|
|
|
2023-07-06 01:25:14 -03:00
|
|
|
#include "AP_RangeFinder_config.h"
|
2022-03-12 06:37:29 -04:00
|
|
|
|
|
|
|
#if AP_RANGEFINDER_PWM_ENABLED
|
|
|
|
|
2023-07-06 01:25:14 -03:00
|
|
|
#include "AP_RangeFinder.h"
|
|
|
|
#include "AP_RangeFinder_Backend.h"
|
|
|
|
|
2018-08-29 11:18:49 -03:00
|
|
|
class AP_RangeFinder_PWM : public AP_RangeFinder_Backend
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// constructor
|
2019-01-08 23:08:08 -04:00
|
|
|
AP_RangeFinder_PWM(RangeFinder::RangeFinder_State &_state,
|
2018-07-04 11:22:17 -03:00
|
|
|
AP_RangeFinder_Params &_params,
|
2019-01-08 23:08:08 -04:00
|
|
|
float &_estimated_terrain_height);
|
2018-08-29 11:18:49 -03:00
|
|
|
|
|
|
|
// destructor
|
|
|
|
~AP_RangeFinder_PWM(void) {};
|
|
|
|
|
|
|
|
// static detection function
|
|
|
|
static bool detect();
|
|
|
|
|
|
|
|
// update state
|
2018-11-07 07:01:51 -04:00
|
|
|
void update(void) override;
|
2018-08-29 11:18:49 -03:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
2021-10-18 02:45:33 -03:00
|
|
|
bool get_reading(float &reading_m);
|
2018-08-29 11:18:49 -03:00
|
|
|
|
|
|
|
MAV_DISTANCE_SENSOR _get_mav_distance_sensor_type() const override {
|
|
|
|
return MAV_DISTANCE_SENSOR_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2020-09-01 02:25:44 -03:00
|
|
|
bool check_pin();
|
2019-01-08 23:08:08 -04:00
|
|
|
void check_stop_pin();
|
2020-09-01 02:25:44 -03:00
|
|
|
bool check_pins();
|
2019-01-08 23:08:08 -04:00
|
|
|
uint8_t last_stop_pin = -1;
|
|
|
|
|
2020-09-01 02:25:44 -03:00
|
|
|
AP_HAL::PWMSource pwm_source;
|
|
|
|
|
2019-01-08 23:08:08 -04:00
|
|
|
float &estimated_terrain_height;
|
|
|
|
|
|
|
|
// return true if we are beyond the power saving range
|
|
|
|
bool out_of_range(void) const;
|
|
|
|
bool was_out_of_range = -1; // this odd initialisation ensures we transition to new state
|
2018-08-29 11:18:49 -03:00
|
|
|
|
|
|
|
};
|
2022-03-12 06:37:29 -04:00
|
|
|
|
|
|
|
#endif // AP_RANGEFINDER_PWM_ENABLED
|