Skip to content

Commit 5bd1efa

Browse files
KmakDBOOTCFG
andauthored
2.2.2 release candidate fixes (#589)
Co-authored-by: BOOTCFG <139364969+BOOTCFG@users.noreply.github.com> Fix release documentation rebuild (#523)
1 parent 6ab599c commit 5bd1efa

9 files changed

Lines changed: 13 additions & 15 deletions

File tree

.github/workflows/release-project.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,5 +112,5 @@ jobs:
112112
owner: husarion
113113
repo: docs_new
114114
github_token: ${{ secrets.GH_PAT }}
115-
workflow_file_name: build.yml
115+
workflow_file_name: build.yaml
116116
ref: master

docker/demo/compose.rviz.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ x-common-config:
44
ipc: host
55
environment:
66
- RMW_IMPLEMENTATION=rmw_cyclonedds_cpp # Default FastDDS do not work
7-
- ROBOT_NAMESPACE=${ROBOT_NAMESPACE:-panther}
7+
- ROBOT_NAMESPACE=${ROBOT_NAMESPACE:-${ROBOT_MODEL_NAME:-panther}}
88
- ROS_DOMAIN_ID=${ROS_DOMAIN_ID:-0}
99

1010
x-cpu-config:

docker/demo/compose.simulation.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ x-common-config: &common-config
44
environment:
55
- RMW_IMPLEMENTATION=rmw_cyclonedds_cpp
66
- ROBOT_MODEL_NAME=${ROBOT_MODEL_NAME:-panther}
7-
- ROBOT_NAMESPACE=${ROBOT_NAMESPACE:-panther}
7+
- ROBOT_NAMESPACE=${ROBOT_NAMESPACE:-${ROBOT_MODEL_NAME:-panther}}
88
- ROS_DOMAIN_ID=${ROS_DOMAIN_ID:-0}
99

1010
x-cpu-config: &cpu-config

docker/utils/update_config_directory.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ copy_package_file() {
2929
# source robot environment
3030
source /run/husarion/robot_config.env
3131

32-
copy_package_file husarion_ugv config/joy2twist_${ROBOT_MODEL_NAME}.yaml
32+
copy_package_file husarion_ugv_bringup config/joy2twist_${ROBOT_MODEL_NAME}.yaml
3333
copy_package_file husarion_ugv_controller config
3434
copy_package_file husarion_ugv_lights config/user_animations.yaml
3535
copy_package_file husarion_ugv_lights config/${ROBOT_MODEL_NAME}_animations.yaml

husarion_ugv/CMakeLists.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,4 @@ project(husarion_ugv)
33

44
find_package(ament_cmake REQUIRED)
55

6-
install(DIRECTORY config DESTINATION share/${PROJECT_NAME})
7-
86
ament_package()

husarion_ugv_bringup/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ project(husarion_ugv_bringup)
33

44
find_package(ament_cmake REQUIRED)
55

6-
install(DIRECTORY launch DESTINATION share/${PROJECT_NAME})
6+
install(DIRECTORY config launch DESTINATION share/${PROJECT_NAME})
77

88
ament_package()

husarion_ugv/config/joy2twist_lynx.yaml renamed to husarion_ugv_bringup/config/joy2twist_lynx.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44

55
linear_velocity_factor:
66
fast: 1.5
7-
regular: 0.9
8-
slow: 0.3
7+
regular: 1.2
8+
slow: 0.4
99

1010
angular_velocity_factor:
1111
fast: 2.0
12-
regular: 0.9
13-
slow: 0.3
12+
regular: 0.78
13+
slow: 0.39
1414

1515
e_stop:
1616
present: true
File renamed without changes.

husarion_ugv_bringup/launch/bringup.launch.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -172,14 +172,14 @@ def generate_launch_description():
172172
}.items(),
173173
)
174174

175-
husarion_ugv_common_dir = PythonExpression(
175+
husarion_ugv_bringup_common_dir = PythonExpression(
176176
[
177177
"'",
178178
common_dir_path,
179-
"/husarion_ugv' if '",
179+
"/husarion_ugv_bringup' if '",
180180
common_dir_path,
181181
"' else '",
182-
FindPackageShare("husarion_ugv"),
182+
FindPackageShare("husarion_ugv_bringup"),
183183
"'",
184184
]
185185
)
@@ -195,7 +195,7 @@ def generate_launch_description():
195195
"namespace": namespace,
196196
"joy2twist_params_file": PathJoinSubstitution(
197197
[
198-
husarion_ugv_common_dir,
198+
husarion_ugv_bringup_common_dir,
199199
"config",
200200
PythonExpression(["'joy2twist_", robot_model_name, ".yaml'"]),
201201
]

0 commit comments

Comments
 (0)