mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 22:48:29 -04:00
a3c26d44e4
this is needed to allow build on MacOS, as its case-insensitive filesystem picks up the NuttX semaphore.h
25 lines
526 B
C
25 lines
526 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 "UARTDriver.h"
|
|
#include "I2CDriver.h"
|
|
#include "SPIDriver.h"
|
|
#include "AnalogIn.h"
|
|
#include "Storage.h"
|
|
#include "Console.h"
|
|
#include "GPIO.h"
|
|
#include "RCInput.h"
|
|
#include "RCOutput.h"
|
|
#include "Semaphores.h"
|
|
#include "Scheduler.h"
|
|
#include "Util.h"
|
|
#include "PrivateMember.h"
|
|
|
|
#endif // __AP_HAL_EMPTY_PRIVATE_H__
|
|
|