I have this code executing on an esp32, the connection to the Pixhawk is working on serial 2, connected to Telem 2
mavlink_message_t msg; uint8_t buf[MAVLINK_MAX_PACKET_LEN]; mavlink_msg_statustext_pack(GNC_SYS_ID, GNC_COMP_ID, &msg, 0, "TEST"); uint16_t len = mavlink_msg_to_send_buffer(buf, &msg); Serial2.write(buf, len);
How do I find whether the TEST message was received in Mission Planner?
If you press CRTL+F in Mission Planner and chose Mavlink Inspector you can see all the message which arrived.
@copilot great thanks.
Hy! I am also facing an issuing the same issue, i am trying to send a status text from NODE-RED to mission planner. I cannot see the message that i am sending. I can see someother status text. But the text i am sending. I canot see it