Tools: Add --no-reset option for IDF Monitor in order to avoid resetting the chip target upon connection

Closes https://github.com/espressif/esp-idf/issues/8889

Closes IDFGH-7189, IDFGH-7301, IDFGH-5963

Closes https://github.com/espressif/esp-idf/issues/7651

Merges https://github.com/espressif/esp-idf/pull/8788
This commit is contained in:
Martin Gaňo
2022-05-10 14:19:37 +02:00
parent 9266a7c52e
commit c02c0cc9b7
4 changed files with 14 additions and 5 deletions

View File

@@ -18,9 +18,8 @@ def get_parser(): # type: () -> argparse.ArgumentParser
)
parser.add_argument(
'--no-reset', '-R',
'--no-reset',
help='Do not reset the chip on monitor startup',
default=False,
action='store_true'
)