Skip to content

Commit

Permalink
Merge branch 'bugfix/fix_idf_monitor_parsing_pc_with_wrong_rom_out_v5…
Browse files Browse the repository at this point in the history
….1' into 'release/v5.1'

bugfix: fix idf passing wrong chip revision to idf_monitor  (backport v5.1)

See merge request espressif/esp-idf!24756
  • Loading branch information
dobairoland committed Jul 13, 2023
2 parents cfa70ab + 73e380c commit 04b0929
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/idf_py_actions/serial_ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def monitor(action: str, ctx: click.core.Context, args: PropertyDict, print_filt

target_arch_riscv = get_sdkconfig_value(project_desc['config_file'], 'CONFIG_IDF_TARGET_ARCH_RISCV')
monitor_args += ['--target', project_desc['target']]
revision = project_desc.get('rev')
revision = project_desc.get('min_rev')
if revision:
monitor_args += ['--revision', revision]

Expand Down

0 comments on commit 04b0929

Please sign in to comment.