2025-03-28 13:27:52 +08:00
**[English ](README.md ) | 简体中文**
2024-12-23 20:04:02 +08:00
<h1 align="center" style="margin: 30px 0 30px; font-weight: bold;">CherryUSB</h1>
<p align="center">
2025-03-28 13:27:52 +08:00
<a href="https://github.com/cherry-embedded/CherryUSB/releases"><img src="https://img.shields.io/github/release/cherry-embedded/CherryUSB.svg"></a>
2024-12-23 20:04:02 +08:00
<a href="https://github.com/cherry-embedded/CherryUSB/blob/master/LICENSE"><img src="https://img.shields.io/github/license/cherry-embedded/CherryUSB.svg?style=flat-square"></a>
<a href="https://github.com/cherry-embedded/CherryUSB/actions/workflows/deploy-docs.yml"><img src="https://github.com/cherry-embedded/CherryUSB/actions/workflows/deploy-docs.yml/badge.svg"> </a>
<a href="https://discord.com/invite/wFfvrSAey8"><img src="https://img.shields.io/badge/Discord-blue?logo=discord&style=flat-square"> </a>
</p>
2021-12-12 15:21:56 +08:00
2025-03-28 13:27:52 +08:00
CherryUSB 是一个小而美的、可移植性高的、用于嵌入式系统(带 USB IP) 的高性能 USB 主从协议栈。
2021-12-12 15:21:56 +08:00
2024-03-08 17:30:21 +08:00

2022-05-21 16:50:01 +08:00
2025-03-28 13:27:52 +08:00
## 为什么选择 CherryUSB
2022-05-25 11:00:17 +08:00
2023-06-03 16:23:16 +08:00
### 易于学习 USB
为了方便用户学习 USB 基本知识、枚举、驱动加载、IP 驱动,因此,编写的代码具备以下优点:
- 代码精简,逻辑简单,无复杂 C 语言语法
- 树状化编程,代码层层递进
- Class 驱动和 porting 驱动模板化、精简化
- API 分类清晰(从机:初始化、注册类、命令回调类、数据收发类;主机:初始化、查找类、数据收发类)
### 易于使用 USB
为了方便用户使用 USB 接口,考虑到用户学习过 uart 和 dma, 因此, 设计的数据收发类接口具备以下优点:
- 等价于使用 uart tx dma/uart rx dma
2024-10-10 21:39:40 +08:00
- 收发长度没有限制,用户不需要关心 USB 分包过程(分包过程在 porting 中处理)
2023-06-03 16:23:16 +08:00
### 易于发挥 USB 性能
考虑到 USB 性能问题,尽量达到 USB 硬件理论带宽,因此,设计的数据收发类接口具备以下优点:
- Porting 驱动直接对接寄存器,无抽象层封装
- Memory zero copy
- IP 如果带 DMA 则使用 DMA 模式( DMA 带硬件分包功能)
- 长度无限制,方便对接硬件 DMA 并且发挥 DMA 的优势
2024-10-10 21:39:40 +08:00
- 分包过程在中断中执行
2022-05-25 11:00:17 +08:00
2025-08-02 17:55:46 +08:00
性能展示: https://cherryusb.cherry-embedded.org/show/
2022-05-25 11:00:17 +08:00
## 目录结构
2021-12-12 15:21:56 +08:00
| 目录名 | 描述 |
2023-06-04 14:42:57 +08:00
|:-------------:|:-------------------------------:|
2021-12-12 15:21:56 +08:00
|class | usb class 类主从驱动 |
2022-01-29 23:36:16 +08:00
|common | usb spec 定义、常用宏、标准接口定义 |
2023-06-04 14:42:57 +08:00
|core | usb 主从协议栈核心实现 |
2024-05-23 23:14:53 +08:00
|demo | 主从 class demo |
2023-06-04 14:42:57 +08:00
|docs | 文档 |
2022-01-15 17:14:26 +08:00
|osal | os 封装层 |
2024-05-23 23:14:53 +08:00
|platform | 其他 os 全家桶适配 |
2021-12-12 15:21:56 +08:00
|port | usb 主从需要实现的 porting 接口 |
2023-06-04 14:42:57 +08:00
|tools | 工具链接 |
2021-12-12 15:21:56 +08:00
2022-05-25 11:00:17 +08:00
## Device 协议栈简介
2021-12-12 15:21:56 +08:00
2022-02-01 23:07:38 +08:00
CherryUSB Device 协议栈对标准设备请求、CLASS 请求、VENDOR 请求以及 custom 特殊请求规范了一套统一的函数框架,采用面向对象和链表的方式,能够使得用户快速上手复合设备,不用管底层的逻辑。同时,规范了一套标准的 dcd porting 接口,用于适配不同的 USB IP, 达到面向 ip 编程。
2021-12-12 15:21:56 +08:00
2022-02-01 23:07:38 +08:00
CherryUSB Device 协议栈当前实现以下功能:
2021-12-12 15:21:56 +08:00
2025-03-28 21:11:08 +08:00
- 支持 USB2.0 全速和高速设备( USB3.0 超高速 TODO)
2021-12-12 15:21:56 +08:00
- 支持端点中断注册功能, porting 给用户自己处理中断里的数据
2022-04-04 15:54:53 +08:00
- 支持复合设备
2023-11-21 22:23:07 +08:00
- 支持 Communication Device Class (CDC_ACM, CDC_ECM)
2021-12-12 15:21:56 +08:00
- 支持 Human Interface Device (HID)
- 支持 Mass Storage Class (MSC)
2022-04-04 15:54:53 +08:00
- 支持 USB VIDEO CLASS (UVC1.0、UVC1.5)
- 支持 USB AUDIO CLASS (UAC1.0、UAC2.0)
2021-12-12 15:21:56 +08:00
- 支持 Device Firmware Upgrade CLASS (DFU)
- 支持 USB MIDI CLASS (MIDI)
2022-04-04 15:54:53 +08:00
- 支持 Remote NDIS (RNDIS)
2025-05-26 21:54:32 +08:00
- 支持 Media Transfer Protocol (MTP)
2024-07-25 21:39:36 +08:00
- 支持 WINUSB1.0、WINUSB2.0、WEBUSB、BOS
2021-12-12 15:21:56 +08:00
- 支持 Vendor 类 class
2024-07-23 22:37:27 +08:00
- 支持 UF2
2024-08-17 20:58:56 +08:00
- 支持 Android Debug Bridge (Only support shell)
2024-03-17 22:54:04 +08:00
- 支持相同 USB IP 的多从机
2021-12-12 15:21:56 +08:00
2022-05-25 11:00:17 +08:00
CherryUSB Device 协议栈资源占用说明( GCC 10.2 with -O2) :
2021-12-12 15:21:56 +08:00
2022-10-20 21:22:08 +08:00
| file | FLASH (Byte) | No Cache RAM (Byte) | RAM (Byte) | Heap (Byte) |
|:-------------:|:--------------:|:-------------------------:|:-------------:|:----------------:|
2025-05-28 21:24:39 +08:00
|usbd_core.c | ~4500 | (512(default) + 320) * bus | 0 | 0 |
|usbd_cdc_acm.c | ~900 | 0 | 0 | 0 |
|usbd_msc.c | ~5000 | (128 + 512(default)) * bus | 16 * bus | 0 |
|usbd_hid.c | ~300 | 0 | 0 | 0 |
|usbd_audio.c | ~4000 | 0 | 0 | 0 |
|usbd_video.c | ~7000 | 0 | 132 * bus | 0 |
|usbd_rndis.c | ~2500 | 2 * 1580(default)+156+8 | 80 | 0 |
|usbd_cdc_ecm.c | ~900 | 2 * 1514(default)+16 | 42 | 0 |
2025-05-26 21:54:32 +08:00
|usbd_mtp.c | ~9000 | 2048(default)+128 | sizeof(struct mtp_object) * n| 0 |
2021-12-12 15:21:56 +08:00
2022-05-25 11:00:17 +08:00
## Host 协议栈简介
2021-12-12 15:21:56 +08:00
2025-03-28 13:27:52 +08:00
CherryUSB Host 协议栈对挂载在 root hub、外部 hub 上的设备规范了一套标准的枚举实现,对不同的 Class 类也规范了一套标准接口,用来指示在枚举后和断开连接后该 Class 驱动需要做的事情。同时,规范了一套标准的 hcd porting 接口,用于适配不同的 USB IP, 达到面向 IP 编程。最后,协议栈使用 OS 管理,并提供了 osal 用来适配不同的 os。
2022-01-29 23:36:16 +08:00
2022-02-01 23:07:38 +08:00
CherryUSB Host 协议栈当前实现以下功能:
2022-01-29 23:36:16 +08:00
2025-04-16 20:18:04 +08:00
- 支持 low speed, full speed, high speed 和 super speed 设备
2022-01-29 23:36:16 +08:00
- 自动加载支持的Class 驱动
- 支持阻塞式传输和异步传输
2022-04-04 15:54:53 +08:00
- 支持复合设备
2025-03-28 13:27:52 +08:00
- 支持多级 HUB, 最高可拓展到 7 级(目前测试 1拖 10 没有问题,仅支持 dwc2/ehci/xhci/rp2040)
2025-08-07 21:11:19 +08:00
- 支持 Communication Device Class (CDC_ACM, CDC_ECM, CDC_NCM)
2022-01-29 23:36:16 +08:00
- 支持 Human Interface Device (HID)
- 支持 Mass Storage Class (MSC)
2024-05-31 23:01:12 +08:00
- Support USB Video CLASS (UVC1.0、UVC1.5)
- Support USB Audio CLASS (UAC1.0)
2022-04-04 15:54:53 +08:00
- 支持 Remote NDIS (RNDIS)
2024-01-25 22:03:35 +08:00
- 支持 USB Bluetooth (支持 nimble and zephyr bluetooth 协议栈,支持 **CLASS: 0xE0 ** 或者厂家自定义类,类似于 cdc acm 功能)
2025-12-12 22:45:10 +08:00
- 支持 Vendor Serial 类(CH34X、CP210X、PL2303、FTDI、GSM)
- 支持 Vendor network 类(RTL8152、AX88772)
2023-11-21 22:23:07 +08:00
- 支持 USB modeswitch
2024-10-31 21:43:41 +08:00
- 支持 Android Open Accessory
2024-01-06 22:16:58 +08:00
- 支持相同 USB IP 的多主机
2022-01-29 23:36:16 +08:00
2022-02-01 23:07:38 +08:00
同时, CherryUSB Host 协议栈还提供了 lsusb 的功能,借助 shell 插件可以查看所有挂载设备的信息,包括外部 hub 上的设备的信息。
2022-01-29 23:36:16 +08:00
2025-05-28 21:24:39 +08:00
CherryUSB Host 协议栈资源占用说明( GCC 10.2 with -O2, 关闭 log) :
2022-06-23 21:30:32 +08:00
2023-12-16 23:19:57 +08:00
| file | FLASH (Byte) | No Cache RAM (Byte) | RAM (Byte) | Heap (Byte) |
|:-------------:|:--------------:|:-------------------------------:|:---------------------------:|:------------:|
2025-05-28 21:24:39 +08:00
|usbh_core.c | ~4500 | (512(default) + 8 * (1+x) * n) * bus | sizeof(struct usbh_hub) * bus | raw_config_desc |
|usbh_hub.c | ~3500 | (32 + 4 * (1+x)) * bus | 12 + sizeof(struct usbh_hub) * x | 0 |
|usbh_cdc_acm.c | ~600 | 7 * x | 4 + sizeof(struct usbh_cdc_acm) * x | 0 |
|usbh_msc.c | ~2000 | 128 * x | 4 + sizeof(struct usbh_msc) * x | 0 |
|usbh_hid.c | ~800 | 64 * x | 4 + sizeof(struct usbh_hid) * x | 0 |
|usbh_video.c | ~5000 | 128 * x | 4 + sizeof(struct usbh_video) * x | 0 |
|usbh_audio.c | ~4000 | 128 * x | 4 + sizeof(struct usbh_audio) * x | 0 |
|usbh_rndis.c | ~3000 | 512 + 2 * 2048(default)| sizeof(struct usbh_rndis) * 1 | 0 |
|usbh_cdc_ecm.c | ~1500 | 2 * 1514 + 16 | sizeof(struct usbh_cdc_ecm) * 1 | 0 |
|usbh_cdc_ncm.c | ~2000 | 2 * 2048(default) + 16 + 32 | sizeof(struct usbh_cdc_ncm) * 1| 0 |
|usbh_bluetooth.c | ~1000 | 2 * 2048(default) | sizeof(struct usbh_bluetooth) * 1 | 0 |
|usbh_asix.c | ~7000 | 2 * 2048(default) + 16 + 32 | sizeof(struct usbh_asix) * 1 | 0 |
|usbh_rtl8152.c | ~9000 | 16K+ 2K(default) + 2 + 32 | sizeof(struct usbh_rtl8152) * 1 | 0 |
2022-09-14 20:33:47 +08:00
其中,`sizeof(struct usbh_hub)` 和 `sizeof(struct usbh_hubport)` 受以下宏影响:
```
#define CONFIG_USBHOST_MAX_EXTHUBS 1
#define CONFIG_USBHOST_MAX_EHPORTS 4
2023-12-30 15:03:32 +08:00
#define CONFIG_USBHOST_MAX_INTERFACES 8
2025-08-07 21:11:19 +08:00
#define CONFIG_USBHOST_MAX_INTF_ALTSETTINGS 2
2022-09-14 20:33:47 +08:00
#define CONFIG_USBHOST_MAX_ENDPOINTS 4
```
2022-06-23 21:30:32 +08:00
2023-07-12 23:01:15 +08:00
x 受以下宏影响:
```
2025-12-12 22:45:10 +08:00
#define CONFIG_USBHOST_MAX_SERIAL_CLASS 4
2023-07-12 23:01:15 +08:00
#define CONFIG_USBHOST_MAX_HID_CLASS 4
#define CONFIG_USBHOST_MAX_MSC_CLASS 2
#define CONFIG_USBHOST_MAX_AUDIO_CLASS 1
#define CONFIG_USBHOST_MAX_VIDEO_CLASS 1
```
2024-03-27 19:34:24 +08:00
## USB IP 支持情况
仅列举标准 USB IP 和商业性 USB IP
| IP | device | host | Support status |
|:----------------:|:----------:|:--------:|:--------------:|
2024-12-09 20:18:07 +08:00
| OHCI(intel) | none | OHCI | √ |
2024-03-27 19:34:24 +08:00
| EHCI(intel) | none | EHCI | √ |
| XHCI(intel) | none | XHCI | √ |
2024-06-15 21:12:03 +08:00
| UHCI(intel) | none | UHCI | × |
2024-03-27 19:34:24 +08:00
| DWC2(synopsys) | DWC2 | DWC2 | √ |
| MUSB(mentor) | MUSB | MUSB | √ |
| FOTG210(faraday)| FOTG210 | EHCI | √ |
2024-08-21 20:04:18 +08:00
| CHIPIDEA(synopsys)| CHIPIDEA | EHCI | √ |
2024-03-27 19:34:24 +08:00
| CDNS2(cadence) | CDNS2 | CDNS2 | √ |
| CDNS3(cadence) | CDNS3 | XHCI | × |
| DWC3(synopsys) | DWC3 | XHCI | × |
2026-01-30 22:10:34 +08:00
## Resources
2021-12-12 15:21:56 +08:00
2026-01-30 22:10:34 +08:00
### 快速开始
2021-12-12 15:21:56 +08:00
2026-01-30 22:10:34 +08:00
- 📖 [CherryUSB Documentation ](https://cherryusb.readthedocs.io/zh-cn/latest/ )
- 💻 [CherryUSB Demo Repo ](https://cherryusb.readthedocs.io/zh-cn/latest/quick_start/demo.html )
- 📺 [CherryUSB Cheese(>= V1.4.3) ](https://www.bilibili.com/cheese/play/ss707687201 )
2021-12-12 15:21:56 +08:00
2026-01-30 22:10:34 +08:00
### 软件包支持
2024-08-21 20:04:18 +08:00
- [RT-Thread ](https://packages.rt-thread.org/detail.html?package=CherryUSB )
- [YOC ](https://www.xrvm.cn/document?temp=usb-host-protocol-stack-device-driver-adaptation-instructions&slug=yocbook )
- [ESP-Registry ](https://components.espressif.com/components/cherry-embedded/cherryusb )
2026-01-30 22:10:34 +08:00
### 描述符生成工具
2024-05-31 23:01:12 +08:00
2026-01-30 22:10:34 +08:00
Cherry Descriptor: https://desc.cherry-embedded.org/zh
2024-05-31 23:01:12 +08:00
2026-01-30 22:10:34 +08:00
### Contact
2022-06-05 16:45:39 +08:00
2025-03-28 13:27:52 +08:00
CherryUSB QQ群: 642693751
2024-05-05 12:04:08 +08:00
CherryUSB 微信群:与我联系后邀请加入
2026-01-30 22:10:34 +08:00
## 商业支持
参考 https://cherryusb.readthedocs.io/zh-cn/latest/support/index.html
2024-05-05 12:04:08 +08:00
## 支持企业
2025-03-28 13:27:52 +08:00
感谢以下企业支持(顺序不分先后):
2024-05-05 12:04:08 +08:00
2025-08-07 21:11:19 +08:00
<img src="docs/assets/bouffalolab.jpg" width="100" height="80"/> <img src="docs/assets/hpmicro.jpg" width="100" height="80" /> <img src="docs/assets/eastsoft.jpg" width="100" height="80" /> <img src="docs/assets/rtthread.jpg" width="100" height="80" /> <img src="docs/assets/sophgo.jpg" width="100" height="80" /> <img src="docs/assets/phytium.jpg" width="100" height="80" /> <img src="docs/assets/thead.jpg" width="100" height="80" /> <img src="docs/assets/nuvoton.jpg" width="100" height="80" /> <img src="docs/assets/artinchip.jpg" width="100" height="80" /> <img src="docs/assets/bekencorp.jpg" width="100" height="80" /> <img src="docs/assets/nxp.png" width="100" height="80" /> <img src="docs/assets/espressif.png" width="100" height="80" /> <img src="docs/assets/canaan.jpg" width="100" height="80" /> <img src="docs/assets/actions.jpg" width="100" height="80" /> <img src="docs/assets/sifli.jpg" width="100" height="80" /> <img src="docs/assets/nationstech.jpg" width="100" height="80" />