0.3.0
Loading...
Searching...
No Matches
serial_port.hpp
Go to the documentation of this file.
1/****************************************************************************
2 *
3 * Copyright (c) 2014 MAVlink Development Team. All rights reserved.
4 * Author: Trent Lukaczyk, <aerialhedgehog@gmail.com>
5 * Jaycee Lock, <jaycee.lock@gmail.com>
6 * Lorenz Meier, <lm@inf.ethz.ch>
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 *
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in
16 * the documentation and/or other materials provided with the
17 * distribution.
18 * 3. Neither the name PX4 nor the names of its contributors may be
19 * used to endorse or promote products derived from this software
20 * without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
28 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
29 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
30 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
32 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33 * POSSIBILITY OF SUCH DAMAGE.
34 *
35 ****************************************************************************/
36
50#pragma once
51
52#if __linux__ || __APPLE__
53// ------------------------------------------------------------------------------
54// Includes
55// ------------------------------------------------------------------------------
56
57 #include <cstdlib>
58 #include <unistd.h> // UNIX standard function definitions
59 #include <fcntl.h> // File control definitions
60 #include <termios.h> // POSIX terminal control definitions
61 #include <pthread.h> // This uses POSIX Threads
62
63 #include <mavlink/common/mavlink.h>
64
65 #include "generic_port.hpp"
66
67 // ------------------------------------------------------------------------------
68 // Defines
69 // ------------------------------------------------------------------------------
70
71 // The following two non-standard baudrates should have been defined by the system
72 // If not, just fallback to number
73 #ifndef B460800
74 #define B460800 460800
75 #endif
76
77 #ifndef B921600
78 #define B921600 921600
79 #endif
80
81// ------------------------------------------------------------------------------
82// Prototypes
83// ------------------------------------------------------------------------------
84
85// class Serial_Port;
86
87// ----------------------------------------------------------------------------------
88// Serial Port Manager Class
89// ----------------------------------------------------------------------------------
90/*
91 * Serial Port Class
92 *
93 * This object handles the opening and closing of the offboard computer's
94 * serial port over which we'll communicate. It also has methods to write
95 * a byte stream buffer. MAVlink is not used in this object yet, it's just
96 * a serialization interface. To help with read and write pthreading, it
97 * gaurds any port operation with a pthread mutex.
98 */
99
101class Serial_Port : public Generic_Port
102{
103 public:
105 Serial_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;
118
119 int read_message(mavlink_message_t& message) override;
120 int write_message(const mavlink_message_t& message) override;
121
123 bool is_running() override
124 {
125 return is_open;
126 }
127
129 void start() override;
130
132 void stop() override;
133
134 private:
135 int fd;
136 mavlink_status_t lastStatus;
137 pthread_mutex_t lock;
138
140 void initialize_defaults();
141
142 bool debug;
143 const char* uart_name;
144 int baudrate;
145 bool is_open;
146
149 int _open_port(const char* port);
150
157 [[nodiscard]] bool _setup_port(int baud, int data_bits, int stop_bits, bool parity, bool hardware_control) const;
158
161 int _read_port(uint8_t& cp);
162
166 int _write_port(char* buf, unsigned len);
167};
168
169#endif
void start()
Starts the Thread.
void stop()
Stops the Thread.
Generic interface definition.