diff options
Diffstat (limited to 'stmhal/make-stmconst.py')
-rw-r--r-- | stmhal/make-stmconst.py | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/stmhal/make-stmconst.py b/stmhal/make-stmconst.py index ba428395ce..03051c557e 100644 --- a/stmhal/make-stmconst.py +++ b/stmhal/make-stmconst.py @@ -145,23 +145,14 @@ STATIC const mp_map_elem_t stm_%s_globals_table[] = { print("""}; -STATIC const mp_obj_dict_t stm_%s_globals = { - .base = {&mp_type_dict}, - .map = { - .all_keys_are_qstrs = 1, - .table_is_fixed_array = 1, - .used = sizeof(stm_%s_globals_table) / sizeof(mp_map_elem_t), - .alloc = sizeof(stm_%s_globals_table) / sizeof(mp_map_elem_t), - .table = (mp_map_elem_t*)stm_%s_globals_table, - }, -}; +STATIC MP_DEFINE_CONST_DICT(stm_%s_globals, stm_%s_globals_table); const mp_obj_module_t stm_%s_obj = { .base = { &mp_type_module }, .name = MP_QSTR_%s, .globals = (mp_obj_dict_t*)&stm_%s_globals, }; -""" % (mod_name_lower, mod_name_lower, mod_name_lower, mod_name_lower, mod_name_lower, mod_name_upper, mod_name_lower)) +""" % (mod_name_lower, mod_name_lower, mod_name_lower, mod_name_upper, mod_name_lower)) def main(): cmd_parser = argparse.ArgumentParser(description='Extract ST constants from a C header file.') |