Skip to content

Commit

Permalink
Extend doc with sdk dependencies (#149)
Browse files Browse the repository at this point in the history
* extend doc

* spell

* increase activation test timeout

---------

Co-authored-by: Svastits <svastits1@gmail.com>
  • Loading branch information
Svastits and Svastits authored Mar 11, 2024
1 parent 650385b commit fee94b5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ rosdep install --from-paths . --ignore-src --rosdistro $ROS_DISTRO -y
Clone and build kuka-external-control-sdk in a different workspace.
- This library is necessary for the iiQKA ExternalAPI.Control driver
- The library is not a ROS2 package, therefore a different workspace is necessary, otherwise colcon will fail to build it
- To install dependencies for your platform, check out the [Requirements](https://github.com/kroshu/kuka-external-control-sdk/blob/master/kuka-external-control-sdk/doc/SDK_howto.md#requirements) section of the kuka-external-control-sdk documentation.
```bash
mkdir -p ~/sdk_ws/src
cd ~/sdk_ws/src
Expand Down
8 changes: 4 additions & 4 deletions kuka_iiqka_eac_driver/test/test_driver_activation.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def generate_test_description():
}.items(),
),
launch.actions.TimerAction(
period=5.0,
period=10.0,
actions=[
launch.actions.ExecuteProcess(
cmd=["ros2", "lifecycle", "set", "robot_manager", "configure"],
Expand All @@ -55,7 +55,7 @@ def generate_test_description():
],
),
launch.actions.TimerAction(
period=10.0,
period=15.0,
actions=[
launch.actions.ExecuteProcess(
cmd=["ros2", "lifecycle", "set", "robot_manager", "activate"],
Expand All @@ -81,6 +81,6 @@ def test_read_stdout(self, proc_output):
)
# Check for successful configuration and activation
proc_output.assertWaitFor(
"Successful 'configure' of hardware 'lbr_iisy3_r760'", timeout=10
"Successful 'configure' of hardware 'lbr_iisy3_r760'", timeout=15
)
proc_output.assertWaitFor("Successful 'activate' of hardware 'lbr_iisy3_r760'", timeout=15)
proc_output.assertWaitFor("Successful 'activate' of hardware 'lbr_iisy3_r760'", timeout=20)

0 comments on commit fee94b5

Please sign in to comment.