mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
fix(tools/mfg_gen): Allow encoding u64 and i64
This commit is contained in:
parent
dcb34c5ffa
commit
999de9c864
@ -72,7 +72,7 @@ def verify_keys_exist(values_file_keys, input_config_file):
|
||||
def verify_datatype_encoding(input_config_file):
|
||||
""" Verify datatype and encodings from config file is valid
|
||||
"""
|
||||
valid_encodings = {'string', 'binary', 'hex2bin','u8', 'i8', 'u16', 'u32', 'i32','base64'}
|
||||
valid_encodings = {'string', 'binary', 'hex2bin','u8', 'i8', 'u16', 'u32', 'i32', 'u64', 'i64','base64'}
|
||||
valid_datatypes = {'file','data','namespace'}
|
||||
|
||||
with open(input_config_file,'r') as config_file:
|
||||
|
Loading…
Reference in New Issue
Block a user