2013-01-21 02:10:42 -04:00
|
|
|
|
|
|
|
#ifndef __AP_HAL_PX4_UTIL_H__
|
|
|
|
#define __AP_HAL_PX4_UTIL_H__
|
|
|
|
|
|
|
|
#include <AP_HAL.h>
|
|
|
|
#include "AP_HAL_PX4_Namespace.h"
|
|
|
|
|
|
|
|
class PX4::PX4Util : public AP_HAL::Util {
|
|
|
|
public:
|
2013-10-05 02:47:28 -03:00
|
|
|
PX4Util(void);
|
2013-02-07 00:03:54 -04:00
|
|
|
bool run_debug_shell(AP_HAL::BetterStream *stream);
|
2013-10-05 02:47:28 -03:00
|
|
|
|
|
|
|
enum safety_state safety_switch_state(void);
|
|
|
|
|
2013-10-23 09:26:55 -03:00
|
|
|
/*
|
|
|
|
set system clock in UTC microseconds
|
|
|
|
*/
|
|
|
|
void set_system_clock(uint64_t time_utc_usec);
|
|
|
|
|
2013-11-25 20:57:59 -04:00
|
|
|
/*
|
|
|
|
get system identifier (STM32 serial number)
|
|
|
|
*/
|
|
|
|
bool get_system_id(char buf[40]);
|
|
|
|
|
2013-12-28 01:01:28 -04:00
|
|
|
uint16_t available_memory(void);
|
|
|
|
|
2013-10-05 02:47:28 -03:00
|
|
|
private:
|
|
|
|
int _safety_handle;
|
2013-01-21 02:10:42 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __AP_HAL_PX4_UTIL_H__
|