mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
nvs_util: Fix multipage blob data format generate
This commit is contained in:
parent
4d50427e87
commit
7c1360b10a
@ -285,7 +285,7 @@ class Page(object):
|
||||
elif encoding in ["hex2bin", "binary", "base64"]:
|
||||
entry_struct[1] = Page.BLOB
|
||||
|
||||
if version == Page.VERSION2 and encoding == "binary" or encoding == "hex2bin" or encoding == "base64":
|
||||
if version == Page.VERSION2 and (encoding in ["hex2bin", "binary", "base64"]):
|
||||
entry_struct = self.write_varlen_binary_data(entry_struct,ns_index,key,data,\
|
||||
datalen,total_entry_count, nvs_obj)
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user