mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-11 10:28:29 -04:00
afd1f36400
* BetterStream Means AP_HAL depends on AP_Common, for now, in order to have the AVR specific pgm_char_t defined. I'll need to factor that out in the future but for now it can stay
28 lines
493 B
C
28 lines
493 B
C
|
|
#ifndef __AP_HAL_H__
|
|
#define __AP_HAL_H__
|
|
|
|
#include "AP_HAL_Namespace.h"
|
|
|
|
/* HAL Module Classes (all pure virtual) */
|
|
#include "UARTDriver.h"
|
|
#include "I2CDriver.h"
|
|
#include "SPIDriver.h"
|
|
#include "AnalogIn.h"
|
|
#include "Storage.h"
|
|
#include "Log.h"
|
|
#include "Console.h"
|
|
#include "GPIO.h"
|
|
#include "PPMInput.h"
|
|
#include "PWMOutput.h"
|
|
|
|
#include "utility/Print.h"
|
|
#include "utility/Stream.h"
|
|
#include "utility/BetterStream.h"
|
|
|
|
/* HAL Class definition */
|
|
#include "HAL.h"
|
|
|
|
#endif // __AP_HAL_H__
|
|
|