add warnings to keypad and rp2pio as well
This commit is contained in:
parent
2a690754e5
commit
8b740373ed
2 changed files with 11 additions and 0 deletions
|
|
@ -17,6 +17,11 @@
|
|||
//| introduction and guide to working with PIO in CircuitPython, see `this
|
||||
//| Learn guide <https://learn.adafruit.com/intro-to-rp2040-pio-with-circuitpython>`_.
|
||||
//|
|
||||
//| .. warning:: Using PIO inputs on Raspberry Pi RP2350 A2 stepping has some limitations
|
||||
//| due to a GPIO hardware issue that causes excessive leakage current (~120uA).
|
||||
//| A pin can read as high even when driven or pulled low, if the input signal is high
|
||||
//| impedance or if an attached pull-down resistor is too weak (has too high a value).
|
||||
//| See the warning in `digitalio` for more information.
|
||||
//| """
|
||||
//|
|
||||
|
||||
|
|
|
|||
|
|
@ -70,6 +70,12 @@ const mp_obj_property_t keypad_generic_events_obj = {
|
|||
//| For more information about working with the `keypad` module in CircuitPython,
|
||||
//| see `this Learn guide <https://learn.adafruit.com/key-pad-matrix-scanning-in-circuitpython>`_.
|
||||
//|
|
||||
//| .. warning:: Using pull-downs with `keypad` on Raspberry Pi RP2350 A2 stepping has some limitations
|
||||
//| due to a GPIO hardware issue that causes excessive leakage current (~120uA).
|
||||
//| A pin can read as high even when driven or pulled low, if the input signal is high
|
||||
//| impedance or if an attached pull-down resistor is too weak (has too high a value).
|
||||
//| See the warning in `digitalio` for more information.
|
||||
//|
|
||||
//| .. jinja
|
||||
//| """
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue