feat: Nav2 path planning + obstacle avoidance (Phase 2b) #49
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "sl-perception/nav2-integration"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
jetson/config/nav2_params.yaml— DWB local planner, NavFn global planner, 10Hz local / 5Hz global costmap, robot_radius: 0.15m, max_vel_x: 1.0 m/s. RPLIDAR /scan as ObstacleLayer; RealSense depth/color/points as VoxelLayer.launch/nav2.launch.py— includes nav2_bringup/navigation_launch.py; no AMCL/map_server (RTAB-Map provides /map + map→odom TF + /rtabmap/odom).behavior_trees/navigate_to_pose_with_recovery.xml— BT replan @ 1 Hz, DWB path follow; recovery round-robin: clear costmaps → spin 90° → wait 5s → back up 0.30m (6 retries).Start sequence on Orin
docker compose up saltybot-ros2 # RTAB-Map + sensors first
docker compose up saltybot-nav2 # Nav2 stack
Test plan
Generated with Claude Code
Integrates Nav2 autonomous navigation stack with RTAB-Map SLAM on Orin Nano Super. No AMCL/map_server needed — RTAB-Map provides /map + TF. New files: - jetson/config/nav2_params.yaml DWB controller, NavFn planner, RPLIDAR obstacle layer, RealSense voxel layer; 10Hz local / 5Hz global costmap; robot_radius 0.15m, max_vel 1.0 m/s - jetson/ros2_ws/src/saltybot_bringup/launch/nav2.launch.py wraps nav2_bringup navigation_launch with saltybot params + BT XML - jetson/ros2_ws/src/saltybot_bringup/behavior_trees/ navigate_to_pose_with_recovery.xml BT: replan@1Hz, DWB follow, recovery: clear maps → spin 90° → wait 5s → back up 0.30m Updated: - jetson/docker-compose.yml add saltybot-nav2 service (depends_on: saltybot-ros2) - jetson/ros2_ws/src/saltybot_bringup/setup.py install behavior_trees/*.xml - jetson/ros2_ws/src/saltybot_bringup/package.xml add rtabmap_ros + nav2_bringup - projects/saltybot/SLAM-SETUP-PLAN.md Phase 2b ✅ Done Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>