You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
663 B

/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
#ifndef AP_OpticalFlow_PX4_H
#define AP_OpticalFlow_PX4_H
#include "OpticalFlow.h"
class AP_OpticalFlow_PX4 : public OpticalFlow
{
public:
/// constructor
AP_OpticalFlow_PX4(const AP_AHRS &ahrs) : OpticalFlow(ahrs) {};
// init - initialise the sensor
virtual void init();
// update - read latest values from sensor and fill in x,y and totals.
virtual void update(void);
private:
int _fd; // file descriptor for sensor
uint64_t _last_timestamp; // time of last update (used to avoid processing old reports)
};
#endif