Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

Cleanup misc #237

Merged
merged 22 commits into from
Nov 14, 2023
Merged
Show file tree
Hide file tree
Changes from 18 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
13 changes: 0 additions & 13 deletions Jenkinsfile

This file was deleted.

12 changes: 0 additions & 12 deletions bitbots_bringup/.rdmanifest

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Launch these commands in parallel:

```bash
ros2 launch bitbots_utils audio.launch
ros2 launch bitbots_bringup audio.launch
ros2 bag record /audio/audio /audio/audio_info
```

Expand Down
4 changes: 0 additions & 4 deletions bitbots_bringup/launch/game_start.launch

This file was deleted.

4 changes: 2 additions & 2 deletions bitbots_bringup/launch/highlevel.launch
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<arg name="sim" value="$(var sim)"/>
</include>
</group>

<!-- launch localization or fake localization -->
<group if="$(var localization)">
<include file="$(find-pkg-share bitbots_localization)/launch/localization.launch">
Expand Down Expand Up @@ -81,7 +81,7 @@

<!-- launch audio processing -->
<group if="$(var audio)">
<include file="$(find-pkg-share bitbots_utils)/launch/audio.launch">
<include file="$(find-pkg-share bitbots_bringup)/launch/audio.launch">
<arg name="sim" value="$(var sim)" />
</include>
</group>
Expand Down
11 changes: 11 additions & 0 deletions bitbots_bringup/launch/motion.launch
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@
<arg name="walking" default="true" description="start the walking" />
<arg name="torqueless_mode" default="false" description="start without torque, for example for testing the falling detection"/>

<!-- launch the base footprint -->
<node pkg="humanoid_base_footprint" exec="base_footprint" output="screen">
<param name="support_state_topics" value="[walk_support_state, dynamic_kick_support_state]"/>
<param name="use_sim_time" value="$(var sim)"/>
</node>

<!-- launch the odometry -->
<include file="$(find-pkg-share bitbots_odometry)/launch/odometry.launch">
<arg name="sim" value="$(var sim)"/>
</include>

<!-- if not in simulation or visualization, launch ros_control -->
<group unless="$(var sim)">
<group unless="$(var viz)">
Expand Down
8 changes: 6 additions & 2 deletions bitbots_bringup/launch/motion_standalone.launch
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@
<arg name="sim" default="false"/>
<arg name="viz" default="false"/>
<arg name="torqueless_mode" default="false" description="start without torque, for example for testing the falling detection"/>

<include file="$(find-pkg-share bitbots_utils)/launch/base.launch">

<include file="$(find-pkg-share bitbots_utils)/launch/parameter_blackboard.launch">
<arg name="sim" value="$(var sim)"/>
</include>

<include file="$(find-pkg-share bitbots_robot_description)/launch/load_robot_description.launch">
<arg name="sim" value="$(var sim)"/>
</include>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@

from launch import LaunchDescription
from launch.actions import DeclareLaunchArgument, ExecuteProcess, OpaqueFunction
from launch.conditions import IfCondition
from launch.substitutions import EnvironmentVariable, EqualsSubstitution, LaunchConfiguration, NotEqualsSubstitution, PathJoinSubstitution
from launch_ros.actions import Node
from launch.substitutions import EnvironmentVariable, LaunchConfiguration, PathJoinSubstitution


