mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-23 09:08:30 -04:00
AP_HAL: add support for unformatted board id
This commit is contained in:
parent
3b2fdc9c70
commit
df7d0d1971
@ -62,6 +62,7 @@ public:
|
|||||||
terminated
|
terminated
|
||||||
*/
|
*/
|
||||||
virtual bool get_system_id(char buf[40]) { return false; }
|
virtual bool get_system_id(char buf[40]) { return false; }
|
||||||
|
virtual bool get_system_id_unformatted(uint8_t buf[], uint8_t &len) { return false; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
return commandline arguments, if available
|
return commandline arguments, if available
|
||||||
@ -111,6 +112,7 @@ public:
|
|||||||
how much free memory do we have in bytes. If unknown return 4096
|
how much free memory do we have in bytes. If unknown return 4096
|
||||||
*/
|
*/
|
||||||
virtual uint32_t available_memory(void) { return 4096; }
|
virtual uint32_t available_memory(void) { return 4096; }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
// we start soft_armed false, so that actuators don't send any
|
// we start soft_armed false, so that actuators don't send any
|
||||||
// values until the vehicle code has fully started
|
// values until the vehicle code has fully started
|
||||||
|
Loading…
Reference in New Issue
Block a user