2012-12-30 04:56:57 -04:00
|
|
|
|
|
|
|
#ifndef __AP_HAL_PX4_CLASS_H__
|
|
|
|
#define __AP_HAL_PX4_CLASS_H__
|
|
|
|
|
2015-08-11 03:28:43 -03:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
2012-12-30 04:56:57 -04:00
|
|
|
|
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_PX4
|
|
|
|
|
2015-08-11 03:28:43 -03:00
|
|
|
#include "AP_HAL_PX4.h"
|
2012-12-30 04:56:57 -04:00
|
|
|
#include "AP_HAL_PX4_Namespace.h"
|
2013-05-04 01:30:56 -03:00
|
|
|
#include <systemlib/visibility.h>
|
2013-01-24 00:03:48 -04:00
|
|
|
#include <systemlib/perf_counter.h>
|
2012-12-30 04:56:57 -04:00
|
|
|
|
|
|
|
class HAL_PX4 : public AP_HAL::HAL {
|
|
|
|
public:
|
|
|
|
HAL_PX4();
|
|
|
|
void init(int argc, char * const argv[]) const;
|
|
|
|
};
|
|
|
|
|
2015-02-15 20:53:08 -04:00
|
|
|
void hal_px4_set_priority(uint8_t priority);
|
|
|
|
|
2012-12-30 04:56:57 -04:00
|
|
|
extern const HAL_PX4 AP_HAL_PX4;
|
|
|
|
|
|
|
|
#endif // CONFIG_HAL_BOARD == HAL_BOARD_PX4
|
|
|
|
#endif // __AP_HAL_PX4_CLASS_H__
|