Skip to content

Commit

Permalink
added mrs namespace to package
Browse files Browse the repository at this point in the history
  • Loading branch information
petrlmat committed Oct 26, 2023
1 parent ebf221c commit f794a3a
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 12 deletions.
8 changes: 3 additions & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 2.8.3)
project(vins_republisher)
project(mrs_vins_republisher)

## Compile as C++11, supported in ROS Kinetic and newer
add_compile_options(-std=c++17)
Expand Down Expand Up @@ -28,12 +28,10 @@ include_directories(
)

## Declare a C++ library
add_library(VinsRepublisher src/VinsRepublisher.cpp)

# add_executable(VinsRepublisher src/VinsRepublisher.cpp)
add_library(MrsVinsRepublisher src/VinsRepublisher.cpp)

## Specify libraries to link a library or executable target against
target_link_libraries(VinsRepublisher
target_link_libraries(MrsVinsRepublisher
${catkin_LIBRARIES}
)

Expand Down
2 changes: 1 addition & 1 deletion launch/vins_republisher.launch
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<!-- ================= VinsRepublisher nodelet ================ -->
<node pkg="nodelet" type="nodelet" name="vins_republisher" args="$(arg nodelet) vins_republisher/VinsRepublisher $(arg nodelet_manager)" launch-prefix="$(arg launch_prefix_debug)" output="screen">

<rosparam file="$(find vins_republisher)/config/default.yaml" command="load" />
<rosparam file="$(find mrs_vins_republisher)/config/default.yaml" command="load" />

<param name="uav_name" value="$(arg UAV_NAME)"/>
<!-- set to true if velocity is defined in the IMU frame -->
Expand Down
2 changes: 1 addition & 1 deletion launch/vins_republisher_bluefox_down.launch
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<!-- ================= VinsRepublisher nodelet ================ -->
<node pkg="nodelet" type="nodelet" name="vins_republisher" args="$(arg nodelet) vins_republisher/VinsRepublisher $(arg nodelet_manager)" launch-prefix="$(arg launch_prefix_debug)" output="screen">

<rosparam file="$(find vins_republisher)/config/default.yaml" command="load" />
<rosparam file="$(find mrs_vins_republisher)/config/default.yaml" command="load" />

<param name="uav_name" value="$(arg UAV_NAME)"/>
<!-- set to true if velocity is defined in the IMU frame -->
Expand Down
2 changes: 1 addition & 1 deletion launch/vins_republisher_openvins_bluefox.launch
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<!-- ================= VinsRepublisher nodelet ================ -->
<node pkg="nodelet" type="nodelet" name="vins_republisher" args="$(arg nodelet) vins_republisher/VinsRepublisher $(arg nodelet_manager)" launch-prefix="$(arg launch_prefix_debug)" output="screen">

<rosparam file="$(find vins_republisher)/config/default.yaml" command="load" />
<rosparam file="$(find mrs_vins_republisher)/config/default.yaml" command="load" />

<param name="uav_name" value="$(arg UAV_NAME)"/>

Expand Down
2 changes: 1 addition & 1 deletion launch/vins_republisher_openvins_t265.launch
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<!-- ================= VinsRepublisher nodelet ================ -->
<node pkg="nodelet" type="nodelet" name="vins_republisher" args="$(arg nodelet) vins_republisher/VinsRepublisher $(arg nodelet_manager)" launch-prefix="$(arg launch_prefix_debug)" output="screen">

<rosparam file="$(find vins_republisher)/config/default.yaml" command="load" />
<rosparam file="$(find mrs_vins_republisher)/config/default.yaml" command="load" />

<param name="uav_name" value="$(arg UAV_NAME)"/>

Expand Down
4 changes: 2 additions & 2 deletions package.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0"?>
<package format="2">

<name>vins_republisher</name>
<name>mrs_vins_republisher</name>
<version>0.0.0</version>
<description>The vins_republisher package</description>
<description>The mrs_vins_republisher package</description>

<author email="[email protected]">Jan Bednar</author>
<maintainer email="[email protected]">Jan Bednar</maintainer>
Expand Down
2 changes: 1 addition & 1 deletion plugins.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

<library path="lib/libVinsRepublisher">
<library path="lib/libMrsVinsRepublisher">
<class name="vins_republisher/VinsRepublisher" type="vins_republisher::VinsRepublisher" base_class_type="nodelet::Nodelet">
<description>VinsRepublisher nodelet</description>
</class>
Expand Down

0 comments on commit f794a3a

Please sign in to comment.