Skip to content

Commit a3a2561

Browse files
update doc
1 parent fc4cf63 commit a3a2561

6 files changed

Lines changed: 10 additions & 7 deletions

File tree

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@ build/
77
.catkin_tools
88
abseil-cpp
99

10-
**__pycache__**
10+
**__pycache__**
11+
12+
**temp**

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Recommend to use the following script if you haven't installed ROS yet:
5959
wget http://fishros.com/install -O fishros && . fishros
6060
```
6161

62-
Simple installation script:
62+
Super simple installation! Just run:
6363

6464
```shell
6565
bash ./install.sh

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
sudo apt install -y ros-noetic-rviz-imu-plugin ros-noetic-move-base ros-noetic-navfn tmux python3-catkin-tools python3-wstool python3-rosdep ninja-build stow ffmpeg lua5.2 liblua5.2-dev libceres-dev ros-noetic-ros-control ros-noetic-navigation ros-noetic-jsk-rviz-plugins htop ros-noetic-velodyne-description ros-noetic-flir-camera-description ros-noetic-lms1xx ros-noetic-pointgrey-camera-description ros-noetic-sick-tim ros-noetic-interactive-marker-twist-server ros-noetic-diff-drive-controller ros-noetic-joint-state-controller ros-noetic-joy ros-noetic-robot-localization ros-noetic-teleop-twist-joy ros-noetic-topic-tools ros-noetic-twist-mux xclip
22

33
sudo apt-get remove -y ros-${ROS_DISTRO}-abseil-cpp
4-
python -m pip install Pillow markupsafe==2.0.1 jinja2 ipdb scipy casadi
4+
python3 -m pip install Pillow markupsafe==2.0.1 jinja2 ipdb scipy casadi
55

66
git clone https://github.com/osrf/gazebo_models.git ~/.gazebo/models
77

src/final_fsm/launch/fsm.launch

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
<include file="$(find final_fsm)/launch/explore.launch" />
2828

2929
<!-- Launch the state machine -->
30-
<node ns="final_fsm" pkg="final_fsm" type="state_machine_node.py" name="state_machine_node" output="screen" />
30+
<node ns="final_fsm" pkg="final_fsm" type="state_machine_node.py" name="state_machine_node" output="screen" respawn="true"/>
31+
3132

3233

3334
</launch>

src/final_fsm/src/states.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def __init__(self, robot):
116116
self.process = None
117117
self.curr_phase = 0
118118
self.sent_num_box_pose = False
119-
self.gcostmap_client = DynamicReconfigureClient("/move_base/global_costmap/", timeout=30)
119+
self.gcostmap_client = DynamicReconfigureClient("/move_base/global_costmap/", timeout=60)
120120

121121
def init(self, arg):
122122
self.robot.pub_explore.publish(True)
@@ -159,7 +159,7 @@ def terminate(self):
159159
class Task3Tracking(State):
160160
def __init__(self, robot):
161161
super().__init__(robot)
162-
self.gcostmap_client = DynamicReconfigureClient("/move_base/global_costmap/", timeout=30)
162+
self.gcostmap_client = DynamicReconfigureClient("/move_base/global_costmap/", timeout=60)
163163
def init(self, goal_pose):
164164
self.robot.pub_goal.publish(goal_pose)
165165
self.gcostmap_client.update_configuration(

src/final_pnc/temp/curr_params_log.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"time": "2025-04-04 19:55:55",
2+
"time": "2025-04-04 20:02:35",
33
"method": "mpc",
44
"map_frame": "map",
55
"ref_path_topic": "/move_base/TrajectoryPlannerROS/global_plan",

0 commit comments

Comments
 (0)