mirror of https://github.com/ArduPilot/ardupilot
AP_HAL: add support for get_persistent_param_by_name
This commit is contained in:
parent
3f5365ed54
commit
55504e7fcc
|
@ -184,6 +184,10 @@ public:
|
|||
// load persistent parameters from bootloader sector
|
||||
virtual bool load_persistent_params(ExpandingString &str) const { return false; }
|
||||
|
||||
virtual bool get_persistent_param_by_name(const char *name, char* value, size_t& len) const {
|
||||
return false;
|
||||
}
|
||||
|
||||
#if HAL_UART_STATS_ENABLED
|
||||
// request information on uart I/O
|
||||
virtual void uart_info(ExpandingString &str) {}
|
||||
|
|
Loading…
Reference in New Issue