disconnect
Disconnect from MAVLink clients
Description
disconnect(
disconnects from the specific client connection name.mavlink
,connection
)
Examples
Store MAVLink Client Information
Connect to a MAVLink client.
mavlink = mavlinkio("common.xml"); connect(mavlink,"UDP");
Create the object for storing the client information. Specify the system and component ID.
client = mavlinkclient(mavlink,1,1)
client = mavlinkclient with properties: SystemID: 1 ComponentID: 1 ComponentType: "Unknown" AutopilotType: "Unknown"
Disconnect from client.
disconnect(mavlink)
Work with MAVLink Connection
This example shows how to connect to MAVLink clients, inspect the list of topics, connections, and clients, and send messages through UDP ports using the MAVLink communication protocol.
Connect to a MAVLink client using the "common.xml"
dialect. This local client communicates with any other clients through a UDP port.
dialect = mavlinkdialect("common.xml"); mavlink = mavlinkio(dialect); connect(mavlink,"UDP")
ans = "Connection1"
You can list all the active clients, connections, and topics for the MAVLink connection. Currently, there is only one client connection and no topics have received messages.
listClients(mavlink)
ans=1×4 table
SystemID ComponentID ComponentType AutopilotType
________ ___________ ______________ _______________________
255 1 "MAV_TYPE_GCS" "MAV_AUTOPILOT_INVALID"
listConnections(mavlink)
ans=1×2 table
ConnectionName ConnectionInfo
______________ ___________________
"Connection1" "UDP@0.0.0.0:46250"
listTopics(mavlink)
ans = 0x5 empty table MessageID MessageName SystemID ComponentID MessageFrequency _________ ___________ ________ ___________ ________________
Create a subscriber for receiving messages on the client. This subscriber listens for the "HEARTBEAT"
message topic with ID equal to 0
.
sub = mavlinksub(mavlink,0);
Create a "HEARTBEAT"
message using the mavlinkdialect
object. Specify payload information and send the message over the MAVLink client.
msg = createmsg(dialect,"HEARTBEAT"); msg.Payload.type(:) = enum2num(dialect,'MAV_TYPE','MAV_TYPE_QUADROTOR'); sendmsg(mavlink,msg)
Disconnect from the client.
disconnect(mavlink)
Input Arguments
mavlink
— MAVLink client connection
mavlinkio
object
MAVLink client connection, specified as a mavlinkio
object.
connection
— Connection name
string scalar
Connection name, specified as a string scalar.
Version History
Introduced in R2019a
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)