Skip to content

Commit cec1abf

Browse files
committed
Update machine_encoder.c
1 parent a61d5b5 commit cec1abf

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

ports/esp32/machine_encoder.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -364,8 +364,10 @@ STATIC mp_obj_t machine_PCNT_irq(mp_uint_t n_pos_args, const mp_obj_t *pos_args,
364364
self->handler_zero = handler;
365365
pcnt_event_enable(self->unit, EVT_ZERO);
366366
}
367+
/*
367368
check_esp_err(pcnt_counter_clear(self->unit));
368369
self->counter = 0;
370+
*/
369371
}
370372
return mp_const_none;
371373
}
@@ -574,6 +576,7 @@ STATIC void machine_Counter_print(const mp_print_t *print, mp_obj_t self_obj, mp
574576
// Register class methods
575577
#define COMMON_METHODS \
576578
{ MP_ROM_QSTR(MP_QSTR_deinit), MP_ROM_PTR(&machine_PCNT_deinit_obj) }, \
579+
{ MP_ROM_QSTR(MP_QSTR___del__), MP_ROM_PTR(&machine_PCNT_deinit_obj) }, \
577580
{ MP_ROM_QSTR(MP_QSTR_value), MP_ROM_PTR(&machine_PCNT_count_obj) }, \
578581
{ MP_ROM_QSTR(MP_QSTR_get_value), MP_ROM_PTR(&machine_PCNT_get_count_obj) }, \
579582
{ MP_ROM_QSTR(MP_QSTR_filter_ns), MP_ROM_PTR(&machine_PCNT_filter_obj) }, \

0 commit comments

Comments
 (0)