2022-02-01 23:07:38 +08:00
# CherryUSB
2021-12-12 15:21:56 +08:00
[English ](./README.md )
2022-05-25 11:00:17 +08:00
CherryUSB 是一个小而美的、可移植性高的、用于嵌入式系统(带 USB ip)的 USB 主从协议栈。
2021-12-12 15:21:56 +08:00
2022-09-09 21:37:12 +08:00

2022-05-21 16:50:01 +08:00
2022-05-25 11:00:17 +08:00
## 为什么选择
2022-09-17 14:00:04 +08:00
- 代码精简,并且内存占用极小,详细参考下面表格,而且还可进一步的裁剪
- 全面的 class 驱动,并且主从 class 驱动全部模板化,方便用户增加新的 class 驱动以及学习的时候查找规律
- 可供用户使用的 API 非常少,并且分类清晰。从机:初始化 + 注册类、命令回调类、数据收发类;主机:初始化 + 查找类、数据收发类
- 树状化编程,代码层层递进,方便用户理清函数调用关系、枚举和 class 驱动加载过程
- 标准化的 porting 接口,相同 ip 无需重写驱动,并且 porting 驱动也进行了模板化,方便用户新增 porting。
- 主从收发接口的使用等价于 uart tx/rx dma 的使用,长度也没有限制
- 能够达到 USB 硬件理论带宽
2022-05-25 11:00:17 +08:00
## 目录结构
2021-12-12 15:21:56 +08:00
```
.
├── class
├── common
├── core
├── demo
├── docs
2022-01-15 17:14:26 +08:00
├── osal
2021-12-12 15:21:56 +08:00
├── packet capture
└── port
2022-05-25 11:00:17 +08:00
└── tools
2021-12-12 15:21:56 +08:00
```
| 目录名 | 描述 |
|:-------------:|:------------------------------:|
|class | usb class 类主从驱动 |
2022-01-29 23:36:16 +08:00
|common | usb spec 定义、常用宏、标准接口定义 |
|core | usb 主从协议栈核心实现 |
2021-12-12 15:21:56 +08:00
|demo | 示例 |
|docs | 文档 |
2022-01-15 17:14:26 +08:00
|osal | os 封装层 |
2021-12-12 15:21:56 +08:00
|packet capture | 抓包文件(需要使用力科软件打开)|
|port | usb 主从需要实现的 porting 接口 |
2022-04-13 10:29:33 +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
- 支持 USB2.0 全速和高速设备
- 支持端点中断注册功能, porting 给用户自己处理中断里的数据
2022-04-04 15:54:53 +08:00
- 支持复合设备
2022-01-29 23:36:16 +08:00
- 支持 Communication Device Class (CDC)
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)
- 支持 WINUSB1.0、WINUSB2.0(带 BOS )
2021-12-12 15:21:56 +08:00
- 支持 Vendor 类 class
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) |
|:-------------:|:--------------:|:-------------------------:|:-------------:|:----------------:|
|usbd_core.c | 3263 | 384 | 17 | 0 |
|usbd_cdc.c | 490 | 0 | 0 | 0 |
|usbd_msc.c | 2772 | 128 + 512(default) | 16 | 0 |
|usbd_hid.c | 501 | 0 | 0 | 0 |
|usbd_audio.c | 1208 | 0 | 4 | 0 |
|usbd_video.c | 2272 | 0 | 82 | 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
2022-02-01 23:07:38 +08:00
CherryUSB Host 协议栈对挂载在 roothub、外部 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
- 自动加载支持的Class 驱动
- 支持阻塞式传输和异步传输
2022-04-04 15:54:53 +08:00
- 支持复合设备
2022-01-29 23:36:16 +08:00
- 支持多级 HUB,最高可拓展到 7 级
- 支持 Communication Device Class (CDC)
- 支持 Human Interface Device (HID)
- 支持 Mass Storage Class (MSC)
2022-10-07 17:07:53 +08:00
- 支持 USB VIDEO CLASS
2022-04-04 15:54:53 +08:00
- 支持 Remote NDIS (RNDIS)
- 支持 Vendor 类 class
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
2022-06-23 21:30:32 +08:00
CherryUSB Host 协议栈资源占用说明( GCC 10.2 with -O2) :
2022-09-14 20:33:47 +08:00
| file | FLASH (Byte) | No Cache RAM (Byte) | RAM (Byte) | Heap (Byte) |
|:-------------:|:--------------:|:-------------------------------:|:---------------------------:|:-------------------------------:|
|usbh_core.c | 4261 | 512 | 28 | sizeof(struct usbh_urb) |
|usbh_hub.c | 4633 | sizeof(struct usbh_hub) * (1+n) | sizeof(struct usbh_hubport) + 20 | 0 |
|usbh_cdc_acm.c | 1004 | 7 | 4 | sizeof(struct usbh_cdc_acm) * x |
|usbh_msc.c | 1776 | 32 | 4 | sizeof(struct usbh_msc) * x |
|usbh_hid.c | 822 | 128 | 4 | sizeof(struct usbh_hid) * x |
2022-10-01 16:09:49 +08:00
|usbh_video.c | 3587 | 128 | 4100(yuv2rgb) | sizeof(struct usbh_video) * x |
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
#define CONFIG_USBHOST_MAX_INTERFACES 6
#define CONFIG_USBHOST_MAX_INTF_ALTSETTINGS 1
#define CONFIG_USBHOST_MAX_ENDPOINTS 4
```
2022-06-23 21:30:32 +08:00
2022-05-25 11:00:17 +08:00
## 文档教程
2021-12-12 15:21:56 +08:00
2022-03-08 12:39:41 +08:00
CherryUSB 快速入门、USB 基本概念, API 手册, Class 基本概念和例程,参考 [CherryUSB 文档教程 ](https://cherryusb.readthedocs.io/ )
2021-12-12 15:21:56 +08:00
2022-05-25 11:00:17 +08:00
## 视频教程
2021-12-12 15:21:56 +08:00
2022-02-14 22:39:17 +08:00
USB 基本知识点与 CherryUSB Device 协议栈是如何编写的,参考 [CherryUSB Device 协议栈教程 ](https://www.bilibili.com/video/BV1Ef4y1t73d ).
2022-04-13 10:29:33 +08:00
2022-05-25 11:00:17 +08:00
## 图形化界面配置工具
2022-04-13 10:29:33 +08:00
2022-05-27 22:52:37 +08:00
[chryusb_configurator ](https://github.com/Egahp/chryusb_configurator ) 采用 **electron + vite2 + ts ** 框架编写,当前用于自动化生成描述符数组,后续会增加其他功能。
## 示例仓库
2022-07-28 21:25:29 +08:00
注意: 0.4.1 版本以后 dcd 驱动进行了重构,部分仓库不做长期维护,所以如果使用高版本需要自行更新
| 厂商 | 芯片或者系列 | USB IP| 仓库链接 | 对应 master 版本 |
|:--------------------:|:------------------:|:-----:|:--------:|:---------------------------:|
|Bouffalolab | BL702 | bouffalolab|[bl_mcu_sdk ](https://github.com/bouffalolab/bl_mcu_sdk/tree/master/examples/usb )| latest |
|Essemi | ES32F36xx | musb |[es32f369_repo ](https://github.com/sakumisu/CherryUSB/tree/master/demo/es32 )|latest |
|AllwinnerTech | F1C100S | musb |[cherryusb_rtt_f1c100s ](https://github.com/CherryUSB/cherryusb_rtt_f1c100s )|latest |
|ST | STM32F103C8T6 | fsdev |[stm32f103_repo ](https://github.com/sakumisu/CherryUSB/tree/master/demo/stm32/usb_device/stm32f103c8t6 )|latest |
|ST | STM32F4 | dwc2 |[stm32f429_device_repo ](https://github.com/sakumisu/CherryUSB/tree/master/demo/stm32/usb_device/stm32f429igt6 ) [stm32f429_host_repo ](https://github.com/sakumisu/CherryUSB/tree/master/demo/stm32/usb_host/stm32f429igt6 )|latest |
|ST | STM32H7 | dwc2 |[stm32h743_device_repo ](https://github.com/sakumisu/CherryUSB/tree/master/demo/stm32/usb_device/stm32h743vbt6 ) [stm32h743_host_repo ](https://github.com/sakumisu/CherryUSB/tree/master/demo/stm32/usb_host/stm32h743xih6 )|latest |
2022-09-12 11:42:35 +08:00
|HPMicro | HPM6750 | hpm/ehci |[hpm_repo ](https://github.com/CherryUSB/cherryusb_hpmicro )|latest |
2022-09-23 22:04:07 +08:00
|Phytium | e2000 | xhci |[phytium _repo ](https://gitee.com/phytium_embedded/phytium-standalone-sdk )|latest |
2022-07-28 21:25:29 +08:00
|WCH | CH32V307 | ch32_usbfs/ch32_usbhs|[ch32v307_repo ](https://github.com/CherryUSB/cherryusb_ch32v307 )|latest |
|WCH | CH57x | ch58x |[ch57x_repo ](https://github.com/CherryUSB/cherryusb_ch57x )|v0.4.1 |
|Nuvoton | Nuc442 | nuvoton |[nuc442_repo ](https://github.com/CherryUSB/cherryusb_nuc442 )|v0.4.1 |
|Geehy | APM32E10x APM32F0xx| fsdev |[apm32_repo ](https://github.com/CherryUSB/cherryusb_apm32 )|v0.4.1 |
2022-10-01 16:09:49 +08:00
|Nordicsemi | Nrf52840 | nrf5x |[nrf5x_repo ](https://github.com/CherryUSB/cherryusb_nrf5x )|latest |
2022-07-28 21:25:29 +08:00
|Espressif | esp32 | dwc2 |[esp32_repo ](https://github.com/CherryUSB/cherryusb_esp32 )|v0.4.1 |
|Mindmotion | MM32L3xx | mm32 |[mm32_repo ](https://github.com/CherryUSB/cherryusb_mm32 )|v0.4.1 |
2022-06-05 16:45:39 +08:00
## Contact
QQ 群:642693751