mirror of https://github.com/ArduPilot/ardupilot
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
|
|
|
|
#ifndef __AP_HAL_PX4_HAL_PX4_H__
|
|
#define __AP_HAL_PX4_HAL_PX4_H__
|
|
|
|
#include <AP_HAL.h>
|
|
#include "AP_HAL_PX4_Namespace.h"
|
|
|
|
/**
|
|
* HAL_PX4 class derives from HAL but provides an PX4-specific
|
|
* init method.
|
|
*/
|
|
|
|
class AP_HAL_PX4::HAL_PX4 : public AP_HAL::HAL {
|
|
public:
|
|
HAL_PX4(
|
|
AP_HAL::UARTDriver* _uart0,
|
|
AP_HAL::UARTDriver* _uart1,
|
|
AP_HAL::UARTDriver* _uart2,
|
|
AP_HAL::UARTDriver* _uart3,
|
|
AP_HAL::I2CDriver* _i2c,
|
|
AP_HAL::SPIDriver* _spi,
|
|
AP_HAL::AnalogIn* _analogin,
|
|
AP_HAL::Storage* _storage,
|
|
AP_HAL::Dataflash* _dataflash,
|
|
AP_HAL::ConsoleDriver* _console,
|
|
AP_HAL::GPIO* _gpio,
|
|
AP_HAL::RCInput* _rcin,
|
|
AP_HAL::RCOutput* _rcout,
|
|
AP_HAL::Scheduler* _scheduler)
|
|
: AP_HAL::HAL( _uart0, _uart1, _uart2, _uart3,
|
|
_i2c, _spi, _analogin, _storage,
|
|
_dataflash, _console, _gpio, _rcin,
|
|
_rcout, _scheduler) {}
|
|
|
|
void init(void* opts) const;
|
|
};
|
|
#endif // __AP_HAL_PX4_HAL_PX4_H__
|
|
|