msg: add message translation node for ROS

This commit is contained in:
Beat Küng
2024-10-29 14:50:08 +01:00
committed by Silvan Fuhrer
parent 975ec30c9c
commit f6bfa9812e
32 changed files with 3200 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
/****************************************************************************
* Copyright (c) 2024 PX4 Development Team.
* SPDX-License-Identifier: BSD-3-Clause
****************************************************************************/
#include <gtest/gtest.h>
#include <rclcpp/rclcpp.hpp>
int main(int argc, char ** argv)
{
rclcpp::init(argc, argv);
testing::InitGoogleTest(&argc, argv);
const int ret = RUN_ALL_TESTS();
rclcpp::shutdown();
return ret;
}