Skip to content
Snippets Groups Projects
Select Git revision
  • 2f5d113fad4ca2b22b084ccaf835c595cd6a7a4e
  • master default protected
2 results

mpconfigport_coverage.h

Blame
    • Paul Sokolovsky's avatar
      2f5d113f
      py/warning: Support categories for warnings. · 2f5d113f
      Paul Sokolovsky authored
      Python defines warnings as belonging to categories, where category is a
      warning type (descending from exception type). This is useful, as e.g.
      allows to disable warnings selectively and provide user-defined warning
      types.  So, implement this in MicroPython, except that categories are
      represented just with strings.  However, enough hooks are left to implement
      categories differently per-port (e.g. as types), without need to patch each
      and every usage.
      2f5d113f
      History
      py/warning: Support categories for warnings.
      Paul Sokolovsky authored
      Python defines warnings as belonging to categories, where category is a
      warning type (descending from exception type). This is useful, as e.g.
      allows to disable warnings selectively and provide user-defined warning
      types.  So, implement this in MicroPython, except that categories are
      represented just with strings.  However, enough hooks are left to implement
      categories differently per-port (e.g. as types), without need to patch each
      and every usage.
    light_sensor.c 1.93 KiB
    #include "epicardium.h"
    
    #include "py/builtin.h"
    #include "py/obj.h"
    #include "py/runtime.h"
    
    static mp_obj_t mp_light_sensor_start()
    {
    	int status = epic_light_sensor_run();
    	if (status == -EBUSY) {
    		mp_raise_msg(
    			&mp_type_RuntimeError, "timer could not be scheduled"
    		);
    	}
    	return mp_const_none;
    }
    static MP_DEFINE_CONST_FUN_OBJ_0(light_sensor_start_obj, mp_light_sensor_start);
    
    static mp_obj_t mp_light_sensor_get_reading()
    {
    	uint16_t last;
    	int status = epic_light_sensor_get(&last);
    	if (status == -ENODATA) {
    		mp_raise_ValueError("sensor not running");
    		return mp_const_none;
    	}
    	return mp_obj_new_int_from_uint(last);
    }
    static MP_DEFINE_CONST_FUN_OBJ_0(
    	light_sensor_get_obj, mp_light_sensor_get_reading
    );
    
    static mp_obj_t mp_light_sensor_stop()
    {
    	int status = epic_light_sensor_stop();
    	if (status == -EBUSY) {
    		mp_raise_msg(
    			&mp_type_RuntimeError, "timer could not be stopped"
    		);
    	}
    	return mp_const_none;
    }
    static MP_DEFINE_CONST_FUN_OBJ_0(light_sensor_stop_obj, mp_light_sensor_stop);
    
    static mp_obj_t mp_light_sensor_read()
    {
    	return mp_obj_new_int_from_uint(epic_light_sensor_read());
    }
    static MP_DEFINE_CONST_FUN_OBJ_0(light_sensor_read_obj, mp_light_sensor_read);
    
    static const mp_rom_map_elem_t light_sensor_module_globals_table[] = {
    	{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_light_sensor) },
    	{ MP_ROM_QSTR(MP_QSTR_start), MP_ROM_PTR(&light_sensor_start_obj) },
    	{ MP_ROM_QSTR(MP_QSTR_stop), MP_ROM_PTR(&light_sensor_stop_obj) },
    	{ MP_ROM_QSTR(MP_QSTR_get_reading), MP_ROM_PTR(&light_sensor_get_obj) },
    	{ MP_ROM_QSTR(MP_QSTR_read), MP_ROM_PTR(&light_sensor_read_obj) },
    };
    static MP_DEFINE_CONST_DICT(
    	light_sensor_module_globals, light_sensor_module_globals_table
    );
    
    const mp_obj_module_t light_sensor_module = {
    	.base    = { &mp_type_module },
    	.globals = (mp_obj_dict_t *)&light_sensor_module_globals,
    };
    
    /* clang-format off */
    MP_REGISTER_MODULE(MP_QSTR_light_sensor, light_sensor_module, MODULE_LIGHT_SENSOR_ENABLED);