Skip to content

Commit

Permalink
fixed mispelled variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Sep 18, 2024
1 parent d0ff955 commit 9d3b2a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/AP_DDS/AP_DDS_Client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ void AP_DDS_Client::on_topic(uxrSession* uxr_session, uxrObjectId object_id, uin

if (rx_joy_topic.axes_size >= 4) {
GCS_SEND_TEXT(MAV_SEVERITY_INFO, "%s Received %d sensor_msgs/Joy: %f, %f, %f, %f",
msg_prefix, x_joy_topic.axes_size, rx_joy_topic.axes[0],
msg_prefix, rx_joy_topic.axes_size, rx_joy_topic.axes[0],
rx_joy_topic.axes[1], rx_joy_topic.axes[2], rx_joy_topic.axes[3]);
if (rx_joy_topic.axes_size > 8U) {
GCS_SEND_TEXT(MAV_SEVERITY_NOTICE, "%s Only first 8 Joy Axes will be processed.", msg_prefix);
Expand Down

0 comments on commit 9d3b2a0

Please sign in to comment.