File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ working with this board it may be useful to get an overview of the microcontroll
16
16
:maxdepth: 1
17
17
18
18
general.rst
19
+ pcnt.rst
19
20
tutorial/index.rst
20
21
21
22
Installing MicroPython
Original file line number Diff line number Diff line change @@ -108,13 +108,13 @@ STATIC void IRAM_ATTR pcnt_intr_handler(void *arg) {
108
108
}
109
109
if (status_unit & PCNT_EVT_ZERO ) {
110
110
if (self -> counter == 0 ) {
111
- //self->status |= PCNT_EVT_ZERO;
111
+ // self->status |= PCNT_EVT_ZERO;
112
112
mp_sched_schedule (self -> handler_zero , MP_OBJ_FROM_PTR (self ));
113
113
mp_hal_wake_main_task_from_isr ();
114
114
}
115
115
}
116
116
}
117
- //PCNT.int_clr.val = BIT(id); // clear the interrupt
117
+ // PCNT.int_clr.val = BIT(id); // clear the interrupt
118
118
}
119
119
}
120
120
}
You can’t perform that action at this time.
0 commit comments