Skip to content

Commit afc79c2

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.
1 parent 7128d42 commit afc79c2

File tree

4 files changed

+885
-0
lines changed

4 files changed

+885
-0
lines changed

micropython/usbd/__init__.py

+4
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)