mirror of
https://github.com/espressif/esp-idf
synced 2025-04-06 06:40:11 -04:00
Merge branch 'set_gdb_remotetimeout_v5.1' into 'release/v5.1'
tools(gdbinit): set remote timeout for the gdb connection (v5.1) See merge request espressif/esp-idf!30806
This commit is contained in:
commit
ca9c86da77
@ -11,16 +11,25 @@ import threading
|
|||||||
import time
|
import time
|
||||||
from textwrap import indent
|
from textwrap import indent
|
||||||
from threading import Thread
|
from threading import Thread
|
||||||
from typing import Any, Dict, List, Optional
|
from typing import Any
|
||||||
|
from typing import Dict
|
||||||
|
from typing import List
|
||||||
|
from typing import Optional
|
||||||
|
|
||||||
from click import INT
|
from click import INT
|
||||||
from click.core import Context
|
from click.core import Context
|
||||||
from esp_coredump import CoreDump
|
from esp_coredump import CoreDump
|
||||||
from idf_py_actions.constants import OPENOCD_TAGET_CONFIG, OPENOCD_TAGET_CONFIG_DEFAULT
|
from idf_py_actions.constants import OPENOCD_TAGET_CONFIG
|
||||||
|
from idf_py_actions.constants import OPENOCD_TAGET_CONFIG_DEFAULT
|
||||||
from idf_py_actions.errors import FatalError
|
from idf_py_actions.errors import FatalError
|
||||||
from idf_py_actions.serial_ext import BAUD_RATE, PORT
|
from idf_py_actions.serial_ext import BAUD_RATE
|
||||||
from idf_py_actions.tools import (PropertyDict, ensure_build_directory, generate_hints, get_default_serial_port,
|
from idf_py_actions.serial_ext import PORT
|
||||||
get_sdkconfig_value, yellow_print)
|
from idf_py_actions.tools import ensure_build_directory
|
||||||
|
from idf_py_actions.tools import generate_hints
|
||||||
|
from idf_py_actions.tools import get_default_serial_port
|
||||||
|
from idf_py_actions.tools import get_sdkconfig_value
|
||||||
|
from idf_py_actions.tools import PropertyDict
|
||||||
|
from idf_py_actions.tools import yellow_print
|
||||||
|
|
||||||
PYTHON = sys.executable
|
PYTHON = sys.executable
|
||||||
ESP_ROM_INFO_FILE = 'roms.json'
|
ESP_ROM_INFO_FILE = 'roms.json'
|
||||||
@ -51,6 +60,7 @@ file {app_elf}
|
|||||||
'''
|
'''
|
||||||
GDBINIT_CONNECT = '''
|
GDBINIT_CONNECT = '''
|
||||||
# Connect to the default openocd-esp port and break on app_main()
|
# Connect to the default openocd-esp port and break on app_main()
|
||||||
|
set remotetimeout 10
|
||||||
target remote :3333
|
target remote :3333
|
||||||
monitor reset halt
|
monitor reset halt
|
||||||
flushregs
|
flushregs
|
||||||
|
Loading…
x
Reference in New Issue
Block a user