Skip to content

Commit

Permalink
Merge pull request #85 from SmithChart/fast-gpio
Browse files Browse the repository at this point in the history
usb-sd-mux/FAST: Fix GPIO number-to-pin definition
  • Loading branch information
SmithChart authored Nov 4, 2024
2 parents 35624f2 + f67ee94 commit 7ae1535
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions usbsdmux/usbsdmux.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,8 @@ class UsbSdMuxFast(UsbSdMux):
_card_inserted = 0x00
_card_removed = Tca6408.gpio_3

gpio0 = Tca6408.gpio_4
gpio1 = Tca6408.gpio_5
gpio0 = Tca6408.gpio_5
gpio1 = Tca6408.gpio_4

def __init__(self, sg):
self._tca = Tca6408(sg)
Expand Down

0 comments on commit 7ae1535

Please sign in to comment.