3b697fe299
* 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.
26 lines
505 B
C++
26 lines
505 B
C++
|
|
#ifndef __AP_HAL_AVR_NAMESPACE_H__
|
|
#define __AP_HAL_AVR_NAMESPACE_H__
|
|
|
|
namespace AP_HAL_AVR {
|
|
class HAL_AVR;
|
|
|
|
class AVRUARTDriver;
|
|
class AVRI2CDriver;
|
|
class ArduinoSPIDriver;
|
|
class ArduinoAnalogIn;
|
|
class AVREEPROMStorage;
|
|
class APM1Dataflash;
|
|
class APM2Dataflash;
|
|
class ArduinoGPIO;
|
|
class APM1RCInput;
|
|
class APM2RCInput;
|
|
class APM1RCOutput;
|
|
class APM2RCOutput;
|
|
class ArduinoScheduler;
|
|
class ISRRegistry;
|
|
}
|
|
|
|
#endif //__AP_HAL_AVR_NAMESPACE_H__
|
|
|