circuitpython/ports/raspberrypi/bindings/rp2pio
Jeff Epler bd01d31542 rp2pio: Add pins_are_sequential
This can be used where the standard API calls for a list of pins, to check that they satisfy the requirements of the rp2pio state machine, e.g.,
```python
    def __init__(self, pin_a, pin_b):
        if not rp2pio.pins_are_sequential([pin_a, pin_b]):
            raise ValueError("Pins must be sequential")
```
2021-03-04 11:26:33 -06:00
..
__init__.c rp2pio: Add pins_are_sequential 2021-03-04 11:26:33 -06:00
__init__.h rp2pio: Add pins_are_sequential 2021-03-04 11:26:33 -06:00
StateMachine.c StateMachine: Add pull up/down for inputs 2021-03-04 11:26:29 -06:00
StateMachine.h StateMachine: Add pull up/down for inputs 2021-03-04 11:26:29 -06:00