Home
last modified time | relevance | path

Searched refs:MICROPY_ERROR_PRINTER (Results 1 – 11 of 11) sorted by relevance

/dports/lang/micropython/micropython-1.17/py/
H A Dwarning.c40 mp_print_str(MICROPY_ERROR_PRINTER, category); in mp_warning()
41 mp_print_str(MICROPY_ERROR_PRINTER, ": "); in mp_warning()
45 mp_vprintf(MICROPY_ERROR_PRINTER, msg, args); in mp_warning()
46 mp_print_str(MICROPY_ERROR_PRINTER, "\n"); in mp_warning()
H A Dmodthread.c205 mp_printf(MICROPY_ERROR_PRINTER, "Unhandled exception in thread started by "); in thread_entry()
206 mp_obj_print_helper(MICROPY_ERROR_PRINTER, args->fun, PRINT_REPR); in thread_entry()
207 mp_printf(MICROPY_ERROR_PRINTER, "\n"); in thread_entry()
208 mp_obj_print_exception(MICROPY_ERROR_PRINTER, MP_OBJ_FROM_PTR(exc)); in thread_entry()
H A Dmpconfig.h701 #ifndef MICROPY_ERROR_PRINTER
702 #define MICROPY_ERROR_PRINTER (&mp_plat_print) macro
/dports/lang/micropython/micropython-1.17/extmod/
H A Dmachine_spi.h37 …mp_print_str(MICROPY_ERROR_PRINTER, "Warning: SPI(-1, ...) is deprecated, use SoftSPI(...) instead…
H A Dmachine_i2c.h36 …mp_print_str(MICROPY_ERROR_PRINTER, "Warning: I2C(-1, ...) is deprecated, use SoftI2C(...) instead…
/dports/lang/micropython/micropython-1.17/ports/windows/
H A Dmpconfigport.h127 #define MICROPY_ERROR_PRINTER (&mp_stderr_print) macro
/dports/lang/micropython/micropython-1.17/ports/unix/
H A Dmpconfigport.h178 #define MICROPY_ERROR_PRINTER (&mp_stderr_print) macro
H A Dmodffi.c309 mp_printf(MICROPY_ERROR_PRINTER, "Uncaught exception in FFI callback\n"); in call_py_func_with_lock()
310 mp_obj_print_exception(MICROPY_ERROR_PRINTER, MP_OBJ_FROM_PTR(nlr.ret_val)); in call_py_func_with_lock()
/dports/lang/micropython/micropython-1.17/ports/stm32/
H A Dtimer.c1611 …mp_printf(MICROPY_ERROR_PRINTER, "uncaught exception in Timer(%u) interrupt handler\n", tim->tim_i… in timer_handle_irq_channel()
1613 …mp_printf(MICROPY_ERROR_PRINTER, "uncaught exception in Timer(%u) channel %u interrupt handler\n",… in timer_handle_irq_channel()
1654 …mp_printf(MICROPY_ERROR_PRINTER, "unhandled interrupt SR=0x%02x (now disabled)\n", (unsigned int)u… in timer_irq_handler()
H A Dextint.c674 …mp_printf(MICROPY_ERROR_PRINTER, "uncaught exception in ExtInt interrupt handler line %u\n", (unsi… in Handle_EXTI_Irq()
H A Dpyb_can.c964 …mp_printf(MICROPY_ERROR_PRINTER, "uncaught exception in CAN(%u) rx interrupt handler\n", self->can… in pyb_can_handle_callback()