From 1382fd5701f182935f2dfd95dd3a490e65da2e4d Mon Sep 17 00:00:00 2001 From: Ryan Friedman Date: Wed, 20 Mar 2024 23:50:59 -0600 Subject: [PATCH] AP_DDS: Fix incorrect port param name * We want to support TCP and UDP in the future, so make sure we call it UDP here Signed-off-by: Ryan Friedman --- libraries/AP_DDS/AP_DDS_Client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/AP_DDS/AP_DDS_Client.cpp b/libraries/AP_DDS/AP_DDS_Client.cpp index eb038fd68a..3daa69f6b8 100644 --- a/libraries/AP_DDS/AP_DDS_Client.cpp +++ b/libraries/AP_DDS/AP_DDS_Client.cpp @@ -64,7 +64,7 @@ const AP_Param::GroupInfo AP_DDS_Client::var_info[] { // @Range: 1 65535 // @RebootRequired: True // @User: Standard - AP_GROUPINFO("_PORT", 2, AP_DDS_Client, udp.port, 2019), + AP_GROUPINFO("_UDP_PORT", 2, AP_DDS_Client, udp.port, 2019), // @Group: _IP // @Path: ../AP_Networking/AP_Networking_address.cpp