mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-23 00:04:02 -04:00
AP_HAL_Linux: increase short board names to 23 chars
This commit is contained in:
parent
9312c571c6
commit
b0bc7591dd
@ -150,7 +150,7 @@ bool Util::get_system_id_unformatted(uint8_t buf[], uint8_t &len)
|
|||||||
as get_system_id_unformatted will already be ascii, we use the same
|
as get_system_id_unformatted will already be ascii, we use the same
|
||||||
ID here
|
ID here
|
||||||
*/
|
*/
|
||||||
bool Util::get_system_id(char buf[40])
|
bool Util::get_system_id(char buf[50])
|
||||||
{
|
{
|
||||||
uint8_t len = 40;
|
uint8_t len = 40;
|
||||||
return get_system_id_unformatted((uint8_t *)buf, len);
|
return get_system_id_unformatted((uint8_t *)buf, len);
|
||||||
|
@ -69,7 +69,7 @@ public:
|
|||||||
|
|
||||||
uint32_t available_memory(void) override;
|
uint32_t available_memory(void) override;
|
||||||
|
|
||||||
bool get_system_id(char buf[40]) override;
|
bool get_system_id(char buf[50]) override;
|
||||||
bool get_system_id_unformatted(uint8_t buf[], uint8_t &len) override;
|
bool get_system_id_unformatted(uint8_t buf[], uint8_t &len) override;
|
||||||
|
|
||||||
#ifdef ENABLE_HEAP
|
#ifdef ENABLE_HEAP
|
||||||
|
Loading…
Reference in New Issue
Block a user