Skip to content

Commit e63e3f2

Browse files
author
AndyZe
committed
Initial copy of the ROS1 driver
0 parents  commit e63e3f2

File tree

117 files changed

+10363
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+10363
-0
lines changed

.ci.rosinstall

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
- git:
2+
uri: https://github.com/fmauch/universal_robot.git
3+
local-name: universal_robot
4+
version: calibration_devel

.clang-format

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
---
2+
BasedOnStyle: Google
3+
AccessModifierOffset: -2
4+
ConstructorInitializerIndentWidth: 2
5+
AlignEscapedNewlinesLeft: false
6+
AlignTrailingComments: true
7+
AllowAllParametersOfDeclarationOnNextLine: false
8+
AllowShortIfStatementsOnASingleLine: false
9+
AllowShortLoopsOnASingleLine: false
10+
AllowShortFunctionsOnASingleLine: None
11+
AllowShortLoopsOnASingleLine: false
12+
AlwaysBreakTemplateDeclarations: true
13+
AlwaysBreakBeforeMultilineStrings: false
14+
BreakBeforeBinaryOperators: false
15+
BreakBeforeTernaryOperators: false
16+
BreakConstructorInitializersBeforeComma: true
17+
BinPackParameters: true
18+
ColumnLimit: 120
19+
ConstructorInitializerAllOnOneLineOrOnePerLine: true
20+
DerivePointerBinding: false
21+
PointerBindsToType: true
22+
ExperimentalAutoDetectBinPacking: false
23+
IndentCaseLabels: true
24+
MaxEmptyLinesToKeep: 1
25+
NamespaceIndentation: None
26+
ObjCSpaceBeforeProtocolList: true
27+
PenaltyBreakBeforeFirstCallParameter: 19
28+
PenaltyBreakComment: 60
29+
PenaltyBreakString: 1
30+
PenaltyBreakFirstLessLess: 1000
31+
PenaltyExcessCharacter: 1000
32+
PenaltyReturnTypeOnItsOwnLine: 90
33+
SpacesBeforeTrailingComments: 2
34+
Cpp11BracedListStyle: false
35+
Standard: Auto
36+
IndentWidth: 2
37+
TabWidth: 2
38+
UseTab: Never
39+
IndentFunctionDeclarationAfterType: false
40+
SpacesInParentheses: false
41+
SpacesInAngles: false
42+
SpaceInEmptyParentheses: false
43+
SpacesInCStyleCastParentheses: false
44+
SpaceAfterControlStatementKeyword: true
45+
SpaceBeforeAssignmentOperators: true
46+
ContinuationIndentWidth: 4
47+
SortIncludes: false
48+
SpaceAfterCStyleCast: false
49+
50+
# Configure each individual brace in BraceWrapping
51+
BreakBeforeBraces: Custom
52+
53+
# Control of individual brace wrapping cases
54+
BraceWrapping: {
55+
AfterCaseLabel: 'true'
56+
AfterClass: 'true'
57+
AfterControlStatement: 'true'
58+
AfterEnum : 'true'
59+
AfterFunction : 'true'
60+
AfterNamespace : 'true'
61+
AfterStruct : 'true'
62+
AfterUnion : 'true'
63+
BeforeCatch : 'true'
64+
BeforeElse : 'true'
65+
IndentBraces : 'false'
66+
}
67+
...

.clang-tidy

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Checks: '-*,readability-identifier-naming'
2+
CheckOptions:
3+
- { key: readability-identifier-naming.NamespaceCase, value: lower_case }
4+
- { key: readability-identifier-naming.ClassCase, value: CamelCase }
5+
- { key: readability-identifier-naming.PrivateMemberSuffix, value: _ }
6+
- { key: readability-identifier-naming.StructCase, value: CamelCase }
7+
- { key: readability-identifier-naming.FunctionCase, value: camelBack }
8+
- { key: readability-identifier-naming.VariableCase, value: lower_case }
9+
- { key: readability-identifier-naming.GlobalVariablePrefix, value: g_ }
10+
- { key: readability-identifier-naming.GlobalConstantCase, value: UPPER_CASE }

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
CMakeCache.txt
2+
CMakeFiles
3+
Makefile
4+
cmake_install.cmake
5+
install_manifest.txt
6+
*~
7+
.idea
8+
.directory
9+
.vscode

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Alpha version of the ROS2 Universal Robots driver. Should be transferred to the Universal Robots org when ready.
2+

