mirror of https://github.com/ArduPilot/ardupilot
23 lines
429 B
C
23 lines
429 B
C
|
|
||
|
#ifndef __AP_HAL_LINUX_RCINPUT_RASPILOT_H__
|
||
|
#define __AP_HAL_LINUX_RCINPUT_RASPILOT_H__
|
||
|
|
||
|
#include "AP_HAL_Linux.h"
|
||
|
#include "RCInput.h"
|
||
|
|
||
|
class Linux::LinuxRCInput_Raspilot : public Linux::LinuxRCInput
|
||
|
{
|
||
|
public:
|
||
|
void init(void*);
|
||
|
|
||
|
private:
|
||
|
uint32_t _last_timer;
|
||
|
|
||
|
AP_HAL::SPIDeviceDriver *_spi;
|
||
|
AP_HAL::Semaphore *_spi_sem;
|
||
|
|
||
|
void _poll_data(void);
|
||
|
};
|
||
|
|
||
|
#endif // __AP_HAL_LINUX_RCINPUT_RASPILOT_H__
|