Skip to content

Commit

Permalink
fix(cmds): Make clear that flash type is from eFuse and not detection
Browse files Browse the repository at this point in the history
  • Loading branch information
dobairoland committed Feb 5, 2023
1 parent b746aa7 commit caeab98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esptool/cmds.py
Original file line number Diff line number Diff line change
Expand Up @@ -1017,7 +1017,7 @@ def flash_id(esp, args):
flash_type_dict = {0: "quad (4 data lines)", 1: "octal (8 data lines)"}
flash_type_str = flash_type_dict.get(flash_type)
if flash_type_str:
print(f"Flash type: {flash_type_str}")
print(f"Flash type set in eFuse: {flash_type_str}")


def read_flash(esp, args):
Expand Down

0 comments on commit caeab98

Please sign in to comment.