controller_stopper/CMakeLists.txt

Lines changed: 202 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,202 @@
1+
cmake_minimum_required(VERSION 2.8.3)
2+
project(controller_stopper)
3+
4+
## Compile as C++11, supported in ROS Kinetic and newer
5+
add_compile_options(-std=c++11)
6+
7+
## Find catkin macros and libraries
8+
## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)
9+
## is used, also find other catkin packages
10+
find_package(catkin REQUIRED COMPONENTS
11+
controller_manager_msgs
12+
roscpp
13+
std_msgs
14+
)
15+
16+
## System dependencies are found with CMake's conventions
17+
# find_package(Boost REQUIRED COMPONENTS system)
18+
19+
20+
## Uncomment this if the package has a setup.py. This macro ensures
21+
## modules and global scripts declared therein get installed
22+
## See http://ros.org/doc/api/catkin/html/user_guide/setup_dot_py.html
23+
# catkin_python_setup()
24+
25+
################################################
26+
## Declare ROS messages, services and actions ##
27+
################################################
28+
29+
## To declare and build messages, services or actions from within this
30+
## package, follow these steps:
31+
## * Let MSG_DEP_SET be the set of packages whose message types you use in
32+
## your messages/services/actions (e.g. std_msgs, actionlib_msgs, ...).
33+
## * In the file package.xml:
34+
## * add a build_depend tag for "message_generation"
35+
## * add a build_depend and a exec_depend tag for each package in MSG_DEP_SET
36+
## * If MSG_DEP_SET isn't empty the following dependency has been pulled in
37+
## but can be declared for certainty nonetheless:
38+
## * add a exec_depend tag for "message_runtime"
39+
## * In this file (CMakeLists.txt):
40+
## * add "message_generation" and every package in MSG_DEP_SET to
41+
## find_package(catkin REQUIRED COMPONENTS ...)
42+
## * add "message_runtime" and every package in MSG_DEP_SET to
43+
## catkin_package(CATKIN_DEPENDS ...)
44+
## * uncomment the add_*_files sections below as needed
45+
## and list every .msg/.srv/.action file to be processed
46+
## * uncomment the generate_messages entry below
47+
## * add every package in MSG_DEP_SET to generate_messages(DEPENDENCIES ...)
48+
49+
## Generate messages in the 'msg' folder
50+
# add_message_files(
51+
# FILES
52+
# Message1.msg
53+
# Message2.msg
54+
# )
55+
56+
## Generate services in the 'srv' folder
57+
# add_service_files(
58+
# FILES
59+
# Service1.srv
60+
# Service2.srv
61+
# )
62+
63+
## Generate actions in the 'action' folder
64+
# add_action_files(
65+
# FILES
66+
# Action1.action
67+
# Action2.action
68+
# )
69+
70+
## Generate added messages and services with any dependencies listed here
71+
# generate_messages(
72+
# DEPENDENCIES
73+
# controller_manager_msgs# std_msgs
74+
# )
75+
76+
################################################
77+
## Declare ROS dynamic reconfigure parameters ##
78+
################################################
79+
80+
## To declare and build dynamic reconfigure parameters within this
81+
## package, follow these steps:
82+
## * In the file package.xml:
83+
## * add a build_depend and a exec_depend tag for "dynamic_reconfigure"
84+
## * In this file (CMakeLists.txt):
85+
## * add "dynamic_reconfigure" to
86+
## find_package(catkin REQUIRED COMPONENTS ...)
87+
## * uncomment the "generate_dynamic_reconfigure_options" section below
88+
## and list every .cfg file to be processed
89+
90+
## Generate dynamic reconfigure parameters in the 'cfg' folder
91+
# generate_dynamic_reconfigure_options(
92+
# cfg/DynReconf1.cfg
93+
# cfg/DynReconf2.cfg
94+
# )
95+
96+
###################################
97+
## catkin specific configuration ##
98+
###################################
99+
## The catkin_package macro generates cmake config files for your package
100+
## Declare things to be passed to dependent projects
101+
## INCLUDE_DIRS: uncomment this if your package contains header files
102+
## LIBRARIES: libraries you create in this project that dependent projects also need
103+
## CATKIN_DEPENDS: catkin_packages dependent projects also need
104+
## DEPENDS: system dependencies of this project that dependent projects also need
105+
catkin_package(
106+
# INCLUDE_DIRS include
107+
# LIBRARIES controller_stopper
108+
CATKIN_DEPENDS controller_manager_msgs roscpp std_msgs
109+
# DEPENDS system_lib
110+
)
111+
112+
###########
113+
## Build ##
114+
###########
115+
116+
## Specify additional locations of header files
117+
## Your package locations should be listed before other locations
118+
include_directories(
119+
include
120+
${catkin_INCLUDE_DIRS}
121+
)
122+
123+
## Declare a C++ library
124+
# add_library(${PROJECT_NAME}
125+
# src/${PROJECT_NAME}/controller_stopper.cpp
126+
# )
127+
128+
## Add cmake target dependencies of the library
129+
## as an example, code may need to be generated before libraries
130+
## either from message generation or dynamic reconfigure
131+
# add_dependencies(${PROJECT_NAME} ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
132+
133+
## Declare a C++ executable
134+
## With catkin_make all packages are built within a single CMake context
135+
## The recommended prefix ensures that target names across packages don't collide
136+
add_executable(${PROJECT_NAME}_node
137+
src/controller_stopper.cpp
138+
src/controller_stopper_node.cpp
139+
)
140+
141+
## Rename C++ executable without prefix
142+
## The above recommended prefix causes long target names, the following renames the
143+
## target back to the shorter version for ease of user use
144+
## e.g. "rosrun someones_pkg node" instead of "rosrun someones_pkg someones_pkg_node"
145+
set_target_properties(${PROJECT_NAME}_node PROPERTIES OUTPUT_NAME node PREFIX "")
146+
147+
## Add cmake target dependencies of the executable
148+
## same as for the library above
149+
add_dependencies(${PROJECT_NAME}_node ${${PROJECT_NAME}_EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS})
150+
151+
## Specify libraries to link a library or executable target against
152+
target_link_libraries(${PROJECT_NAME}_node
153+
${catkin_LIBRARIES}
154+
)
155+
156+
#############
157+
## Install ##
158+
#############
159+
160+
# all install targets should use catkin DESTINATION variables
161+
# See http://ros.org/doc/api/catkin/html/adv_user_guide/variables.html
162+
163+
## Mark executable scripts (Python etc.) for installation
164+
## in contrast to setup.py, you can choose the destination
165+
# install(PROGRAMS
166+
# scripts/my_python_script
167+
# DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
168+
# )
169+
170+
## Mark executables and/or libraries for installation
171+
install(TARGETS ${PROJECT_NAME}_node
172+
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
173+
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
174+
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
175+
)
176+
177+
## Mark cpp header files for installation
178+
# install(DIRECTORY include/${PROJECT_NAME}/
179+
# DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
180+
# FILES_MATCHING PATTERN "*.h"
181+
# PATTERN ".svn" EXCLUDE
182+
# )
183+
184+
## Mark other files for installation (e.g. launch and bag files, etc.)
185+
# install(FILES
186+
# # myfile1
187+
# # myfile2
188+
# DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
189+
# )
190+
191+
#############
192+
## Testing ##
193+
#############
194+
195+
## Add gtest based cpp test target and link libraries
196+
# catkin_add_gtest(${PROJECT_NAME}-test test/test_controller_stopper.cpp)
197+
# if(TARGET ${PROJECT_NAME}-test)
198+
# target_link_libraries(${PROJECT_NAME}-test ${PROJECT_NAME})
199+
# endif()
200+
201+
## Add folders to be run by python nosetests
202+
# catkin_add_nosetests(test)

0 commit comments

Comments
 (0)