From e165063324ebadbafbbca13d7b7e19696195bb9e Mon Sep 17 00:00:00 2001 From: Yuri Date: Sun, 18 Sep 2022 12:04:23 -0500 Subject: [PATCH] GCS_MAVLink: increase short board names to 23 chars --- libraries/GCS_MAVLink/GCS_Common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/GCS_MAVLink/GCS_Common.cpp b/libraries/GCS_MAVLink/GCS_Common.cpp index f7a8ff0853..ffcc08207c 100644 --- a/libraries/GCS_MAVLink/GCS_Common.cpp +++ b/libraries/GCS_MAVLink/GCS_Common.cpp @@ -3999,7 +3999,7 @@ void GCS_MAVLINK::send_banner() } // send system ID if we can - char sysid[40]; + char sysid[50]; if (hal.util->get_system_id(sysid)) { send_text(MAV_SEVERITY_INFO, "%s", sysid); }