Skip to content

Commit

Permalink
Merge branch 'fix/fatfsgen_construct_v5.1' into 'release/v5.1'
Browse files Browse the repository at this point in the history
fix(tools): Fix fatfsgen construct dependency (v5.1)

See merge request espressif/esp-idf!27655
  • Loading branch information
dobairoland committed Dec 6, 2023
2 parents 46d52c8 + ccc75dd commit ca5c8de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion components/fatfs/fatfsparse.py
Expand Up @@ -57,7 +57,7 @@ def traverse_folder_tree(directory_bytes_: bytes,
try:
obj_: dict = Entry.ENTRY_FORMAT_SHORT_NAME.parse(
directory_bytes_[obj_address_: obj_address_ + FATDefaults.ENTRY_SIZE])
except (construct.core.ConstError, UnicodeDecodeError):
except (construct.core.ConstError, UnicodeDecodeError, construct.core.StringError):
args.long_name_support = True
continue

Expand Down
1 change: 1 addition & 0 deletions tools/requirements/requirements.core.txt
Expand Up @@ -16,6 +16,7 @@ esp-idf-kconfig
esp-idf-monitor
esp-idf-size
esp-idf-panic-decoder
construct

# gdb extensions dependencies
freertos_gdb

0 comments on commit ca5c8de

Please sign in to comment.