2015-01-02 04:30:32 -04: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:42 -04:00
|
|
|
#pragma once
|
2015-01-02 04:30:32 -04:00
|
|
|
|
|
|
|
/*
|
2022-08-14 22:31:14 -03:00
|
|
|
AP_OpticalFlow backend class for ArduPilot
|
2015-01-02 04:30:32 -04:00
|
|
|
*/
|
|
|
|
|
2021-12-23 20:05:30 -04:00
|
|
|
#include "AP_OpticalFlow.h"
|
2015-01-02 04:30:32 -04:00
|
|
|
|
2023-05-03 08:02:35 -03:00
|
|
|
#include <AP_HAL/Semaphores.h>
|
|
|
|
|
2015-01-02 04:30:32 -04:00
|
|
|
class OpticalFlow_backend
|
|
|
|
{
|
2022-08-14 22:31:14 -03:00
|
|
|
friend class AP_OpticalFlow;
|
2015-01-02 04:30:32 -04:00
|
|
|
|
|
|
|
public:
|
|
|
|
// constructor
|
2022-08-14 22:31:14 -03:00
|
|
|
OpticalFlow_backend(AP_OpticalFlow &_frontend);
|
2016-11-18 05:56:05 -04:00
|
|
|
virtual ~OpticalFlow_backend(void);
|
2022-08-14 22:31:14 -03:00
|
|
|
|
|
|
|
CLASS_NO_COPY(OpticalFlow_backend);
|
|
|
|
|
2015-01-02 04:30:32 -04:00
|
|
|
// init - initialise sensor
|
2022-08-22 08:20:11 -03:00
|
|
|
virtual void init() {}
|
2015-01-02 04:30:32 -04:00
|
|
|
|
|
|
|
// read latest values from sensor and fill in x,y and totals.
|
|
|
|
virtual void update() = 0;
|
|
|
|
|
2019-03-27 04:18:35 -03:00
|
|
|
// handle optical flow mavlink messages
|
2019-04-30 07:22:49 -03:00
|
|
|
virtual void handle_msg(const mavlink_message_t &msg) {}
|
2019-03-27 04:18:35 -03:00
|
|
|
|
2020-09-01 04:54:50 -03:00
|
|
|
#if HAL_MSP_OPTICALFLOW_ENABLED
|
2020-08-04 17:42:52 -03:00
|
|
|
// handle optical flow msp messages
|
2020-09-07 19:28:22 -03:00
|
|
|
virtual void handle_msp(const MSP::msp_opflow_data_message_t &pkt) {}
|
2020-08-04 17:42:52 -03:00
|
|
|
#endif
|
2020-09-01 04:54:50 -03:00
|
|
|
|
2015-01-02 04:30:32 -04:00
|
|
|
protected:
|
|
|
|
// access to frontend
|
2022-08-14 22:31:14 -03:00
|
|
|
AP_OpticalFlow &frontend;
|
2015-01-02 04:30:32 -04:00
|
|
|
|
|
|
|
// update the frontend
|
2022-08-14 22:31:14 -03:00
|
|
|
void _update_frontend(const struct AP_OpticalFlow::OpticalFlow_state &state);
|
2015-01-02 04:30:32 -04:00
|
|
|
|
|
|
|
// get the flow scaling parameters
|
|
|
|
Vector2f _flowScaler(void) const { return Vector2f(frontend._flowScalerX, frontend._flowScalerY); }
|
2015-04-06 05:04:24 -03:00
|
|
|
|
|
|
|
// get the yaw angle in radians
|
|
|
|
float _yawAngleRad(void) const { return radians(float(frontend._yawAngle_cd) * 0.01f); }
|
2016-11-04 01:09:19 -03:00
|
|
|
|
2016-11-19 17:22:02 -04:00
|
|
|
// apply yaw angle to a vector
|
|
|
|
void _applyYaw(Vector2f &v);
|
2016-11-25 23:21:28 -04:00
|
|
|
|
2017-08-21 23:23:18 -03:00
|
|
|
// get ADDR parameter value
|
|
|
|
uint8_t get_address(void) const { return frontend._address; }
|
2016-11-19 03:18:50 -04:00
|
|
|
|
2016-11-04 01:09:19 -03:00
|
|
|
// semaphore for access to shared frontend data
|
2018-10-11 20:35:04 -03:00
|
|
|
HAL_Semaphore _sem;
|
2015-01-02 04:30:32 -04:00
|
|
|
};
|