0.3.0
Loading...
Searching...
No Matches
mavlinkSend.hpp
Go to the documentation of this file.
1// This file is part of INSTINCT, the INS Toolkit for Integrated
2// Navigation Concepts and Training by the Institute of Navigation of
3// the University of Stuttgart, Germany.
4//
5// This Source Code Form is subject to the terms of the Mozilla Public
6// License, v. 2.0. If a copy of the MPL was not distributed with this
7// file, You can obtain one at https://mozilla.org/MPL/2.0/.
8
13
14#pragma once
15
16#if __linux__ || __APPLE__
17
18 #include "internal/Node/Node.hpp"
19
21
22 #include <mavlink/common/mavlink.h>
23
27
28namespace NAV
29{
31class MavlinkSend : public Node
32{
33 public:
35 MavlinkSend();
37 ~MavlinkSend() override;
39 MavlinkSend(const MavlinkSend&) = delete;
41 MavlinkSend(MavlinkSend&&) = delete;
43 MavlinkSend& operator=(const MavlinkSend&) = delete;
45 MavlinkSend& operator=(MavlinkSend&&) = delete;
46
48 [[nodiscard]] static std::string typeStatic();
49
51 [[nodiscard]] std::string type() const override;
52
54 [[nodiscard]] static std::string category();
55
58 void guiConfig() override;
59
61 [[nodiscard]] json save() const override;
62
65 void restore(const json& j) override;
66
68 bool resetNode() override;
69
70 private:
71 constexpr static size_t INPUT_PORT_INDEX_NODE_DATA = 0;
72
74 bool initialize() override;
75
77 void deinitialize() override;
78
82 void receivePosVelAtt(InputPin::NodeDataQueue& queue, size_t pinIdx);
83
85 enum class PortType : uint8_t
86 {
87 Serial_Port,
88 UDP_Port,
89 };
90
92 std::shared_ptr<Generic_Port> port;
93
95 Autopilot_Interface autopilot_interface;
96
98 PortType _portType = PortType::Serial_Port;
99
101 std::array<int, 4> _ip{ 127, 0, 0, 1 };
102
104 static std::string convertArrayToIPAddress(const std::array<int, 4>& ipArray);
105
107 int _portNumber = 14540;
108
110 static constexpr std::array<int, 2> IP_LIMITS = { 0, 255 };
112 static constexpr std::array<int, 2> PORT_LIMITS = { 0, 65535 };
113
121 std::string _serialPort;
122
124 enum class Baudrate : uint8_t
125 {
126 BAUDRATE_1200,
127 BAUDRATE_2400,
128 BAUDRATE_4800,
129 BAUDRATE_9600,
130 BAUDRATE_19200,
131 BAUDRATE_38400,
132 BAUDRATE_57600,
133 BAUDRATE_111100,
134 BAUDRATE_115200,
135 BAUDRATE_230400,
136 BAUDRATE_256000,
137 BAUDRATE_460800,
138 BAUDRATE_500000,
139 BAUDRATE_921600,
140 BAUDRATE_1500000,
141 COUNT
142 };
146 static const char* to_string(Baudrate value);
147
151 static int getBaudrateValue(Baudrate value);
152
154 Baudrate _baudrate = Baudrate::BAUDRATE_57600;
155
157 bool _GPS_INPUT_Active = false;
158
160 double _GPS_INPUT_Frequency = 10;
161
163 bool _ATT_POS_MOCAP_Active = false;
164
166 double _ATT_POS_MOCAP_Frequency = 10;
167};
168} // namespace NAV
169#endif
void initialize()
Initializes the config manager. Call this function before using other functions.
void deinitialize()
Deinitializes the config manager. Call this if you want to Fetch config again.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
@ COUNT
Amount of items in the enum.
Node Class.
Position, Velocity and Attitude Storage Class.
const char * to_string(gui::widgets::PositionWithFrame::ReferenceFrame refFrame)
Converts the enum to a string.
Autopilot interface definition.
Serial interface definition.
UDP interface definition.