Skip to content

Commit d0b7eb5

Browse files
committed
Apply changes from moveit_pro core repo
1 parent b12c904 commit d0b7eb5

File tree

14 files changed

+37
-14
lines changed

14 files changed

+37
-14
lines changed

src/moveit_pro_franka_configs/franka_behaviors/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
cmake_minimum_required(VERSION 3.22)
22
project(franka_behaviors CXX)
33

4-
find_package(moveit_studio_common REQUIRED)
4+
find_package(moveit_pro_package REQUIRED)
55
find_package(franka_msgs REQUIRED)
6-
moveit_studio_package()
6+
moveit_pro_package()
77

88
set(THIS_PACKAGE_INCLUDE_DEPENDS moveit_studio_behavior moveit_studio_behavior_interface pluginlib
99
franka_msgs)

src/moveit_pro_franka_configs/franka_behaviors/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<buildtool_depend>ament_cmake</buildtool_depend>
1313

14-
<build_depend>moveit_studio_common</build_depend>
14+
<build_depend>moveit_pro_package</build_depend>
1515

1616
<depend>franka_msgs</depend>
1717
<depend>moveit_studio_behavior_interface</depend>

src/moveit_pro_franka_configs/franka_dual_arm_sim/description/franka.urdf.xacro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@
255255
<param name="mujoco_model_package">franka_dual_arm_sim</param>
256256
<param name="render_publish_rate">10</param>
257257
<param name="tf_publish_rate">60</param>
258-
<param name="mujoco_keyframe">home</param>
258+
<param name="mujoco_keyframe">default</param>
259259
<param name="mujoco_viewer">$(arg mujoco_viewer)</param>
260260
</hardware>
261261
</ros2_control>

src/moveit_pro_franka_configs/franka_dual_arm_sim/scripts/svg_to_yaml.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,10 @@ def extract_waypoints_from_paths(paths, density):
124124
points = path_to_points(path, density)
125125
log(f"Path has {len(points)} waypoints")
126126
waypoints = [
127-
list(a) for a in zip(points.real, points.imag, np.zeros(len(points.real)))
127+
list(a)
128+
for a in zip(
129+
points.real, points.imag, np.zeros(len(points.real)), strict=True
130+
)
128131
]
129132
log(f"Subpath has {len(waypoints)} waypoints")
130133
# Add a pre-waypoint and post-waypoint with Z clearance for transitions between subpaths.

src/moveit_pro_kinova_configs/kinova_sim/config/config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ hardware:
6161
- wrist_realsense: "true"
6262
- use_internal_bus_gripper_comm: "false"
6363
- mujoco_model: "description/mujoco/rafti_fingers_scene.xml"
64+
- mujoco_viewer: false
6465

6566
# Sets ROS global params for launch.
6667
# [Optional]

src/moveit_pro_kinova_configs/kinova_sim/description/mujoco/rafti_fingers_scene.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,4 +168,13 @@
168168
<geom class="collision" mesh="ring_collision_32" />
169169
</body>
170170
</worldbody>
171+
172+
<keyframe>
173+
<key
174+
name="default"
175+
qpos="-1.69695e-17 -2.31038e-12 -2.98065e-17 -7.10814e-12 -9.94764e-17 -1.42119e-11 -1.0432e-16 0.00500747 0.000142046 0.0054543 -0.0057924 0.00500747 0.000142046 0.00545513 -0.00579407 0.43 -0.2 0.133001 0.583914 -1.685e-07 1.03188e-06 0.811816"
176+
qvel="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
177+
ctrl="0 0 0 0 0 0 0 0"
178+
/>
179+
</keyframe>
171180
</mujoco>

src/moveit_pro_kinova_configs/kinova_sim/description/mujoco/scene.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,4 +168,13 @@
168168
<geom class="collision" mesh="ring_collision_32" />
169169
</body>
170170
</worldbody>
171+
172+
<keyframe>
173+
<key
174+
name="default"
175+
qpos="-1.69695e-17 -2.31038e-12 -2.98065e-17 -7.10814e-12 -9.94764e-17 -1.42119e-11 -1.0432e-16 0.00500747 0.000142046 0.0054543 -0.0057924 0.00500747 0.000142046 0.00545513 -0.00579407 0.43 -0.2 0.133001 0.583914 -1.685e-07 1.03188e-06 0.811816"
176+
qvel="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0"
177+
ctrl="0 0 0 0 0 0 0 0"
178+
/>
179+
</keyframe>
171180
</mujoco>

src/moveit_pro_kinova_configs/kinova_sim/description/picknik_kinova_gen3.xacro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -689,6 +689,7 @@
689689
<param name="mujoco_model_package">kinova_sim</param>
690690
<param name="render_publish_rate">10</param>
691691
<param name="tf_publish_rate">60</param>
692+
<param name="mujoco_viewer">$(arg mujoco_viewer)</param>
692693
</hardware>
693694
</ros2_control>
694695

src/moveit_pro_kinova_configs/moveit_studio_kinova_pstop_manager/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
cmake_minimum_required(VERSION 3.22)
22
project(moveit_studio_kinova_pstop_manager)
33

4-
find_package(moveit_studio_common REQUIRED)
5-
moveit_studio_package()
4+
find_package(moveit_pro_package REQUIRED)
5+
moveit_pro_package()
66

77
if(CMAKE_CXX_COMPILER_ID MATCHES "(GNU|Clang)")
88
add_compile_options(-Wpedantic)

src/moveit_pro_kinova_configs/moveit_studio_kinova_pstop_manager/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<license>Proprietary</license>
1212

1313
<buildtool_depend>ament_cmake_ros</buildtool_depend>
14-
<build_depend>moveit_studio_common</build_depend>
14+
<build_depend>moveit_pro_package</build_depend>
1515

1616
<depend>controller_manager_msgs</depend>
1717
<depend>moveit_studio_agent_msgs</depend>

0 commit comments

Comments
 (0)