You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
988 B
30 lines
988 B
#include "py/mpconfig.h"
|
|
#include "py/obj.h"
|
|
#include "py/runtime.h"
|
|
#include "mperror.h"
|
|
|
|
|
|
/******************************************************************************/
|
|
// MicroPython bindings
|
|
|
|
STATIC mp_obj_t mod_wipy_heartbeat(size_t n_args, const mp_obj_t *args) {
|
|
if (n_args) {
|
|
mperror_enable_heartbeat (mp_obj_is_true(args[0]));
|
|
return mp_const_none;
|
|
} else {
|
|
return mp_obj_new_bool(mperror_is_heartbeat_enabled());
|
|
}
|
|
}
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(mod_wipy_heartbeat_obj, 0, 1, mod_wipy_heartbeat);
|
|
|
|
STATIC const mp_rom_map_elem_t wipy_module_globals_table[] = {
|
|
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_wipy) },
|
|
{ MP_ROM_QSTR(MP_QSTR_heartbeat), MP_ROM_PTR(&mod_wipy_heartbeat_obj) },
|
|
};
|
|
|
|
STATIC MP_DEFINE_CONST_DICT(wipy_module_globals, wipy_module_globals_table);
|
|
|
|
const mp_obj_module_t wipy_module = {
|
|
.base = { &mp_type_module },
|
|
.globals = (mp_obj_dict_t*)&wipy_module_globals,
|
|
};
|
|
|