Skip to content

Commit 3c74375

Browse files
author
Felix Exner
committed
Merge remote-tracking branch 'origin/main' into pose_broadcaster
# Conflicts: # ur_robot_driver/config/ur_controllers.yaml # ur_robot_driver/launch/ur_control.launch.py # ur_robot_driver/src/hardware_interface.cpp
2 parents 4d453d8 + 2d026bc commit 3c74375

Some content is hidden

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

42 files changed

+1418
-719
lines changed

.github/workflows/update-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# Create pull request
2929
- name: Create pull-request
3030
id: cpr
31-
uses: peter-evans/create-pull-request@v6
31+
uses: peter-evans/create-pull-request@v7
3232
with:
3333
branch: update-ci/pre-commit-autoupdate
3434
delete-branch: true

.pre-commit-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
repos:
1616
# Standard hooks
1717
- repo: https://github.com/pre-commit/pre-commit-hooks
18-
rev: v4.6.0
18+
rev: v5.0.0
1919
hooks:
2020
- id: check-added-large-files
2121
- id: check-ast
@@ -69,7 +69,7 @@ repos:
6969
- id: ament_cppcheck
7070
name: ament_cppcheck
7171
description: Static code analysis of C/C++ files.
72-
stages: [commit]
72+
stages: [pre-commit]
7373
entry: env AMENT_CPPCHECK_ALLOW_SLOW_VERSIONS=1 ament_cppcheck
7474
language: system
7575
files: \.(h\+\+|h|hh|hxx|hpp|cuh|c|cc|cpp|cu|c\+\+|cxx|tpp|txx)$
@@ -80,7 +80,7 @@ repos:
8080
- id: ament_cpplint
8181
name: ament_cpplint
8282
description: Static code analysis of C/C++ files.
83-
stages: [commit]
83+
stages: [pre-commit]
8484
entry: ament_cpplint
8585
language: system
8686
files: \.(h\+\+|h|hh|hxx|hpp|cuh|c|cc|cpp|cu|c\+\+|cxx|tpp|txx)$
@@ -102,7 +102,7 @@ repos:
102102
- id: ament_lint_cmake
103103
name: ament_lint_cmake
104104
description: Check format of CMakeLists.txt files.
105-
stages: [commit]
105+
stages: [pre-commit]
106106
entry: ament_lint_cmake
107107
language: system
108108
files: CMakeLists.txt$
@@ -113,14 +113,14 @@ repos:
113113
- id: ament_copyright
114114
name: ament_copyright
115115
description: Check if copyright notice is available in all files.
116-
stages: [commit]
116+
stages: [pre-commit]
117117
entry: ament_copyright
118118
language: system
119119
args: ['--exclude', 'ur_robot_driver/doc/conf.py', 'ur_calibration/doc/conf.py']
120120

121121
# Docs - RestructuredText hooks
122122
- repo: https://github.com/PyCQA/doc8
123-
rev: v1.1.1
123+
rev: v1.1.2
124124
hooks:
125125
- id: doc8
126126
args: ['--max-line-length=100', '--ignore=D001']

Universal_Robots_ROS2_Driver-not-released.humble.repos

Lines changed: 0 additions & 6 deletions
This file was deleted.

Universal_Robots_ROS2_Driver-not-released.iron.repos

Lines changed: 0 additions & 6 deletions
This file was deleted.

Universal_Robots_ROS2_Driver.galactic.repos

Lines changed: 0 additions & 25 deletions
This file was deleted.

Universal_Robots_ROS2_Driver.humble.repos

Lines changed: 0 additions & 29 deletions
This file was deleted.

Universal_Robots_ROS2_Driver.iron.repos

Lines changed: 0 additions & 29 deletions
This file was deleted.

Universal_Robots_ROS2_Driver.jazzy.repos

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repositories:
1010
ur_msgs:
1111
type: git
1212
url: https://github.com/ros-industrial/ur_msgs.git
13-
version: foxy-devel
13+
version: humble-devel
1414
ros2_control:
1515
type: git
1616
url: https://github.com/RobertWilbrandt/ros2_control.git

Universal_Robots_ROS2_Driver.rolling.repos

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repositories:
1010
ur_msgs:
1111
type: git
1212
url: https://github.com/ros-industrial/ur_msgs.git
13-
version: foxy-devel
13+
version: humble-devel
1414
ros2_control:
1515
type: git
1616
url: https://github.com/RobertWilbrandt/ros2_control.git

ur_controllers/CMakeLists.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,16 @@ generate_parameter_library(
5454
src/scaled_joint_trajectory_controller_parameters.yaml
5555
)
5656

57+
generate_parameter_library(
58+
ur_configuration_controller_parameters
59+
src/ur_configuration_controller_parameters.yaml
60+
)
61+
5762
add_library(${PROJECT_NAME} SHARED
5863
src/scaled_joint_trajectory_controller.cpp
5964
src/speed_scaling_state_broadcaster.cpp
60-
src/gpio_controller.cpp)
65+
src/gpio_controller.cpp
66+
src/ur_configuration_controller.cpp)
6167

6268
target_include_directories(${PROJECT_NAME} PRIVATE
6369
include
@@ -66,6 +72,7 @@ target_link_libraries(${PROJECT_NAME}
6672
gpio_controller_parameters
6773
speed_scaling_state_broadcaster_parameters
6874
scaled_joint_trajectory_controller_parameters
75+
ur_configuration_controller_parameters
6976
)
7077
ament_target_dependencies(${PROJECT_NAME}
7178
${THIS_PACKAGE_INCLUDE_DEPENDS}

0 commit comments

Comments
 (0)