Skip to content

Commit a165bdf

Browse files
DavePutzdhalbert
authored andcommitted
Make countio object long-lived
1 parent 0957c15 commit a165bdf

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
@@ -53,7 +53,7 @@ STATIC mp_obj_t countio_counter_make_new(const mp_obj_type_t *type, size_t n_arg
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);
5555

56-
countio_counter_obj_t *self = m_new_obj(countio_counter_obj_t);
56+
countio_counter_obj_t *self = m_new_ll_obj(countio_counter_obj_t);
5757
self->base.type = &countio_counter_type;
5858

5959
common_hal_countio_counter_construct(self, pin, edge, pull);

0 commit comments

Comments
 (0)