TOPICS_TO_RECORD: List[str] = [
Expand Down Expand Up @@ -47,7 +45,6 @@
'/joint_states',
'/motion_odometry',
'/move_base/current_goal',
'/obstacles_relative',
'/pose_with_covariance',
'/robot_state',
'/robots_relative',
Expand Down
10 changes: 0 additions & 10 deletions bitbots_bringup/launch/rviz_multirobot.launch

This file was deleted.

9 changes: 7 additions & 2 deletions bitbots_bringup/launch/teamplayer.launch
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,16 @@
<arg name="vision" default="true" description="Whether the vision system should be started" />
<arg name="world_model" default="true" description="Whether the world model should be started"/>

<!-- load the robot description -->
<include file="$(find-pkg-share bitbots_utils)/launch/base.launch">
<!-- load the global parameters -->
<include file="$(find-pkg-share bitbots_utils)/launch/parameter_blackboard.launch">
<arg name="sim" value="$(var sim)" />
</include>

<!-- load the robot description -->
<include file="$(find-pkg-share bitbots_robot_description)/launch/load_robot_description.launch">
<arg name="sim" value="$(var sim)"/>
</include>

<!-- load the motion -->
<group if="$(var motion)">
<include file="$(find-pkg-share bitbots_bringup)/launch/motion.launch">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<arg name="sim" default="false" description="Whether the robot is running in simulation or on real hardware" />

<group if="$(var monitoring)">
<include file="$(find-pkg-share bitbots_utils)/launch/monitoring.launch" />
<include file="$(find-pkg-share bitbots_bringup)/launch/monitoring.launch" />
</group>

<group if="$(var record)">
<include file="$(find-pkg-share bitbots_utils)/launch/rosbag_record.launch.py">
<include file="$(find-pkg-share bitbots_bringup)/launch/rosbag_record.launch.py">
<arg name="sim" value="$(var sim)" />
</include>
</group>
Expand Down
4 changes: 2 additions & 2 deletions bitbots_bringup/launch/vision_standalone.launch
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<arg name="camera" default="true" description="true: launches an image provider to get images from a camera (unless sim:=true)" />
<arg name="debug" default="false" description="true: activates publishing of several debug images" />

<!-- Add base -->
<include file="$(find-pkg-share bitbots_utils)/launch/base.launch">
<!-- Load the global parameters-->
<include file="$(find-pkg-share bitbots_utils)/launch/parameter_blackboard.launch">
<arg name="sim" value="$(var sim)" />
</include>

Expand Down
14 changes: 6 additions & 8 deletions bitbots_bringup/launch/visualization.launch
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,11 @@
<!-- arguments -->
<arg name="behavior" default="true" description="if the behavior should be started" />
<arg name="ipm" default="false" description="if the soccer ipm should be used" />
<arg name="localization" default="false" description="if the localization should be used" />
<arg name="motion" default="true" description="if the motion should be started" />
<arg name="game_controller" default="false" description="if the game controller node should be started" />

<!-- set visualization parameter -->
<!--param name="visualization_active" value="true" /-->

<!-- load the robot description -->
<include file="$(find-pkg-share bitbots_utils)/launch/base.launch" />
<!-- load the global parameters -->
<include file="$(find-pkg-share bitbots_utils)/launch/parameter_blackboard.launch" />

<!-- publish dummy imu -->
<node name="dummy_imu" pkg="bitbots_utils" exec="dummy_imu.py" />
Expand All @@ -25,12 +21,15 @@
<include file="$(find-pkg-share bitbots_bringup)/launch/highlevel.launch">
<arg name="behavior" value="$(var behavior)" />
<arg name="ipm" value="$(var ipm)" />
<arg name="localization" value="$(var localization)" />
<arg name="localization" value="false" />
<arg name="game_controller" value="$(var game_controller)" />
<arg name="vision" value="false" />
<arg name="ipm" value="false" />
</include>

<!-- simulate localization -->
<node pkg="tf2_ros" exec="static_transform_publisher" name="static_map2odom_tf" args="--x -0.0 --y -0.0 --z 0.0 --qx 0.0 --qy 0.0 --qz 0.0 --qw 1.0 --frame-id map --child-frame-id odom" />

<!-- translate joint goals to joint states -->
<node name="motor_goals_viz_helper" pkg="bitbots_utils" exec="motor_goals_viz_helper.py"/>

Expand All @@ -41,5 +40,4 @@
<include file="$(find-pkg-share humanoid_league_team_communication)/launch/team_comm_test_marker.launch">
<arg name="rviz" value="false" />
</include>
<!-- <node name="show_world_model_objects" pkg="bitbots_body_behavior" exec="show_world_model_objects.py" output="screen"/> -->
</launch>
12 changes: 9 additions & 3 deletions bitbots_bringup/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,27 @@

<depend>bitbots_docs</depend>

<exec_depend condition="$IS_ROBOT != True">wolfgang_webots_sim</exec_depend>
<exec_depend>audio_common</exec_depend>
<exec_depend>bitbots_basler_camera</exec_depend>
<exec_depend>bitbots_body_behavior</exec_depend>
<exec_depend>bitbots_dynamic_kick</exec_depend>
<exec_depend>bitbots_dynup</exec_depend>
<exec_depend>bitbots_hcm</exec_depend>
<exec_depend>bitbots_head_mover</exec_depend>
<exec_depend>bitbots_localization</exec_depend>
<exec_depend>bitbots_odometry</exec_depend>
<exec_depend>bitbots_quintic_walk</exec_depend>
<exec_depend>bitbots_robot_description</exec_depend>
<exec_depend>bitbots_ros_control</exec_depend>
<exec_depend>bitbots_utils</exec_depend>
<exec_depend>bitbots_vision</exec_depend>
<exec_depend>robot_state_publisher</exec_depend>
<exec_depend condition="$IS_ROBOT != True">wolfgang_webots_sim</exec_depend>
<exec_depend>humanoid_base_footprint</exec_depend>
<exec_depend>soccer_ipm</exec_depend>
<exec_depend>xacro</exec_depend>
<exec_depend>system_monitor</exec_depend>
<exec_depend>udp_bridge</exec_depend>
<exec_depend>wolfgang_description</exec_depend>
<exec_depend>wolfgang_moveit_config</exec_depend>

<export>
<bitbots_documentation>
Expand Down
15 changes: 0 additions & 15 deletions bitbots_bringup/repair.sh

This file was deleted.

11 changes: 0 additions & 11 deletions bitbots_ceiling_cam/.rdmanifest

This file was deleted.

2 changes: 0 additions & 2 deletions bitbots_ceiling_cam/launch/ceiling_cam.launch
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,11 @@
<remap from="camera_info" to="/ceiling_cam/ceiling_cam_publisher/camera_info"/>
<remap from="image_rect" to="/ceiling_cam/ceiling_cam_publisher/image_color_rect"/>
</composable_node>
<!--
<composable_node pkg="apriltag_ros" plugin="AprilTagNode" name="apriltag">
<remap from="/apriltag/image" to="/ceiling_cam/ceiling_cam_publisher/image_color_rect"/>
<remap from="/apriltag/camera_info" to="/ceiling_cam/ceiling_cam_publisher/camera_info"/>
<param from="$(find-pkg-share bitbots_ceiling_cam)/config/april_tags.yaml"/>
</composable_node>
-->
</node_container>


Expand Down
20 changes: 0 additions & 20 deletions bitbots_convenience_frames/.rdmanifest

This file was deleted.

47 changes: 0 additions & 47 deletions bitbots_convenience_frames/CMakeLists.txt

This file was deleted.

This file was deleted.

Loading