summaryrefslogtreecommitdiff
path: root/stmhal/modos.c
diff options
context:
space:
mode:
Diffstat (limited to 'stmhal/modos.c')
-rw-r--r--stmhal/modos.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/stmhal/modos.c b/stmhal/modos.c
index 6103b1b4f..f16062752 100644
--- a/stmhal/modos.c
+++ b/stmhal/modos.c
@@ -162,16 +162,19 @@ STATIC const mp_map_elem_t os_module_globals_table[] = {
{ MP_OBJ_NEW_QSTR(MP_QSTR_urandom), (mp_obj_t)&os_urandom_obj },
};
-STATIC const mp_map_t os_module_globals = {
- .all_keys_are_qstrs = 1,
- .table_is_fixed_array = 1,
- .used = sizeof(os_module_globals_table) / sizeof(mp_map_elem_t),
- .alloc = sizeof(os_module_globals_table) / sizeof(mp_map_elem_t),
- .table = (mp_map_elem_t*)os_module_globals_table,
+STATIC const mp_obj_dict_t os_module_globals = {
+ .base = {&mp_type_dict},
+ .map = {
+ .all_keys_are_qstrs = 1,
+ .table_is_fixed_array = 1,
+ .used = sizeof(os_module_globals_table) / sizeof(mp_map_elem_t),
+ .alloc = sizeof(os_module_globals_table) / sizeof(mp_map_elem_t),
+ .table = (mp_map_elem_t*)os_module_globals_table,
+ },
};
const mp_obj_module_t os_module = {
.base = { &mp_type_module },
.name = MP_QSTR_os,
- .globals = (mp_map_t*)&os_module_globals,
+ .globals = (mp_obj_dict_t*)&os_module_globals,
};