summaryrefslogtreecommitdiff
path: root/stmhal/make-stmconst.py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-11-29 14:39:27 +0000
committerDamien George <damien.p.george@gmail.com>2014-11-29 14:39:27 +0000
commit3b603f29ec093b77b6fad72d77becd5375310637 (patch)
treecd895173eeebc93b29f7667614d9f6c9ed900fad /stmhal/make-stmconst.py
parente636279fe07898c5cfd0d33197cdf79f42f76b96 (diff)
Use MP_DEFINE_CONST_DICT macro to define module dicts.
This is just a clean-up of the code. Generated code is exactly the same.
Diffstat (limited to 'stmhal/make-stmconst.py')
-rw-r--r--stmhal/make-stmconst.py13
1 files changed, 2 insertions, 11 deletions
diff --git a/stmhal/make-stmconst.py b/stmhal/make-stmconst.py
index ba428395c..03051c557 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.')