File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ endif
110
110
CFLAGS += -DCIRCUITPY_DIGITALIO=$(CIRCUITPY_DIGITALIO )
111
111
112
112
ifndef CIRCUITPY_COUNTIO
113
- CIRCUITPY_COUNTIO ? = 1
113
+ CIRCUITPY_COUNTIO = 1
114
114
endif
115
115
CFLAGS += -DCIRCUITPY_COUNTIO=$(CIRCUITPY_COUNTIO )
116
116
Original file line number Diff line number Diff line change 11
11
12
12
//| .. currentmodule:: countio
13
13
//|
14
- //| :class:`Counter` -- Track the count of edge transistions (pulses) on a given pin
14
+ //| :class:`Counter` -- Track the count of falling edge transistions (pulses) on a given pin
15
15
//| ====================================================================================
16
16
//|
17
- //| Counter will keep track of the number of edge transistions (pulses) on a given pin
17
+ //| Counter will keep track of the number of falling edge transistions (pulses) on a given pin
18
18
//|
19
19
//| .. class:: Counter(pin_a)
20
20
//|
21
21
//| Create an Counter object associated with the given pin. It tracks the number of
22
- //| pulses relative when the object is contructed .
22
+ //| falling pulses relative when the object is constructed .
23
23
//|
24
24
//| :param ~microcontroller.Pin pin_a: Pin to read pulses from.
25
25
//|
You can’t perform that action at this time.
0 commit comments