|
| 1 | +# USB Drivers |
| 2 | + |
| 3 | +These packages allow implementing USB functionality on a MicroPython system |
| 4 | +using pure Python code. |
| 5 | + |
| 6 | +Currently only USB device is implemented, not USB host. |
| 7 | + |
| 8 | +## USB Device support |
| 9 | + |
| 10 | +### Support |
| 11 | + |
| 12 | +USB Device support depends on the low-level |
| 13 | +[machine.USBDevice](https://docs.micropython.org/en/latest/library/machine.USBDevice.html) |
| 14 | +class. This class is new and not supported on all ports, so please check the |
| 15 | +documentation for your MicroPython version. It is possible to implement a USB |
| 16 | +device using only the low-level USBDevice class. However, the packages here are |
| 17 | +higher level and easier to use. |
| 18 | + |
| 19 | +For more information about how to install packages, or "freeze" them into a |
| 20 | +firmware image, consult the [MicroPython documentation on "Package |
| 21 | +management"](https://docs.micropython.org/en/latest/reference/packages.html). |
| 22 | + |
| 23 | +### Examples |
| 24 | + |
| 25 | +The [examples/device](examples/device) directory in this repo has a range of |
| 26 | +examples. After installing necessary packages, you can download an example and |
| 27 | +run it with `mpremote run EXAMPLE_FILENAME.py` ([mpremote |
| 28 | +docs](https://docs.micropython.org/en/latest/reference/mpremote.html#mpremote-command-run)). |
| 29 | + |
| 30 | +#### Unexpected serial disconnects |
| 31 | + |
| 32 | +If you normally connect to your MicroPython device over a USB serial port ("USB |
| 33 | +CDC"), then running a USB example will disconnect mpremote when the new USB |
| 34 | +device configuration activates and the serial port has to temporarily |
| 35 | +disconnect. It is likely that mpremote will print an error. The example should |
| 36 | +still start running, if necessary then you can reconnect with mpremote and type |
| 37 | +Ctrl-B to restore the MicroPython REPL and/or Ctrl-C to stop the running |
| 38 | +example. |
| 39 | + |
| 40 | +If you use `mpremote run` again while a different USB device configuration is |
| 41 | +already active, then the USB serial port may disconnect immediately before the |
| 42 | +example runs. This is because mpremote has to soft-reset MicroPython, and when |
| 43 | +the existing USB device is reset then the entire USB port needs to reset. If |
| 44 | +this happens, run the same `mpremote run` command again. |
| 45 | + |
| 46 | +We plan to add features to `mpremote` so that this limitation is less |
| 47 | +disruptive. Other tools that communicate with MicroPython over the serial port |
| 48 | +will encounter similar issues when runtime USB is in use. |
| 49 | + |
| 50 | +### Initialising runtime USB |
| 51 | + |
| 52 | +The overall pattern for enabling USB devices at runtime is: |
| 53 | + |
| 54 | +1. Instantiate the Interface objects for your desired USB device. |
| 55 | +2. Call `usb.device.get()` to get the singleton object for the high-level USB device. |
| 56 | +3. Call `init(...)` to pass the desired interfaces as arguments, plus any custom |
| 57 | + keyword arguments to configure the overall device. |
| 58 | + |
| 59 | +An example, similar to [mouse_example.py](examples/device/mouse_example.py): |
| 60 | + |
| 61 | +```py |
| 62 | + m = usb.device.mouse.MouseInterface() |
| 63 | + usb.device.get().init(m, builtin_driver=True) |
| 64 | +``` |
| 65 | + |
| 66 | +Setting `builtin_driver=True` means that any built-in USB serial port will still |
| 67 | +be available. Otherwise, you may permanently lose access to MicroPython until |
| 68 | +the next time the device resets. |
| 69 | + |
| 70 | +See [Unexpected serial disconnects](#Unexpected-serial-disconnects), above, for |
| 71 | +an explanation of possible errors or disconnects when the runtime USB device |
| 72 | +initialises. |
| 73 | + |
| 74 | +Placing the call to `usb.device.get().init()` into the `boot.py` of the |
| 75 | +MicroPython file system allows the runtime USB device to initialise immediately |
| 76 | +on boot, before any built-in USB. This is a feature (not a bug) and allows you |
| 77 | +full control over the USB device, for example to only enable USB HID and prevent |
| 78 | +REPL access to the system. |
| 79 | + |
| 80 | +However, note that calling this function on boot without `builtin_driver=True` |
| 81 | +will make the MicroPython USB serial interface permanently inaccessible until |
| 82 | +you "safe mode boot" (on supported boards) or completely erase the flash of your |
| 83 | +device. |
| 84 | + |
| 85 | +### Package usb-device |
| 86 | + |
| 87 | +This base package contains the common implementation components for the other |
| 88 | +packages, and can be used to implement new and different USB interface support. |
| 89 | +All of the other `usb-device-<name>` packages depend on this package, and it |
| 90 | +will be automatically installed as needed. |
| 91 | + |
| 92 | +Specicially, this package provides the `usb.device.get()` function for accessing |
| 93 | +the Device singleton object, and the `usb.device.core` module which contains the |
| 94 | +low-level classes and utility functions for implementing new USB interface |
| 95 | +drivers in Python. The best examples of how to use the core classes is the |
| 96 | +source code of the other USB device packages. |
| 97 | + |
| 98 | +### Package usb-device-keyboard |
| 99 | + |
| 100 | +This package provides the `usb.device.keyboard` module. See |
| 101 | +[keyboard_example.py](examples/device/keyboard_example.py) for an example |
| 102 | +program. |
| 103 | + |
| 104 | +### Package usb-device-mouse |
| 105 | + |
| 106 | +This package provides the `usb.device.mouse` module. See |
| 107 | +[mouse_example.py](examples/device/mouse_example.py) for an example program. |
| 108 | + |
| 109 | +### Package usb-device-hid |
| 110 | + |
| 111 | +This package provides the `usb.device.hid` module. USB HID (Human Interface |
| 112 | +Device) class allows creating a wide variety of device types. The most common |
| 113 | +are mouse and keyboard, which have their own packages in micropython-lib. |
| 114 | +However, using the usb-device-hid package directly allows creation of any kind |
| 115 | +of HID device. |
| 116 | + |
| 117 | +See [hid_custom_keypad_example.py](examples/device/hid_custom_keypad_example.py) |
| 118 | +for an example of a Keypad HID device with a custom HID descriptor. |
| 119 | + |
| 120 | +### Package usb-device-cdc |
| 121 | + |
| 122 | +This package provides the `usb.device.cdc` module. USB CDC (Communications |
| 123 | +Device Class) is most commonly used for virtual serial port USB interfaces, and |
| 124 | +that is what is supported here. |
| 125 | + |
| 126 | +The example [cdc_repl_example.py](examples/device/cdc_repl_example.py) |
| 127 | +demonstrates how to add a second USB serial interface and duplicate the |
| 128 | +MicroPython REPL between the two. |
| 129 | + |
| 130 | +### Package usb-device-midi |
| 131 | + |
| 132 | +This package provides the `usb.device.midi` module. This allows implementing |
| 133 | +USB MIDI devices in MicroPython. |
| 134 | + |
| 135 | +The example [midi_example.py](examples/device/midi_example.py) demonstrates how |
| 136 | +to create a simple MIDI device to send MIDI data to and from the USB host. |
0 commit comments