diff options
| author | Damien George | 2014-03-22 15:06:29 +0000 |
|---|---|---|
| committer | Damien George | 2014-03-22 15:06:29 +0000 |
| commit | d311655655b72fcb898a8d35bfe926a9adb1bebd (patch) | |
| tree | 118d15c618a96fe414a1a8c3bb6b3584fed03975 /stmhal/timemodule.c | |
| parent | ad7b84a7b9a1beb960d216995dd608b794440183 (diff) | |
stmhal: Add time module with sleep function.
Diffstat (limited to 'stmhal/timemodule.c')
| -rw-r--r-- | stmhal/timemodule.c | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/stmhal/timemodule.c b/stmhal/timemodule.c new file mode 100644 index 000000000..b2dac6a54 --- /dev/null +++ b/stmhal/timemodule.c @@ -0,0 +1,44 @@ +#include <stm32f4xx_hal.h> + +#include "nlr.h" +#include "misc.h" +#include "mpconfig.h" +#include "qstr.h" +#include "obj.h" +#include "map.h" +#include "timemodule.h" + +STATIC mp_obj_t time_sleep(mp_obj_t seconds_o) { +#if MICROPY_ENABLE_FLOAT + if (MP_OBJ_IS_INT(seconds_o)) { +#endif + HAL_Delay(1000 * mp_obj_get_int(seconds_o)); +#if MICROPY_ENABLE_FLOAT + } else { + HAL_Delay((uint32_t)(1000 * mp_obj_get_float(seconds_o))); + } +#endif + return mp_const_none; +} + +MP_DEFINE_CONST_FUN_OBJ_1(time_sleep_obj, time_sleep); + +STATIC const mp_map_elem_t time_module_globals_table[] = { + { MP_OBJ_NEW_QSTR(MP_QSTR___name__), MP_OBJ_NEW_QSTR(MP_QSTR_time) }, + + { MP_OBJ_NEW_QSTR(MP_QSTR_sleep), (mp_obj_t)&time_sleep_obj }, +}; + +STATIC const mp_map_t time_module_globals = { + .all_keys_are_qstrs = 1, + .table_is_fixed_array = 1, + .used = sizeof(time_module_globals_table) / sizeof(mp_map_elem_t), + .alloc = sizeof(time_module_globals_table) / sizeof(mp_map_elem_t), + .table = (mp_map_elem_t*)time_module_globals_table, +}; + +const mp_obj_module_t time_module = { + .base = { &mp_type_module }, + .name = MP_QSTR_time, + .globals = (mp_map_t*)&time_module_globals, +}; |
