Skip to content

Commit 612abd7

Browse files
committed
feat(hlv_player): enable actual pressure_converter
from `ros_control` for sim testing with actual filtering/cop calculation for walking phase reset.
1 parent 6a28f6f commit 612abd7

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

bitbots_lowlevel/bitbots_ros_control/launch/ros_control.launch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<group>
2727
<include file="$(find-pkg-share system_monitor)/launch/system_monitor.launch"/>
2828
<include file="$(find-pkg-share bitbots_buttons)/launch/buttons.launch"/>
29-
<!--include file="$(find-pkg-share bitbots_ros_control)/launch/pressure_converter.launch"/-->
29+
<!-- <include file="$(find-pkg-share bitbots_ros_control)/launch/pressure_converter.launch"/> -->
3030
</group>
3131

3232
<group if="$(var tts)">

bitbots_simulation/bitbots_robocup_api/launch/bitbots_robocup_api_bridge.launch

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?xml version="1.0"?>
22
<launch>
3+
<arg name="without_pressure_converter" default="false"/>
4+
35
<node pkg="hlvs_player" exec="hlvs_player" output="screen">
46
<param name="devices_file" value="$(find-pkg-share bitbots_robocup_api)/config/devices.json"/>
57
<remap from="camera/image_raw" to="camera/image_proc"/>
@@ -18,8 +20,9 @@
1820
without the actual 'ros_control/pressure_converter' node.
1921
-->
2022
<node pkg="bitbots_robocup_api" exec="foot_pressure_proxy" output="screen">
21-
<param name="without_pressure_converter" value="false"/>
23+
<param name="without_pressure_converter" value="$(var without_pressure_converter)"/>
2224
</node>
2325

26+
<include unless="$(var without_pressure_converter)" file="$(find-pkg-share bitbots_ros_control)/launch/pressure_converter.launch"/>
2427
<include file="$(find-pkg-share bitbots_webots_sim)/launch/imu_filter_sim.launch" />
2528
</launch>

0 commit comments

Comments
 (0)