ardupilot/libraries/AP_OpticalFlow/AP_OpticalFlow_PX4.h

21 lines
502 B
C
Raw Normal View History

#pragma once
2014-07-11 23:28:34 -03:00
#include "OpticalFlow.h"
class AP_OpticalFlow_PX4 : public OpticalFlow_backend
2014-07-11 23:28:34 -03:00
{
public:
/// constructor
AP_OpticalFlow_PX4(OpticalFlow &_frontend);
2014-07-11 23:28:34 -03:00
// init - initialise the sensor
void init();
2014-07-11 23:28:34 -03:00
// update - read latest values from sensor and fill in x,y and totals.
void update(void);
2014-07-11 23:28:34 -03:00
private:
int _fd; // file descriptor for sensor
uint64_t _last_timestamp; // time of last update (used to avoid processing old reports)
};