mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-04 15:08:28 -04:00
a3c26d44e4
this is needed to allow build on MacOS, as its case-insensitive filesystem picks up the NuttX semaphore.h
32 lines
762 B
C++
32 lines
762 B
C++
|
|
#ifndef __AP_HAL_EMPTY_SPIDRIVER_H__
|
|
#define __AP_HAL_EMPTY_SPIDRIVER_H__
|
|
|
|
#include <AP_HAL_Empty.h>
|
|
#include "Semaphores.h"
|
|
|
|
class Empty::EmptySPIDeviceDriver : public AP_HAL::SPIDeviceDriver {
|
|
public:
|
|
EmptySPIDeviceDriver();
|
|
void init();
|
|
AP_HAL::Semaphore* get_semaphore();
|
|
void transaction(const uint8_t *tx, uint8_t *rx, uint16_t len);
|
|
|
|
void cs_assert();
|
|
void cs_release();
|
|
uint8_t transfer (uint8_t data);
|
|
private:
|
|
EmptySemaphore _semaphore;
|
|
};
|
|
|
|
class Empty::EmptySPIDeviceManager : public AP_HAL::SPIDeviceManager {
|
|
public:
|
|
EmptySPIDeviceManager();
|
|
void init(void *);
|
|
AP_HAL::SPIDeviceDriver* device(enum AP_HAL::SPIDevice);
|
|
private:
|
|
EmptySPIDeviceDriver _device;
|
|
};
|
|
|
|
#endif // __AP_HAL_EMPTY_SPIDRIVER_H__
|