fix(coredump-info): set default gdb timeout as 3 seconds

This commit is contained in:
Erhan Kurubas 2023-11-01 19:41:56 +01:00
parent 3515fb4eaa
commit 14241aeb2e

View File

@ -544,7 +544,7 @@ def action_extensions(base_actions: Dict, project_path: str) -> Dict:
gdb_timeout_sec_opt = { gdb_timeout_sec_opt = {
'names': ['--gdb-timeout-sec'], 'names': ['--gdb-timeout-sec'],
'type': INT, 'type': INT,
'default': 1, 'default': 3,
'help': 'Overwrite the default internal delay for gdb responses', 'help': 'Overwrite the default internal delay for gdb responses',
} }
fail_if_openocd_failed = { fail_if_openocd_failed = {