Skip to content

Commit

Permalink
MavLink Node added
Browse files Browse the repository at this point in the history
  • Loading branch information
maierdev authored and ToppDev committed Oct 4, 2024
1 parent 41a64e4 commit 331139e
Show file tree
Hide file tree
Showing 13 changed files with 3,088 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
[submodule "lib/implot"]
path = lib/implot
url = https://github.com/niavok/implot.git
[submodule "lib/mavlink/mavlink"]
path = lib/mavlink/mavlink
url = https://github.com/mavlink/c_library_v2.git
[submodule "doc/doxygen-awesome-css"]
path = doc/doxygen-awesome-css
url = https://github.com/jothepro/doxygen-awesome-css.git
4 changes: 4 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,10 @@ set_target_properties(libUartSensor PROPERTIES CXX_CPPCHECK "")

include_directories(SYSTEM lib/gcem/include)

# ------------------------------------------------ MavLink ----------------------------------------------- */

include_directories(SYSTEM lib/mavlink)

# ######################################################################################################################
# Installed Packages
# ######################################################################################################################
Expand Down
1 change: 1 addition & 0 deletions lib/mavlink/mavlink
Submodule mavlink added at a792c5
2 changes: 2 additions & 0 deletions src/NodeRegistry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ std::vector<std::string> NAV::NodeRegistry::GetParentNodeDataTypes(const std::st
#include "Nodes/Converter/GNSS/UbloxGnssOrbitCollector.hpp"
#include "Nodes/Converter/IMU/VectorNavBinaryConverter.hpp"
// Data Link
#include "Nodes/DataLink/mavlinkSend.hpp"
#include "Nodes/DataLink/udpSend.hpp"
#include "Nodes/DataLink/udpRecv.hpp"
// Data Logger
Expand Down Expand Up @@ -248,6 +249,7 @@ void NAV::NodeRegistry::RegisterNodeTypes()
registerNodeType<UbloxGnssOrbitCollector>();
registerNodeType<VectorNavBinaryConverter>();
// Data Link
registerNodeType<MavlinkSend>();
registerNodeType<UdpSend>();
registerNodeType<UdpRecv>();
// Data Logger
Expand Down
Loading

0 comments on commit 331139e

Please sign in to comment.