mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-03 20:54:32 +02:00
nvs_util: Add check for key len in input csv file
Closes https://github.com/espressif/esp-idf/issues/3113
This commit is contained in:
@@ -903,6 +903,9 @@ def generate(args, is_encr_enabled=False, encr_key=None):
|
|||||||
print("\nCreating NVS binary with version:", version_set)
|
print("\nCreating NVS binary with version:", version_set)
|
||||||
for row in reader:
|
for row in reader:
|
||||||
try:
|
try:
|
||||||
|
# Check key length
|
||||||
|
if len(row["key"]) > 15:
|
||||||
|
raise InputError("Length of key `%s` should be <= 15 characters." % row["key"])
|
||||||
write_entry(nvs_obj, row["key"], row["type"], row["encoding"], row["value"])
|
write_entry(nvs_obj, row["key"], row["type"], row["encoding"], row["value"])
|
||||||
except InputError as e:
|
except InputError as e:
|
||||||
print(e)
|
print(e)
|
||||||
|
Reference in New Issue
Block a user