Skip to content

Commit 599836c

Browse files
committed
usbd: Add USB device drivers implemented in Python.
Rely on support implemented in the machine.USBD() object on the MicroPython side, providing a thin wrapper around TinyUSB "application" device class driver. Signed-off-by: Angus Gratton <angus@redyak.com.au>
1 parent 2242465 commit 599836c

File tree

4 files changed

+885
-0
lines changed

4 files changed

+885
-0
lines changed

micropython/usbd/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
from .device import get_usbdevice, USBInterface
2+
from .hid import HIDInterface, MouseInterface
3+
from .midi import DummyAudioInterface, MIDIInterface, MidiUSB
4+
from . import utils

0 commit comments

Comments
 (0)