Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

src: fix wrp-sdk version needed #21

Merged
merged 2 commits into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ More details can be found in the README inside individual src sub-folders

### Install dependencies

* wrp_sdk >= **v1.3.0**: please follow setup instructions from [here](https://github.com/westonrobot/wrp_sdk/)
* wrp_sdk >= **v1.3.0** ... < **v1.5.0** : please follow setup instructions from [here](https://github.com/westonrobot/wrp_sdk/)

### Build the package

Expand Down
2 changes: 1 addition & 1 deletion wrp_sdk_periph/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ find_package(sensor_msgs REQUIRED)
find_package(rclcpp_action REQUIRED)

# wr packages
find_package(wrp_sdk 1.3 REQUIRED)
find_package(wrp_sdk_msgs REQUIRED)
find_package(wrp_sdk 1.3.0...<1.5 REQUIRED)

# Attempt to find lelycan libraries for peripheral nodes
find_package(PkgConfig REQUIRED)
Expand Down
2 changes: 1 addition & 1 deletion wrp_sdk_robot/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ find_package(tf2_geometry_msgs REQUIRED)

# wr packages
find_package(wrp_sdk_msgs REQUIRED)
find_package(wrp_sdk 1.3 REQUIRED)
find_package(wrp_sdk 1.3.0...<1.5 REQUIRED)

add_executable(mobile_base_node
src/mobile_base_node.cpp
Expand Down