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
110110CFLAGS += -DCIRCUITPY_DIGITALIO=$(CIRCUITPY_DIGITALIO )
111111
112112ifndef CIRCUITPY_COUNTIO
113- CIRCUITPY_COUNTIO ? = 1
113+ CIRCUITPY_COUNTIO = 1
114114endif
115115CFLAGS += -DCIRCUITPY_COUNTIO=$(CIRCUITPY_COUNTIO )
116116
Original file line number Diff line number Diff line change 1111
1212//| .. currentmodule:: countio
1313//|
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
1515//| ====================================================================================
1616//|
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
1818//|
1919//| .. class:: Counter(pin_a)
2020//|
2121//| 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 .
2323//|
2424//| :param ~microcontroller.Pin pin_a: Pin to read pulses from.
2525//|
You can’t perform that action at this time.
0 commit comments