mirror of https://github.com/ArduPilot/ardupilot
25 lines
485 B
C
25 lines
485 B
C
|
|
||
|
#ifndef __AP_HAL_EMPTY_CLASS_H__
|
||
|
#define __AP_HAL_EMPTY_CLASS_H__
|
||
|
|
||
|
#include <AP_HAL.h>
|
||
|
|
||
|
#if CONFIG_HAL_BOARD == HAL_BOARD_EMPTY
|
||
|
|
||
|
#include "AP_HAL_Empty_Namespace.h"
|
||
|
#include "PrivateMember.h"
|
||
|
|
||
|
class HAL_Empty : public AP_HAL::HAL {
|
||
|
public:
|
||
|
HAL_Empty();
|
||
|
void init(int argc, const char * argv[]) const;
|
||
|
private:
|
||
|
Empty::EmptyPrivateMember *_member;
|
||
|
};
|
||
|
|
||
|
//extern const HAL_Empty AP_HAL_Empty;
|
||
|
|
||
|
#endif // CONFIG_HAL_BOARD == HAL_BOARD_EMPTY
|
||
|
#endif // __AP_HAL_EMPTY_CLASS_H__
|
||
|
|