ardupilot/libraries/AP_HAL_PX4/AP_HAL_PX4_Namespace.h
Andrew Tridgell 952df2fced HAL_PX4: new buffered storeage driver for microsd cards
this does all IO in the timer thread, avoids writes that don't change
data, and does all writes in multiples of 128 byte chunks. This should
be about as friendly to SD cards as we can get.
2013-01-23 16:37:40 +11:00

19 lines
314 B
C++

#ifndef __AP_HAL_PX4_NAMESPACE_H__
#define __AP_HAL_PX4_NAMESPACE_H__
namespace PX4 {
class PX4ConsoleDriver;
class PX4Scheduler;
class PX4UARTDriver;
class PX4Storage;
class PX4RCInput;
class PX4RCOutput;
class PX4AnalogIn;
class PX4AnalogSource;
class PX4Util;
}
#endif //__AP_HAL_PX4_NAMESPACE_H__