54#if __linux__ || __APPLE__
62 #include <sys/socket.h>
63 #include <sys/types.h>
64 #include <netinet/in.h>
68 #include <arpa/inet.h>
70 #include <mavlink/common/mavlink.h>
96class UDP_Port :
public Generic_Port
102 UDP_Port(
const char* target_ip_,
int udp_port_);
104 ~UDP_Port()
override;
106 UDP_Port(
const UDP_Port&) =
delete;
108 UDP_Port(UDP_Port&&) =
delete;
110 UDP_Port& operator=(
const UDP_Port&) =
delete;
112 UDP_Port& operator=(UDP_Port&&) =
delete;
116 int read_message(mavlink_message_t& message)
override;
120 int write_message(
const mavlink_message_t& message)
override;
123 bool is_running()
override
129 void start()
override;
132 void stop()
override;
135 mavlink_status_t lastStatus{};
136 pthread_mutex_t lock{};
139 void initialize_defaults();
141 const static int BUFF_LEN = 2041;
142 std::array<uint8_t, BUFF_LEN> buff{};
146 const char* target_ip =
"127.0.0.1";
147 int rx_port{ 14550 };
150 bool is_open =
false;
154 int _read_port(uint8_t& cp);
159 int _write_port(
char* buf,
unsigned len);
void start()
Starts the Thread.
void stop()
Stops the Thread.
Generic interface definition.