mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-12 02:48:28 -04:00
15 lines
218 B
C
15 lines
218 B
C
|
|
||
|
#ifndef __AP_HAL_SPI_DRIVER_H__
|
||
|
#define __AP_HAL_SPI_DRIVER_H__
|
||
|
|
||
|
#include "AP_HAL_Namespace.h"
|
||
|
|
||
|
class AP_HAL::SPIDriver {
|
||
|
public:
|
||
|
SPIDriver() {}
|
||
|
virtual void init() = 0;
|
||
|
};
|
||
|
|
||
|
#endif // __AP_HAL_SPI_DRIVER_H__
|
||
|
|