Skip to content

Commit 6ee6532

Browse files
committed
sdwire: add SDWire3Pro class
1 parent 25de77e commit 6ee6532

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import logging
2+
from sdwire.backend.device.usb_device import PortInfo
3+
from sdwire.backend.device.sdwire import SDWire
4+
5+
log = logging.getLogger(__name__)
6+
7+
8+
class SDWire3Pro(SDWire):
9+
10+
def __init__(self, port_info: PortInfo):
11+
super().__init__(port_info, 2)

0 commit comments

Comments
 (0)