52#if __linux__ || __APPLE__
63 #include <mavlink/common/mavlink.h>
74 #define B460800 460800
78 #define B921600 921600
101class Serial_Port :
public Generic_Port
107 Serial_Port(
const char* uart_name_,
int baudrate_);
109 ~Serial_Port()
override;
111 Serial_Port(
const Serial_Port&) =
delete;
113 Serial_Port(Serial_Port&&) =
delete;
115 Serial_Port& operator=(
const Serial_Port&) =
delete;
117 Serial_Port& operator=(Serial_Port&&) =
delete;
119 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;
136 mavlink_status_t lastStatus;
137 pthread_mutex_t lock;
140 void initialize_defaults();
143 const char* uart_name;
149 int _open_port(
const char* port);
157 [[nodiscard]]
bool _setup_port(
int baud,
int data_bits,
int stop_bits,
bool parity,
bool hardware_control)
const;
161 int _read_port(uint8_t& cp);
166 int _write_port(
char* buf,
unsigned len);
void start()
Starts the Thread.
void stop()
Stops the Thread.
Generic interface definition.