2013-09-22 03:01:24 -03:00
|
|
|
|
|
|
|
#ifndef __AP_HAL_LINUX_CLASS_H__
|
|
|
|
#define __AP_HAL_LINUX_CLASS_H__
|
|
|
|
|
2015-08-11 03:28:43 -03:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
2013-09-22 03:01:24 -03:00
|
|
|
|
|
|
|
#include "AP_HAL_Linux_Namespace.h"
|
|
|
|
|
|
|
|
class HAL_Linux : public AP_HAL::HAL {
|
|
|
|
public:
|
|
|
|
HAL_Linux();
|
2015-10-19 11:38:47 -03:00
|
|
|
void run(int argc, char* const* argv, Callbacks* callbacks) const override;
|
2013-09-22 03:01:24 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
extern const HAL_Linux AP_HAL_Linux;
|
|
|
|
|
|
|
|
#endif // __AP_HAL_LINUX_CLASS_H__
|
|
|
|
|