Skip to content
Open
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: 2 additions & 0 deletions dimos/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ def event_loop():
@pytest.fixture(scope="session", autouse=True)
def _autoconf(request):
"""Run autoconf() before all tests with capture suspended so people see `sudo` commands."""
if os.environ.get("DIMOS_SKIP_AUTOCONF"):
return

capman = request.config.pluginmanager.getplugin("capturemanager")
capman.suspend_global_capture(in_=True)
Expand Down
8 changes: 5 additions & 3 deletions dimos/manipulation/blueprints.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
from dimos.msgs.geometry_msgs import PoseStamped, Quaternion, Transform, Vector3
from dimos.msgs.sensor_msgs import JointState
from dimos.perception.object_scene_registration import object_scene_registration_module
from dimos.robot.foxglove_bridge import foxglove_bridge # TODO: migrate to rerun
from dimos.utils.data import get_data
from dimos.visualization.rerun.bridge import rerun_bridge

# =============================================================================
# Pose Helpers
Expand Down Expand Up @@ -423,14 +423,16 @@ def _make_piper_config(
base_transform=_XARM_PERCEPTION_CAMERA_TRANSFORM,
),
object_scene_registration_module(target_frame="world"),
foxglove_bridge(), # TODO: migrate to rerun
rerun_bridge(
min_interval_sec=0.5, # 2 Hz cap for Image/PointCloud2 streams to keep Rerun stable.
),
)
.transports(
{
("joint_state", JointState): LCMTransport("/coordinator/joint_state", JointState),
}
)
.global_config(viewer="foxglove")
.global_config(viewer="rerun")
)


Expand Down
5 changes: 5 additions & 0 deletions dimos/manipulation/bt/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"""Internal behavior-tree orchestration for manipulation."""

from dimos.manipulation.bt.trees import RetryOnFailure, build_pick_tree, build_place_tree

__all__ = ["RetryOnFailure", "build_pick_tree", "build_place_tree"]
Loading