mirror of https://github.com/ArduPilot/ardupilot
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 <ryanfriedman5410+github@gmail.com>
This commit is contained in:
parent
d4e0375d31
commit
bd518dc140
|
@ -66,7 +66,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
|
||||
|
|
Loading…
Reference in New Issue