AP_HAL_Linux: SPIDevice: move implementation to outside

As we add methods, it's becoming too complex to be implemented together
with the declaration.
This commit is contained in:
Lucas De Marchi 2016-07-26 16:00:33 -03:00
parent 590539f674
commit ea0595c7ac

View File

@ -136,14 +136,26 @@ const uint8_t SPIDeviceManager::_n_device_desc = LINUX_SPI_DEVICE_NUM_DEVICES;
/* Private struct to maintain for each bus */
class SPIBus {
public:
~SPIBus()
~SPIBus();
int open(uint16_t bus_, uint16_t kernel_cs_);
Semaphore sem;
int fd = -1;
uint16_t bus;
uint16_t kernel_cs;
uint8_t ref;
};
SPIBus::~SPIBus()
{
if (fd >= 0) {
::close(fd);
}
}
int open(uint16_t bus_, uint16_t kernel_cs_)
int SPIBus::open(uint16_t bus_, uint16_t kernel_cs_)
{
char path[sizeof("/dev/spidevXXXXX.XXXXX")];
@ -164,12 +176,6 @@ public:
return fd;
}
Semaphore sem;
int fd = -1;
uint16_t bus;
uint16_t kernel_cs;
uint8_t ref;
};
SPIDevice::SPIDevice(SPIBus &bus, SPIDesc &device_desc)
: _bus(bus)