2016-02-17 21:25:25 -04:00
|
|
|
#pragma once
|
2012-12-18 20:09:24 -04:00
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include "AP_HAL_Namespace.h"
|
|
|
|
|
|
|
|
class AP_HAL::Util {
|
|
|
|
public:
|
2013-09-21 00:28:46 -03:00
|
|
|
int snprintf(char* str, size_t size,
|
|
|
|
const char *format, ...);
|
2012-12-18 20:09:24 -04:00
|
|
|
|
2013-09-21 00:28:46 -03:00
|
|
|
int vsnprintf(char* str, size_t size,
|
|
|
|
const char *format, va_list ap);
|
2012-12-18 20:09:24 -04:00
|
|
|
|
2015-01-28 19:15:48 -04:00
|
|
|
void set_soft_armed(const bool b) { soft_armed = b; }
|
|
|
|
bool get_soft_armed() const { return soft_armed; }
|
|
|
|
|
2015-07-30 03:40:36 -03:00
|
|
|
void set_capabilities(uint64_t cap) { capabilities |= cap; }
|
|
|
|
void clear_capabilities(uint64_t cap) { capabilities &= ~(cap); }
|
|
|
|
uint64_t get_capabilities() const { return capabilities; }
|
|
|
|
|
2017-04-19 01:16:05 -03:00
|
|
|
virtual const char* get_custom_log_directory() const { return nullptr; }
|
2016-10-30 02:24:21 -03:00
|
|
|
virtual const char* get_custom_terrain_directory() const { return nullptr; }
|
2018-03-28 03:19:37 -03:00
|
|
|
virtual const char *get_custom_storage_directory() const { return nullptr; }
|
2015-06-28 16:09:20 -03:00
|
|
|
|
2016-01-06 18:09:09 -04:00
|
|
|
// get path to custom defaults file for AP_Param
|
|
|
|
virtual const char* get_custom_defaults_file() const {
|
|
|
|
return HAL_PARAM_DEFAULTS_PATH;
|
|
|
|
}
|
2016-05-23 17:14:54 -03:00
|
|
|
|
2013-02-07 00:03:34 -04:00
|
|
|
// run a debug shall on the given stream if possible. This is used
|
|
|
|
// to support dropping into a debug shell to run firmware upgrade
|
|
|
|
// commands
|
|
|
|
virtual bool run_debug_shell(AP_HAL::BetterStream *stream) = 0;
|
|
|
|
|
2013-10-05 02:46:35 -03:00
|
|
|
enum safety_state {
|
|
|
|
SAFETY_NONE, SAFETY_DISARMED, SAFETY_ARMED
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
return state of safety switch, if applicable
|
|
|
|
*/
|
|
|
|
virtual enum safety_state safety_switch_state(void) { return SAFETY_NONE; }
|
2013-10-23 09:26:36 -03:00
|
|
|
|
|
|
|
/*
|
2018-02-13 21:39:37 -04:00
|
|
|
set HW RTC in UTC microseconds
|
2013-10-23 09:26:36 -03:00
|
|
|
*/
|
2018-02-13 21:39:37 -04:00
|
|
|
virtual void set_hw_rtc(uint64_t time_utc_usec);
|
2013-11-25 20:57:40 -04:00
|
|
|
|
2016-04-12 01:39:29 -03:00
|
|
|
/*
|
2018-02-13 21:39:37 -04:00
|
|
|
get system clock in UTC microseconds
|
2016-04-12 01:39:29 -03:00
|
|
|
*/
|
2018-02-13 21:39:37 -04:00
|
|
|
virtual uint64_t get_hw_rtc() const;
|
2016-04-12 01:39:29 -03:00
|
|
|
|
2018-06-27 02:59:24 -03:00
|
|
|
// overwrite bootloader (probably with one from ROMFS)
|
|
|
|
virtual bool flash_bootloader() { return false; }
|
|
|
|
|
2013-11-25 20:57:40 -04:00
|
|
|
/*
|
|
|
|
get system identifier (eg. serial number)
|
|
|
|
return false if a system identifier is not available
|
|
|
|
|
|
|
|
Buf should be filled with a printable string and must be null
|
|
|
|
terminated
|
|
|
|
*/
|
|
|
|
virtual bool get_system_id(char buf[40]) { return false; }
|
2013-12-27 23:51:01 -04:00
|
|
|
|
2014-02-22 17:15:39 -04:00
|
|
|
/**
|
|
|
|
return commandline arguments, if available
|
|
|
|
*/
|
|
|
|
virtual void commandline_arguments(uint8_t &argc, char * const *&argv) { argc = 0; }
|
2016-05-23 17:14:54 -03:00
|
|
|
|
2014-08-23 04:56:24 -03:00
|
|
|
/*
|
|
|
|
ToneAlarm Driver
|
|
|
|
*/
|
2014-11-15 01:50:07 -04:00
|
|
|
virtual bool toneAlarm_init() { return false;}
|
2018-07-27 04:12:17 -03:00
|
|
|
virtual void toneAlarm_set_buzzer_tone(float frequency, float volume, uint32_t duration_ms) {}
|
2015-01-28 19:15:48 -04:00
|
|
|
|
2015-06-17 04:04:15 -03:00
|
|
|
/*
|
|
|
|
return a stream for access to a system shell, if available
|
|
|
|
*/
|
2018-03-22 03:53:32 -03:00
|
|
|
virtual AP_HAL::BetterStream *get_shell_stream() { return nullptr; }
|
2015-06-17 04:04:15 -03:00
|
|
|
|
2015-10-02 06:29:27 -03:00
|
|
|
/* Support for an imu heating system */
|
2016-07-01 02:35:07 -03:00
|
|
|
virtual void set_imu_temp(float current) {}
|
2015-10-02 06:29:27 -03:00
|
|
|
|
2016-06-15 05:00:55 -03:00
|
|
|
/* Support for an imu heating system */
|
2016-07-01 02:35:07 -03:00
|
|
|
virtual void set_imu_target_temp(int8_t *target) {}
|
2016-06-15 05:00:55 -03:00
|
|
|
|
2015-10-20 02:41:52 -03:00
|
|
|
/*
|
|
|
|
performance counter calls - wrapper around original PX4 interface
|
|
|
|
*/
|
|
|
|
enum perf_counter_type {
|
2016-05-23 17:14:54 -03:00
|
|
|
PC_COUNT, /**< count the number of times an event occurs */
|
|
|
|
PC_ELAPSED, /**< measure the time elapsed performing an event */
|
|
|
|
PC_INTERVAL /**< measure the interval between instances of an event */
|
2015-10-20 02:41:52 -03:00
|
|
|
};
|
|
|
|
typedef void *perf_counter_t;
|
2016-10-30 02:24:21 -03:00
|
|
|
virtual perf_counter_t perf_alloc(perf_counter_type t, const char *name) { return nullptr; }
|
2015-10-20 02:41:52 -03:00
|
|
|
virtual void perf_begin(perf_counter_t h) {}
|
|
|
|
virtual void perf_end(perf_counter_t h) {}
|
|
|
|
virtual void perf_count(perf_counter_t h) {}
|
2015-12-16 17:23:57 -04:00
|
|
|
|
|
|
|
// create a new semaphore
|
|
|
|
virtual Semaphore *new_semaphore(void) { return nullptr; }
|
2016-05-23 17:14:54 -03:00
|
|
|
|
2016-11-23 05:30:32 -04:00
|
|
|
// allocate and free DMA-capable memory if possible. Otherwise return normal memory
|
2018-01-08 05:47:27 -04:00
|
|
|
enum Memory_Type {
|
|
|
|
MEM_DMA_SAFE,
|
|
|
|
MEM_FAST
|
|
|
|
};
|
2018-01-16 17:02:13 -04:00
|
|
|
virtual void *malloc_type(size_t size, Memory_Type mem_type) { return calloc(1, size); }
|
2018-01-08 05:47:27 -04:00
|
|
|
virtual void free_type(void *ptr, size_t size, Memory_Type mem_type) { return free(ptr); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
how much free memory do we have in bytes. If unknown return 4096
|
|
|
|
*/
|
|
|
|
virtual uint32_t available_memory(void) { return 4096; }
|
2015-01-28 19:15:48 -04:00
|
|
|
protected:
|
2015-08-22 05:47:45 -03:00
|
|
|
// we start soft_armed false, so that actuators don't send any
|
|
|
|
// values until the vehicle code has fully started
|
|
|
|
bool soft_armed = false;
|
|
|
|
uint64_t capabilities = 0;
|
2018-02-13 21:39:37 -04:00
|
|
|
|
2012-12-18 20:09:24 -04:00
|
|
|
};
|