Skip to content

Commit d365d1b

Browse files
DavePutzdhalbert
authored andcommitted
Update Counter.c
Add a comment as to why the countio object needs to be long-lived.
1 parent a165bdf commit d365d1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared-bindings/countio/Counter.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ STATIC mp_obj_t countio_counter_make_new(const mp_obj_type_t *type, size_t n_arg
5252
const mcu_pin_obj_t *pin = validate_obj_is_free_pin(args[ARG_pin].u_obj);
5353
const countio_edge_t edge = validate_edge(args[ARG_edge].u_obj, MP_QSTR_edge);
5454
const digitalio_pull_t pull = validate_pull(args[ARG_pull].u_obj, MP_QSTR_pull);
55-
55+
// Make long-lived because some implementations use a pointer to the object as interrupt-handler data.
5656
countio_counter_obj_t *self = m_new_ll_obj(countio_counter_obj_t);
5757
self->base.type = &countio_counter_type;
5858

0 commit comments

Comments
 (0)