Skip to content
Snippets Groups Projects
Commit b16c3548 authored by Damien George's avatar Damien George
Browse files

esp8266/machine_pin: Fix memset size for zeroing of pin_irq_is_hard.

Thanks to @robert-hh.
parent ebbaf7ee
No related branches found
No related tags found
No related merge requests found
......@@ -95,7 +95,7 @@ void pin_init0(void) {
ETS_GPIO_INTR_ATTACH(pin_intr_handler_iram, NULL);
// disable all interrupts
memset(&MP_STATE_PORT(pin_irq_handler)[0], 0, 16 * sizeof(mp_obj_t));
memset(pin_irq_is_hard, 0, sizeof(pin_irq_obj));
memset(pin_irq_is_hard, 0, sizeof(pin_irq_is_hard));
for (int p = 0; p < 16; ++p) {
GPIO_REG_WRITE(GPIO_STATUS_W1TC_ADDRESS, 1 << p);
SET_TRIGGER(p, 0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment