From b064c1796c2df634d82766f7085a8f00ed0f30da Mon Sep 17 00:00:00 2001 From: sakumisu <1203593632@qq.com> Date: Mon, 19 May 2025 09:23:59 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20cherry-e?= =?UTF-8?q?mbedded/CherryUSB@7e5713ab890f01c7009fa73e0ddf101674551384=20?= =?UTF-8?q?=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .buildinfo | 2 +- _sources/quick_start/demo.rst.txt | 6 +++--- _sources/quick_start/rtthread.rst.txt | 2 +- _static/documentation_options.js | 2 +- api/api_config.html | 6 +++--- api/api_device.html | 6 +++--- api/api_host.html | 6 +++--- api/api_port.html | 6 +++--- class/class_audio.html | 6 +++--- class/class_cdc.html | 6 +++--- class/class_hid.html | 6 +++--- class/class_msc.html | 6 +++--- class/class_video.html | 6 +++--- class/winusb.html | 6 +++--- demo/usbd_audiov1.html | 6 +++--- demo/usbd_audiov2.html | 6 +++--- demo/usbd_cdc_acm.html | 6 +++--- demo/usbd_ecm.html | 6 +++--- demo/usbd_hid.html | 6 +++--- demo/usbd_msc.html | 6 +++--- demo/usbd_rndis.html | 6 +++--- demo/usbd_vendor.html | 6 +++--- demo/usbd_video.html | 6 +++--- demo/usbd_webusb.html | 6 +++--- demo/usbd_winusb.html | 6 +++--- demo/usbh_bluetooth.html | 6 +++--- demo/usbh_hid.html | 6 +++--- demo/usbh_msc.html | 6 +++--- demo/usbh_net.html | 6 +++--- demo/usbh_serial.html | 6 +++--- demo/usbh_vendor.html | 6 +++--- demo/usbh_wifi.html | 6 +++--- genindex.html | 6 +++--- index.html | 6 +++--- objects.inv | Bin 1284 -> 1284 bytes opensource.html | 6 +++--- q&a.html | 6 +++--- quick_start/demo.html | 12 ++++++------ quick_start/esp.html | 6 +++--- quick_start/rtthread.html | 8 ++++---- quick_start/start.html | 6 +++--- quick_start/transplant.html | 6 +++--- search.html | 6 +++--- searchindex.js | 2 +- share.html | 6 +++--- show/index.html | 6 +++--- support/index.html | 6 +++--- tools/index.html | 6 +++--- usb/usb2.0_basic.html | 6 +++--- usb/usb3.0_basic.html | 6 +++--- usb/usb_desc.html | 6 +++--- usb/usb_enum.html | 6 +++--- usb/usb_ext.html | 6 +++--- usb/usb_request.html | 6 +++--- usbip/cdns2.html | 6 +++--- usbip/cdns3.html | 6 +++--- usbip/chipidea.html | 6 +++--- usbip/dwc2.html | 6 +++--- usbip/dwc3.html | 6 +++--- usbip/ehci.html | 6 +++--- usbip/fotg210.html | 6 +++--- usbip/musb.html | 6 +++--- usbip/ohci.html | 6 +++--- usbip/xhci.html | 6 +++--- version.html | 6 +++--- 65 files changed, 188 insertions(+), 188 deletions(-) diff --git a/.buildinfo b/.buildinfo index e2a10b2a..fb9f7de1 100644 --- a/.buildinfo +++ b/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 27855cdef554bba44e957239c456305e +config: a58f0b910f8b74cc265d62acf79d9efc tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/_sources/quick_start/demo.rst.txt b/_sources/quick_start/demo.rst.txt index 57ebd02f..a341211a 100644 --- a/_sources/quick_start/demo.rst.txt +++ b/_sources/quick_start/demo.rst.txt @@ -154,7 +154,7 @@ USB Device 移植要点 #define CONFIG_USB_DWC2_TX4_FIFO_SIZE (64 / 4) #define CONFIG_USB_DWC2_TX5_FIFO_SIZE (64 / 4) -- 如果使用 fsdev ip,(V1.4.4 开始需要增加 **fsdev/usb_glue_st.c**) 在 `usb_config.h` 中实现以下宏: +- 如果使用 fsdev ip,(V1.5.0 开始需要增加 **fsdev/usb_glue_st.c**) 在 `usb_config.h` 中实现以下宏: .. code-block:: C @@ -166,7 +166,7 @@ USB Device 移植要点 .. figure:: img/stm32_10.png .. figure:: img/stm32_11.png -.. note :: 以下两个步骤从 V1.4.4 开始不再需要,**fsdev/usb_glue_st.c**, **dwc2/usb_glue_st.c** 文件中已经实现 +.. note :: 以下两个步骤从 V1.5.0 开始不再需要,**fsdev/usb_glue_st.c**, **dwc2/usb_glue_st.c** 文件中已经实现 - 拷贝 **xxx_msp.c** 中的 **HAL_PCD_MspInit** 函数中的内容到 **usb_dc_low_level_init** 函数中,屏蔽 st 生成的 usb 初始化 @@ -208,7 +208,7 @@ USB Host 移植要点 #define CONFIG_USB_DWC2_PTX_FIFO_SIZE (1024 / 4) #define CONFIG_USB_DWC2_RX_FIFO_SIZE ((1012 - CONFIG_USB_DWC2_NPTX_FIFO_SIZE - CONFIG_USB_DWC2_PTX_FIFO_SIZE) / 4) -.. note :: 以下两个步骤从 V1.4.4 开始不再需要,**fsdev/usb_glue_st.c**, **dwc2/usb_glue_st.c** 文件中已经实现 +.. note :: 以下两个步骤从 V1.5.0 开始不再需要,**fsdev/usb_glue_st.c**, **dwc2/usb_glue_st.c** 文件中已经实现 - 拷贝 **xxx_msp.c** 中的 `HAL_HCD_MspInit` 函数中的内容到 `usb_hc_low_level_init` 函数中,屏蔽 st 生成的 usb 初始化 - 在中断函数中调用 `USBH_IRQHandler`,并传入 `busid` diff --git a/_sources/quick_start/rtthread.rst.txt b/_sources/quick_start/rtthread.rst.txt index 37ffd839..af1fecc6 100644 --- a/_sources/quick_start/rtthread.rst.txt +++ b/_sources/quick_start/rtthread.rst.txt @@ -140,7 +140,7 @@ .. figure:: img/stm32_init2.png -.. note :: 下面步骤从 V1.4.4 开始不再需要,**fsdev/usb_glue_st.c**, **dwc2/usb_glue_st.c** 文件中已经实现 +.. note :: 下面步骤从 V1.5.0 开始不再需要,**fsdev/usb_glue_st.c**, **dwc2/usb_glue_st.c** 文件中已经实现 - 将 `stm32xxxx_hal_msp.c` 中的 `HAL_PCD_MspInit` 或者是 `HAL_HCD_MspInit` 中的内容复制到 `usb_dc_low_level_init` 和 `usb_hc_low_level_init` 函数中,举例如下: diff --git a/_static/documentation_options.js b/_static/documentation_options.js index 4229cbf0..f476d73b 100644 --- a/_static/documentation_options.js +++ b/_static/documentation_options.js @@ -1,5 +1,5 @@ const DOCUMENTATION_OPTIONS = { - VERSION: '1.4.3', + VERSION: '1.5.0', LANGUAGE: 'en', COLLAPSE_INDEX: false, BUILDER: 'html', diff --git a/api/api_config.html b/api/api_config.html index 58807e13..0f6883c4 100644 --- a/api/api_config.html +++ b/api/api_config.html @@ -6,14 +6,14 @@ - USB CONFIG 说明 — CherryUSB 1.4.3 documentation + USB CONFIG 说明 — CherryUSB 1.5.0 documentation - + @@ -340,7 +340,7 @@ usbd_msc_sector_read 和 usbd_msc_sector_write 就会在线程中执行。


-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/api/api_device.html b/api/api_device.html index 4c1ffbd5..429fa328 100644 --- a/api/api_device.html +++ b/api/api_device.html @@ -6,14 +6,14 @@ - 设备协议栈 — CherryUSB 1.4.3 documentation + 设备协议栈 — CherryUSB 1.5.0 documentation - + @@ -680,7 +680,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/api/api_host.html b/api/api_host.html index 49928b99..2c7e7451 100644 --- a/api/api_host.html +++ b/api/api_host.html @@ -6,14 +6,14 @@ - 主机协议栈 — CherryUSB 1.4.3 documentation + 主机协议栈 — CherryUSB 1.5.0 documentation - + @@ -346,7 +346,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/api/api_port.html b/api/api_port.html index 7ea44875..e125fb61 100644 --- a/api/api_port.html +++ b/api/api_port.html @@ -6,14 +6,14 @@ - 主从驱动 — CherryUSB 1.4.3 documentation + 主从驱动 — CherryUSB 1.5.0 documentation - + @@ -444,7 +444,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/class/class_audio.html b/class/class_audio.html index 758738d7..359a322a 100644 --- a/class/class_audio.html +++ b/class/class_audio.html @@ -6,14 +6,14 @@ - UAC — CherryUSB 1.4.3 documentation + UAC — CherryUSB 1.5.0 documentation - + @@ -172,7 +172,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/class/class_cdc.html b/class/class_cdc.html index aed7eaaa..d3e2ee53 100644 --- a/class/class_cdc.html +++ b/class/class_cdc.html @@ -6,14 +6,14 @@ - CDC — CherryUSB 1.4.3 documentation + CDC — CherryUSB 1.5.0 documentation - + @@ -172,7 +172,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/class/class_hid.html b/class/class_hid.html index 6d09d001..114b179a 100644 --- a/class/class_hid.html +++ b/class/class_hid.html @@ -6,14 +6,14 @@ - HID — CherryUSB 1.4.3 documentation + HID — CherryUSB 1.5.0 documentation - + @@ -172,7 +172,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/class/class_msc.html b/class/class_msc.html index 17de2575..57ba0e46 100644 --- a/class/class_msc.html +++ b/class/class_msc.html @@ -6,14 +6,14 @@ - MSC — CherryUSB 1.4.3 documentation + MSC — CherryUSB 1.5.0 documentation - + @@ -172,7 +172,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/class/class_video.html b/class/class_video.html index 0e3573b1..fbb3c1f5 100644 --- a/class/class_video.html +++ b/class/class_video.html @@ -6,14 +6,14 @@ - UVC — CherryUSB 1.4.3 documentation + UVC — CherryUSB 1.5.0 documentation - + @@ -172,7 +172,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/class/winusb.html b/class/winusb.html index 38152998..2acea5f3 100644 --- a/class/winusb.html +++ b/class/winusb.html @@ -6,14 +6,14 @@ - WINUSB — CherryUSB 1.4.3 documentation + WINUSB — CherryUSB 1.5.0 documentation - + @@ -171,7 +171,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/demo/usbd_audiov1.html b/demo/usbd_audiov1.html index 0625ed74..036d1325 100644 --- a/demo/usbd_audiov1.html +++ b/demo/usbd_audiov1.html @@ -6,14 +6,14 @@ - usbd_audiov1 — CherryUSB 1.4.3 documentation + usbd_audiov1 — CherryUSB 1.5.0 documentation - + @@ -171,7 +171,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/demo/usbd_audiov2.html b/demo/usbd_audiov2.html index 8a193af9..bc253e31 100644 --- a/demo/usbd_audiov2.html +++ b/demo/usbd_audiov2.html @@ -6,14 +6,14 @@ - usbd_audiov2 — CherryUSB 1.4.3 documentation + usbd_audiov2 — CherryUSB 1.5.0 documentation - + @@ -171,7 +171,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/demo/usbd_cdc_acm.html b/demo/usbd_cdc_acm.html index 00a7ecc8..8e3418a4 100644 --- a/demo/usbd_cdc_acm.html +++ b/demo/usbd_cdc_acm.html @@ -6,14 +6,14 @@ - usbd_cdc_acm — CherryUSB 1.4.3 documentation + usbd_cdc_acm — CherryUSB 1.5.0 documentation - + @@ -270,7 +270,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/demo/usbd_ecm.html b/demo/usbd_ecm.html index 9ab30344..0e4dcb88 100644 --- a/demo/usbd_ecm.html +++ b/demo/usbd_ecm.html @@ -6,14 +6,14 @@ - usbd_cdc_ecm — CherryUSB 1.4.3 documentation + usbd_cdc_ecm — CherryUSB 1.5.0 documentation - + @@ -171,7 +171,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/demo/usbd_hid.html b/demo/usbd_hid.html index 680179ae..d15f7dd1 100644 --- a/demo/usbd_hid.html +++ b/demo/usbd_hid.html @@ -6,14 +6,14 @@ - usbd_hid — CherryUSB 1.4.3 documentation + usbd_hid — CherryUSB 1.5.0 documentation - + @@ -172,7 +172,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/demo/usbd_msc.html b/demo/usbd_msc.html index 45b03280..5ad22aad 100644 --- a/demo/usbd_msc.html +++ b/demo/usbd_msc.html @@ -6,14 +6,14 @@ - usbd_msc — CherryUSB 1.4.3 documentation + usbd_msc — CherryUSB 1.5.0 documentation - + @@ -205,7 +205,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/demo/usbd_rndis.html b/demo/usbd_rndis.html index a5816a2c..83326a5c 100644 --- a/demo/usbd_rndis.html +++ b/demo/usbd_rndis.html @@ -6,14 +6,14 @@ - usbd_rndis — CherryUSB 1.4.3 documentation + usbd_rndis — CherryUSB 1.5.0 documentation - + @@ -171,7 +171,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/demo/usbd_vendor.html b/demo/usbd_vendor.html index edd6d7a8..8ca0ad98 100644 --- a/demo/usbd_vendor.html +++ b/demo/usbd_vendor.html @@ -6,14 +6,14 @@ - vendor device 驱动编写 — CherryUSB 1.4.3 documentation + vendor device 驱动编写 — CherryUSB 1.5.0 documentation - + @@ -211,7 +211,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/demo/usbd_video.html b/demo/usbd_video.html index f1706de1..c5e0013f 100644 --- a/demo/usbd_video.html +++ b/demo/usbd_video.html @@ -6,14 +6,14 @@ - usbd_video — CherryUSB 1.4.3 documentation + usbd_video — CherryUSB 1.5.0 documentation - + @@ -246,7 +246,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/demo/usbd_webusb.html b/demo/usbd_webusb.html index c7f29d6f..551f0f45 100644 --- a/demo/usbd_webusb.html +++ b/demo/usbd_webusb.html @@ -6,14 +6,14 @@ - usbd_webusb — CherryUSB 1.4.3 documentation + usbd_webusb — CherryUSB 1.5.0 documentation - + @@ -191,7 +191,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/demo/usbd_winusb.html b/demo/usbd_winusb.html index 3db4b7f9..b1da62a1 100644 --- a/demo/usbd_winusb.html +++ b/demo/usbd_winusb.html @@ -6,14 +6,14 @@ - usbd_winusb — CherryUSB 1.4.3 documentation + usbd_winusb — CherryUSB 1.5.0 documentation - + @@ -200,7 +200,7 @@ WINUSB 版本根据 USB 版本分为 V1/V2 版本,V2 版本需要包含 BOS
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/demo/usbh_bluetooth.html b/demo/usbh_bluetooth.html index 625d8920..865ef985 100644 --- a/demo/usbh_bluetooth.html +++ b/demo/usbh_bluetooth.html @@ -6,14 +6,14 @@ - usbh_bluetooth — CherryUSB 1.4.3 documentation + usbh_bluetooth — CherryUSB 1.5.0 documentation - + @@ -171,7 +171,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/demo/usbh_hid.html b/demo/usbh_hid.html index 773058cf..acc7bf65 100644 --- a/demo/usbh_hid.html +++ b/demo/usbh_hid.html @@ -6,14 +6,14 @@ - usbh_hid — CherryUSB 1.4.3 documentation + usbh_hid — CherryUSB 1.5.0 documentation - + @@ -217,7 +217,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/demo/usbh_msc.html b/demo/usbh_msc.html index 6b1a27d5..a2d7e96c 100644 --- a/demo/usbh_msc.html +++ b/demo/usbh_msc.html @@ -6,14 +6,14 @@ - usbh_msc — CherryUSB 1.4.3 documentation + usbh_msc — CherryUSB 1.5.0 documentation - + @@ -224,7 +224,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/demo/usbh_net.html b/demo/usbh_net.html index ffdd6c78..e7e48995 100644 --- a/demo/usbh_net.html +++ b/demo/usbh_net.html @@ -6,14 +6,14 @@ - usbh_net — CherryUSB 1.4.3 documentation + usbh_net — CherryUSB 1.5.0 documentation - + @@ -267,7 +267,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/demo/usbh_serial.html b/demo/usbh_serial.html index c0dd99e9..3f6b25f0 100644 --- a/demo/usbh_serial.html +++ b/demo/usbh_serial.html @@ -6,14 +6,14 @@ - usbh_serial — CherryUSB 1.4.3 documentation + usbh_serial — CherryUSB 1.5.0 documentation - + @@ -171,7 +171,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/demo/usbh_vendor.html b/demo/usbh_vendor.html index 3988e03d..7a2b7b94 100644 --- a/demo/usbh_vendor.html +++ b/demo/usbh_vendor.html @@ -6,14 +6,14 @@ - vendor host 驱动编写 — CherryUSB 1.4.3 documentation + vendor host 驱动编写 — CherryUSB 1.5.0 documentation - + @@ -293,7 +293,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/demo/usbh_wifi.html b/demo/usbh_wifi.html index 338fbee4..43ed30d9 100644 --- a/demo/usbh_wifi.html +++ b/demo/usbh_wifi.html @@ -6,14 +6,14 @@ - usbh_wifi — CherryUSB 1.4.3 documentation + usbh_wifi — CherryUSB 1.5.0 documentation - + @@ -171,7 +171,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/genindex.html b/genindex.html index a8936fb8..060c6852 100644 --- a/genindex.html +++ b/genindex.html @@ -5,14 +5,14 @@ - Index — CherryUSB 1.4.3 documentation + Index — CherryUSB 1.5.0 documentation - + @@ -167,7 +167,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/index.html b/index.html index 15c5a6b8..293f5fcb 100644 --- a/index.html +++ b/index.html @@ -6,14 +6,14 @@ - CherryUSB 使用指南 — CherryUSB 1.4.3 documentation + CherryUSB 使用指南 — CherryUSB 1.5.0 documentation - + @@ -317,7 +317,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/objects.inv b/objects.inv index 2fe053e5fa497e824d9b1975816a3cf82fbb5eb2..6c04fa2cb887d1018e20a5c4476be66f851eaecd 100644 GIT binary patch delta 14 VcmZqSYT=q-&upq^u+ixd3jiM81Umo# delta 14 VcmZqSYT=q-&upS+ywT|p3jiMG1U&!% diff --git a/opensource.html b/opensource.html index c853ca59..775c6e1a 100644 --- a/opensource.html +++ b/opensource.html @@ -6,14 +6,14 @@ - 官方开源项目分享 — CherryUSB 1.4.3 documentation + 官方开源项目分享 — CherryUSB 1.5.0 documentation - + @@ -223,7 +223,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/q&a.html b/q&a.html index b47452ca..9024436d 100644 --- a/q&a.html +++ b/q&a.html @@ -6,14 +6,14 @@ - Q & A — CherryUSB 1.4.3 documentation + Q & A — CherryUSB 1.5.0 documentation - + @@ -257,7 +257,7 @@
-

© Copyright 2022 ~ 2024, sakumisu.

+

© Copyright 2022 ~ 2025, sakumisu.

Built with Sphinx using a diff --git a/quick_start/demo.html b/quick_start/demo.html index d4d170d9..a78836e4 100644 --- a/quick_start/demo.html +++ b/quick_start/demo.html @@ -6,14 +6,14 @@ - 基于现有 demo 快速验证 — CherryUSB 1.4.3 documentation + 基于现有 demo 快速验证 — CherryUSB 1.5.0 documentation - + @@ -338,7 +338,7 @@
#define CONFIG_USBDEV_EP_NUM 8
 #define CONFIG_USBDEV_FSDEV_PMA_ACCESS 2
@@ -355,7 +355,7 @@
 
 

Note

-

以下两个步骤从 V1.4.4 开始不再需要,fsdev/usb_glue_st.c, dwc2/usb_glue_st.c 文件中已经实现

+

以下两个步骤从 V1.5.0 开始不再需要,fsdev/usb_glue_st.c, dwc2/usb_glue_st.c 文件中已经实现

  • 拷贝 xxx_msp.c 中的 HAL_PCD_MspInit 函数中的内容到 usb_dc_low_level_init 函数中,屏蔽 st 生成的 usb 初始化

  • @@ -411,7 +411,7 @@

Note

-

以下两个步骤从 V1.4.4 开始不再需要,fsdev/usb_glue_st.c, dwc2/usb_glue_st.c 文件中已经实现

+

以下两个步骤从 V1.5.0 开始不再需要,fsdev/usb_glue_st.c, dwc2/usb_glue_st.c 文件中已经实现