mirror of https://github.com/ArduPilot/ardupilot
25 lines
530 B
C
25 lines
530 B
C
|
|
#ifndef __AP_HAL_EMPTY_PRIVATE_H__
|
|
#define __AP_HAL_EMPTY_PRIVATE_H__
|
|
|
|
/* Umbrella header for all private headers of the AP_HAL_Empty module.
|
|
* Only import this header from inside AP_HAL_Empty
|
|
*/
|
|
|
|
#include "AnalogIn.h"
|
|
#include "GPIO.h"
|
|
#include "I2CDriver.h"
|
|
#include "OpticalFlow.h"
|
|
#include "PrivateMember.h"
|
|
#include "RCInput.h"
|
|
#include "RCOutput.h"
|
|
#include "Scheduler.h"
|
|
#include "Semaphores.h"
|
|
#include "SPIDriver.h"
|
|
#include "Storage.h"
|
|
#include "UARTDriver.h"
|
|
#include "Util.h"
|
|
|
|
#endif // __AP_HAL_EMPTY_PRIVATE_H__
|
|
|