diff options
Diffstat (limited to 'stm/led.c')
-rw-r--r-- | stm/led.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -156,7 +156,7 @@ typedef struct _pyb_led_obj_t { uint led_id; } pyb_led_obj_t; -void led_obj_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t self_in) { +void led_obj_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t self_in, mp_print_kind_t kind) { pyb_led_obj_t *self = self_in; print(env, "<LED %lu>", self->led_id); } |