forked from AustinDeric/spot_ros
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
231ffb3
commit 2f31c27
Showing
20 changed files
with
121 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,9 @@ | ||
cmake_minimum_required(VERSION 2.8.3) | ||
cmake_minimum_required(VERSION 3.5) | ||
project(spot_description) | ||
|
||
find_package(catkin REQUIRED COMPONENTS) | ||
find_package(ament_cmake REQUIRED) | ||
|
||
catkin_package() | ||
install(DIRECTORY launch urdf meshes | ||
DESTINATION share/${PROJECT_NAME}) | ||
|
||
include_directories( | ||
${catkin_INCLUDE_DIRS} | ||
) | ||
|
||
install(DIRECTORY launch DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}) | ||
install(DIRECTORY urdf DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}) | ||
install(DIRECTORY meshes DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}) | ||
ament_package() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,23 @@ | ||
<?xml version="1.0"?> | ||
<package format="2"> | ||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" | ||
schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>spot_description</name> | ||
<version>0.0.0</version> | ||
<version>2.0.0</version> | ||
<description>The spot_description package</description> | ||
|
||
<maintainer email="[email protected]">Dave Niewinski</maintainer> | ||
|
||
<license>BSD</license> | ||
|
||
<buildtool_depend>catkin</buildtool_depend> | ||
<buildtool_depend>ament_cmake</buildtool_depend> | ||
|
||
<exec_depend>robot_state_publisher</exec_depend> | ||
<exec_depend>urdf</exec_depend> | ||
<exec_depend>xacro</exec_depend> | ||
|
||
<export> | ||
<build_type>ament_cmake</build_type> | ||
</export> | ||
|
||
</package> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,23 @@ | ||
<?xml version="1.0"?> | ||
<package format="2"> | ||
<?xml-model href="http://download.ros.org/schema/package_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>spot_driver</name> | ||
<version>0.0.0</version> | ||
<version>2.0.0</version> | ||
<description>The spot_driver package</description> | ||
|
||
<maintainer email="[email protected]">Dave Niewinski</maintainer> | ||
|
||
<license>BSD</license> | ||
|
||
<buildtool_depend>catkin</buildtool_depend> | ||
<exec_depend>rclpy</exec_depend> | ||
<exec_depend>spot_msgs</exec_depend> | ||
<exec_depend>std_srvs</exec_depend> | ||
<exec_depend>tf2_msgs</exec_depend> | ||
<exec_depend>geometry_msgs</exec_depend> | ||
<exec_depend>sensor_msgs</exec_depend> | ||
<exec_depend>rospy</exec_depend> | ||
|
||
<export> | ||
<build_type>ament_python</build_type> | ||
<rosdoc config="rosdoc.yaml" /> | ||
</export> | ||
</package> |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
|
||
from setuptools import setup | ||
|
||
package_name = 'spot_driver' | ||
|
||
setup( | ||
name=package_name, | ||
version='2.0.0', | ||
packages=[package_name], | ||
data_files=[ | ||
('share/ament_index/resource_index/packages', | ||
['resource/' + package_name]), | ||
('share/' + package_name, ['package.xml']), | ||
], | ||
install_requires=['setuptools'], | ||
zip_safe=True, | ||
author='Dave Niewinski', | ||
author_email='[email protected]', | ||
maintainer='Dave Niewinski', | ||
maintainer_email='[email protected]', | ||
keywords=['ROS'], | ||
classifiers=[ | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: BSD', | ||
'Programming Language :: Python', | ||
'Topic :: Software Development', | ||
], | ||
description='The spot_driver package', | ||
license='BSD', | ||
tests_require=['pytest'], | ||
entry_points={ | ||
'console_scripts': [ | ||
'driver = spot_driver.spot_ros.py:main', | ||
], | ||
}, | ||
) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,36 @@ | ||
cmake_minimum_required(VERSION 3.0.2) | ||
cmake_minimum_required(VERSION 3.5) | ||
project(spot_msgs) | ||
|
||
find_package(catkin REQUIRED COMPONENTS | ||
geometry_msgs | ||
nav_msgs | ||
sensor_msgs | ||
std_msgs | ||
message_generation | ||
) | ||
find_package(ament_cmake REQUIRED) | ||
find_package(builtin_interfaces REQUIRED) | ||
find_package(nav_msgs REQUIRED) | ||
find_package(geometry_msgs REQUIRED) | ||
find_package(rosidl_default_generators REQUIRED) | ||
find_package(std_msgs REQUIRED) | ||
find_package(sensor_msgs REQUIRED) | ||
|
||
add_message_files( | ||
FILES | ||
BatteryStateArray.msg | ||
BehaviorFault.msg | ||
EStopStateArray.msg | ||
FootStateArray.msg | ||
LeaseArray.msg | ||
LeaseOwner.msg | ||
Metrics.msg | ||
SystemFault.msg | ||
WiFiState.msg | ||
BatteryState.msg | ||
BehaviorFaultState.msg | ||
EStopState.msg | ||
Feedback.msg | ||
FootState.msg | ||
Lease.msg | ||
LeaseResource.msg | ||
PowerState.msg | ||
SystemFaultState.msg | ||
rosidl_generate_interfaces(${PROJECT_NAME} | ||
"msg/BatteryStateArray.msg" | ||
"msg/BehaviorFault.msg" | ||
"msg/EStopStateArray.msg" | ||
"msg/FootStateArray.msg" | ||
"msg/LeaseArray.msg" | ||
"msg/LeaseOwner.msg" | ||
"msg/Metrics.msg" | ||
"msg/SystemFault.msg" | ||
"msg/WiFiState.msg" | ||
"msg/BatteryState.msg" | ||
"msg/BehaviorFaultState.msg" | ||
"msg/EStopState.msg" | ||
"msg/Feedback.msg" | ||
"msg/FootState.msg" | ||
"msg/Lease.msg" | ||
"msg/LeaseResource.msg" | ||
"msg/PowerState.msg" | ||
"msg/SystemFaultState.msg" | ||
DEPENDENCIES builtin_interfaces geometry_msgs std_msgs nav_msgs sensor_msgs | ||
) | ||
|
||
generate_messages( | ||
DEPENDENCIES | ||
std_msgs | ||
geometry_msgs | ||
) | ||
ament_export_dependencies(rosidl_default_runtime) | ||
|
||
catkin_package( | ||
CATKIN_DEPENDS message_runtime | ||
) | ||
|
||
include_directories( | ||
${catkin_INCLUDE_DIRS} | ||
) | ||
ament_package() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Header header | ||
std_msgs/Header header | ||
float32 distance | ||
int32 gait_cycles | ||
duration time_moving | ||
duration electric_power | ||
builtin_interfaces/Duration time_moving | ||
builtin_interfaces/Duration electric_power |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,27 @@ | ||
<?xml version="1.0"?> | ||
<package format="2"> | ||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" | ||
schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>spot_msgs</name> | ||
<version>0.0.0</version> | ||
<version>2.0.0</version> | ||
<description>The spot_msgs package</description> | ||
|
||
<maintainer email="[email protected]">Dave Niewinski</maintainer> | ||
<license>BSD</license> | ||
|
||
<buildtool_depend>catkin</buildtool_depend> | ||
<build_depend>geometry_msgs</build_depend> | ||
<build_depend>nav_msgs</build_depend> | ||
<build_depend>sensor_msgs</build_depend> | ||
<build_depend>std_msgs</build_depend> | ||
<exec_depend>geometry_msgs</exec_depend> | ||
<exec_depend>nav_msgs</exec_depend> | ||
<exec_depend>sensor_msgs</exec_depend> | ||
<exec_depend>std_msgs</exec_depend> | ||
<buildtool_depend>ament_cmake</buildtool_depend> | ||
|
||
<build_depend>message_generation</build_depend> | ||
<exec_depend>message_runtime</exec_depend> | ||
<depend>rclcpp</depend> | ||
<depend>std_msgs</depend> | ||
<depend>builtin_interfaces</depend> | ||
<depend>rosidl_default_generators</depend> | ||
<depend>geometry_msgs</depend> | ||
<depend>nav_msgs</depend> | ||
<depend>sensor_msgs</depend> | ||
|
||
<member_of_group>rosidl_interface_packages</member_of_group> | ||
|
||
<export> | ||
<build_type>ament_cmake</build_type> | ||
</export> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,9 @@ | ||
cmake_minimum_required(VERSION 2.8.3) | ||
cmake_minimum_required(VERSION 3.5) | ||
project(spot_viz) | ||
|
||
find_package(catkin REQUIRED COMPONENTS) | ||
find_package(ament_cmake REQUIRED) | ||
|
||
catkin_package() | ||
install(DIRECTORY launch rviz | ||
DESTINATION share/${PROJECT_NAME}) | ||
|
||
include_directories( | ||
${catkin_INCLUDE_DIRS} | ||
) | ||
|
||
install(DIRECTORY rviz DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}) | ||
install(DIRECTORY launch DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}) | ||
ament_package() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,23 @@ | ||
<?xml version="1.0"?> | ||
<package format="2"> | ||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" | ||
schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>spot_viz</name> | ||
<version>0.0.0</version> | ||
<version>2.0.0</version> | ||
<description>The spot_viz package</description> | ||
|
||
<maintainer email="[email protected]">Dave Niewinski</maintainer> | ||
|
||
<license>BSD</license> | ||
|
||
<buildtool_depend>catkin</buildtool_depend> | ||
<buildtool_depend>ament_cmake</buildtool_depend> | ||
|
||
<exec_depend>joint_state_publisher</exec_depend> | ||
<exec_depend>joint_state_publisher_gui</exec_depend> | ||
<exec_depend>rviz</exec_depend> | ||
|
||
<export> | ||
<build_type>ament_cmake</build_type> | ||
</export> | ||
|
||
</package> |