ardupilot/libraries/AP_HAL/AP_HAL.h
Pat Hickey 3b697fe299 AP_HAL: rename Log to Dataflash
* I'd love to build a proper abstraction for logging, but I don't have the
  time to do so right now.
* The dataflash libs need to be pushed into the AP_HAL_AVR anyway, so I'll
  do that now and replace the interface with a better logging driver later.
2012-12-20 14:51:21 +11:00

28 lines
499 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 "Dataflash.h"
#include "GPIO.h"
#include "RCInput.h"
#include "RCOutput.h"
#include "Scheduler.h"
#include "utility/Print.h"
#include "utility/Stream.h"
#include "utility/BetterStream.h"
/* HAL Class definition */
#include "HAL.h"
#endif // __AP_HAL_H__