Skip to content

Commit

Permalink
usbd: Add USB device drivers implemented in Python.
Browse files Browse the repository at this point in the history
Rely on support implemented in the machine.USBD() object on the MicroPython
side, providing a thin wrapper around TinyUSB "application" device class
driver.
  • Loading branch information
projectgus committed Jul 10, 2023
1 parent 7128d42 commit afc79c2
Show file tree
Hide file tree
Showing 4 changed files with 885 additions and 0 deletions.
4 changes: 4 additions & 0 deletions micropython/usbd/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from .device import get_usbdevice, USBInterface
from .hid import HIDInterface, MouseInterface
from .midi import DummyAudioInterface, MIDIInterface, MidiUSB
from . import utils
Loading

0 comments on commit afc79c2

Please # to comment.