Skip to content
Snippets Groups Projects
Commit 549d586b authored by José Enrique Domínguez Vidal's avatar José Enrique Domínguez Vidal
Browse files

Movement timeout reduced from 6000 to 600 seconds

parent 05be610d
No related branches found
No related tags found
No related merge requests found
...@@ -51,7 +51,7 @@ gen.add("rate_hz", double_t, 0, ...@@ -51,7 +51,7 @@ gen.add("rate_hz", double_t, 0,
move_base_action.add("mb_max_retries",int_t, 0, "Maximum number of retries for the action start", 1, 1, 10) move_base_action.add("mb_max_retries",int_t, 0, "Maximum number of retries for the action start", 1, 1, 10)
move_base_action.add("mb_feedback_watchdog_time_s",double_t,0, "Maximum time between feedback messages", 600, 0.01, 600) move_base_action.add("mb_feedback_watchdog_time_s",double_t,0, "Maximum time between feedback messages", 600, 0.01, 600)
move_base_action.add("mb_enable_watchdog",bool_t, 0, "Enable action watchdog", True) move_base_action.add("mb_enable_watchdog",bool_t, 0, "Enable action watchdog", True)
move_base_action.add("mb_timeout_s",double_t, 0, "Maximum time allowed to complete the action", 6000, 0.1, 6000) move_base_action.add("mb_timeout_s",double_t, 0, "Maximum time allowed to complete the action", 600, 0.1, 900)
move_base_action.add("mb_enable_timeout",bool_t, 0, "Enable action timeout", True) move_base_action.add("mb_enable_timeout",bool_t, 0, "Enable action timeout", True)
move_base_action.add("mb_frame_id",str_t, 0, "Reference frame of the position goals","/map") move_base_action.add("mb_frame_id",str_t, 0, "Reference frame of the position goals","/map")
move_base_action.add("mb_enabled", bool_t, 0, "Enable action execution", True) move_base_action.add("mb_enabled", bool_t, 0, "Enable action execution", True)
......
...@@ -3,7 +3,7 @@ rate_hz: 1.0 ...@@ -3,7 +3,7 @@ rate_hz: 1.0
mb_max_retries: 1 mb_max_retries: 1
mb_feedback_watchdog_time_s: 60.0 mb_feedback_watchdog_time_s: 60.0
mb_enable_watchdog: True mb_enable_watchdog: True
mb_timeout_s: 6000.0 mb_timeout_s: 660.0
mb_enable_timeout: True mb_enable_timeout: True
mb_frame_id: "/ana/base_link" mb_frame_id: "/ana/base_link"
mb_enabled: True mb_enabled: True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment