ardupilot/libraries/AP_HAL/AP_HAL.h
Andrew Tridgell a3c26d44e4 AP_HAL: rename Sempahore.h to Semaphores.h
this is needed to allow build on MacOS, as its case-insensitive
filesystem picks up the NuttX semaphore.h
2013-01-02 18:22:13 +11:00

34 lines
608 B
C

#ifndef __AP_HAL_H__
#define __AP_HAL_H__
#include <stdint.h>
#include <stdbool.h>
#include "AP_HAL_Namespace.h"
#include "AP_HAL_Boards.h"
/* HAL Module Classes (all pure virtual) */
#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 "Scheduler.h"
#include "Semaphores.h"
#include "Util.h"
#include "utility/Print.h"
#include "utility/Stream.h"
#include "utility/BetterStream.h"
/* HAL Class definition */
#include "HAL.h"
#endif // __AP_HAL_H__