-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
migrated joystick_control & emergency_control
- Loading branch information
Showing
6 changed files
with
105 additions
and
72 deletions.
There are no files selected for viewing
52 changes: 36 additions & 16 deletions
52
NaviGator/utils/remote_control/navigator_emergency_control/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,39 @@ | ||
cmake_minimum_required(VERSION 3.0.2) | ||
cmake_minimum_required(VERSION 3.5) | ||
project(navigator_emergency_controller) | ||
|
||
find_package(catkin REQUIRED COMPONENTS | ||
roscpp | ||
std_msgs | ||
geometry_msgs | ||
navigator_msg_multiplexer | ||
nav_msgs | ||
) | ||
set(CMAKE_CXX_STANDARD 14) | ||
|
||
catkin_package( | ||
CATKIN_DEPENDS | ||
std_msgs | ||
nav_msgs | ||
geometry_msgs | ||
roscpp | ||
navigator_msg_multiplexer | ||
) | ||
if(NOT CMAKE_CXX_STANDARD) | ||
set(CMAKE_CXX_STANDARD 14) | ||
endif() | ||
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang") | ||
add_compile_options(-Wall -Wextra -Wpedantic) | ||
endif() | ||
|
||
|
||
# find_package(catkin REQUIRED COMPONENTS | ||
# roscpp | ||
# std_msgs | ||
# geometry_msgs | ||
# navigator_msg_multiplexer | ||
# nav_msgs | ||
# ) | ||
|
||
find_package(ament_cmake REQUIRED) | ||
find_package(roscpp REQUIRED) | ||
find_package(geometry_msgs REQUIRED) | ||
find_package(navigator_msg_multiplexer REQUIRED) | ||
find_package(nav_msgs REQUIRED) | ||
find_package(std_msgs REQUIRED) | ||
|
||
# catkin_package( | ||
# CATKIN_DEPENDS | ||
# std_msgs | ||
# nav_msgs | ||
# geometry_msgs | ||
# roscpp | ||
# navigator_msg_multiplexer | ||
# ) | ||
|
||
ament_export_dependencies(std_msgs nav_msgs geometry_msgs roscpp navigator_msg_multiplexer) | ||
ament_package() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 13 additions & 14 deletions
27
NaviGator/utils/remote_control/navigator_emergency_control/package.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,20 @@ | ||
<?xml version="1.0"?> | ||
<package> | ||
<package format="3"> | ||
<name>navigator_emergency_controller</name> | ||
<version>4.0.0</version> | ||
<description>A server that controls navigator in response to the /joy_emergency node</description> | ||
<maintainer email="[email protected]">David Zobel</maintainer> | ||
<license>MIT</license> | ||
<buildtool_depend>catkin</buildtool_depend> | ||
<build_depend>geometry_msgs</build_depend> | ||
<build_depend>message_runtime</build_depend> | ||
<build_depend>nav_msgs</build_depend> | ||
<build_depend>navigator_msg_multiplexer</build_depend> | ||
<build_depend>roscpp</build_depend> | ||
<build_depend>std_msgs</build_depend> | ||
<run_depend>roscpp</run_depend> | ||
<run_depend>std_msgs</run_depend> | ||
<run_depend>geometry_msgs</run_depend> | ||
<run_depend>message_runtime</run_depend> | ||
<run_depend>navigator_msg_multiplexer</run_depend> | ||
<run_depend>nav_msgs</run_depend> | ||
|
||
<buildtool_depend>ament_cmake</buildtool_depend> | ||
<depend>geometry_msgs</depend> | ||
<depend>message_runtime</depend> | ||
<depend>nav_msgs</depend> | ||
<depend>navigator_msg_multiplexer</depend> | ||
<depend>roscpp</depend> | ||
<depend>std_msgs</depend> | ||
|
||
<export> | ||
<build_type>ament_cmake</build_type> | ||
</export> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 16 additions & 15 deletions
31
NaviGator/utils/remote_control/navigator_joystick_control/package.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,23 @@ | ||
<?xml version="1.0"?> | ||
<package> | ||
<package format="3"> | ||
<name>navigator_joystick_control</name> | ||
<version>4.0.0</version> | ||
<description>A server that controls navigator in response to the /Joy node</description> | ||
<maintainer email="[email protected]">Anthony Olive</maintainer> | ||
<license>MIT</license> | ||
<buildtool_depend>catkin</buildtool_depend> | ||
<build_depend>geometry_msgs</build_depend> | ||
<build_depend>message_runtime</build_depend> | ||
<build_depend>nav_msgs</build_depend> | ||
<build_depend>navigator_msg_multiplexer</build_depend> | ||
<build_depend>roscpp</build_depend> | ||
<build_depend>std_msgs</build_depend> | ||
<run_depend>roscpp</run_depend> | ||
<run_depend>std_msgs</run_depend> | ||
<run_depend>geometry_msgs</run_depend> | ||
<run_depend>message_runtime</run_depend> | ||
<run_depend>navigator_msg_multiplexer</run_depend> | ||
<run_depend>nav_msgs</run_depend> | ||
<run_depend>ros_alarms</run_depend> | ||
|
||
<buildtool_depend>ament_cmake</buildtool_depend> | ||
<depend>geometry_msgs</depend> | ||
<depend>message_runtime</depend> | ||
<depend>nav_msgs</depend> | ||
<depend>navigator_msg_multiplexer</depend> | ||
<depend>roscpp</depend> | ||
<depend>std_msgs</depend> | ||
|
||
<build_export_depend>ros_alarms</build_export_depend> | ||
<exec_depend>ros_alarms</exec_depend> | ||
|
||
<export> | ||
<build_type>ament_cmake</build_type> | ||
</export> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters