You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -101,10 +101,11 @@ If you have a special requirement, ``usbd_app_driver_get_cb()`` can be used to w
101
101
Host Stack
102
102
----------
103
103
104
-
- Human Interface Device (HID): Keyboard, Mouse, Generic
105
-
- Mass Storage Class (MSC)
106
104
- Communication Device Class: CDC-ACM
107
105
- Vendor serial over USB: FTDI, CP210x, CH34x, PL2303
106
+
- Human Interface Device (HID): Keyboard, Mouse, Generic
107
+
- Mass Storage Class (MSC)
108
+
- Musical Instrument Digital Interface (MIDI)
108
109
- Hub with multiple-level support
109
110
110
111
Similar to the Device Stack, if you have a special requirement, ``usbh_app_driver_get_cb()`` can be used to write your own class driver without modifying the stack.
Copy file name to clipboardExpand all lines: docs/getting_started.rst
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,10 @@ Get the Code
34
34
$ python tools/get_deps.py -b stm32h743eval # or python tools/get_deps.py stm32h7
35
35
36
36
.. note::
37
-
For rp2040 `pico-sdk <https://github.com/raspberrypi/pico-sdk>`_ or `esp-idf <https://github.com/espressif/esp-idf>`_ for Espressif targets are required; install them per vendor instructions.
37
+
Some MCU families require additional SDKs, please follow their instructions to install and set it up
* **Espressif (esp32)**: Requires `esp-idf <https://github.com/espressif/esp-idf>`_. Only a few examples support the ESP-IDF build system. Look for ones with `src/CMakeLists.txt` that contain `idf_component_register()`, such as `cdc_msc_freertos`.
0 commit comments