2018-12-13 15:20:28 +07:00
# TinyUSB
2012-11-25 22:24:01 -08:00
2021-02-24 12:42:10 +07:00
![TinyUSB ](https://user-images.githubusercontent.com/2847802/108847382-a0a6a580-75ad-11eb-96d9-280c79389281.png )
2019-08-08 01:09:04 +07:00
2020-11-02 16:50:46 +07:00
[![Build Status ](https://github.com/hathach/tinyusb/workflows/Build/badge.svg )](https://github.com/hathach/tinyusb/actions) [![License ](https://img.shields.io/badge/license-MIT-brightgreen.svg )](https://opensource.org/licenses/MIT)
2018-12-29 14:29:59 +07:00
2019-10-23 21:18:46 +07:00
TinyUSB is an open-source cross-platform USB Host/Device stack for embedded system, designed to be memory-safe with no dynamic allocation and thread-safe with all interrupt events are deferred then handled in the non-ISR task function.
2014-03-28 17:50:30 +07:00
2018-12-12 16:35:53 +07:00
![tinyusb ](https://user-images.githubusercontent.com/249515/49858616-f60c9700-fe27-11e8-8627-e76936352ff7.png )
2014-03-28 17:50:30 +07:00
2018-12-29 14:29:59 +07:00
```
.
2018-12-29 14:39:28 +07:00
├── docs # Documentation
2021-03-23 15:19:38 +07:00
├── examples # Sample with Makefile build support
2018-12-29 14:29:59 +07:00
├── hw
2018-12-29 14:39:28 +07:00
│ ├── bsp # Supported boards source files
│ └── mcu # Low level mcu core & peripheral drivers
├── lib # Sources from 3rd party such as freeRTOS, fatfs ...
├── src # All sources files for TinyUSB stack itself.
2019-06-10 17:50:16 +07:00
├── test # Unit tests for the stack
2018-12-29 14:39:28 +07:00
└── tools # Files used internally
2018-12-29 14:29:59 +07:00
```
2019-11-25 13:29:42 +07:00
## Contributors
2020-01-10 00:34:12 +01:00
Special thanks to all the people who spent their precious time and effort to help this project so far. Check out the
2019-11-25 13:33:50 +07:00
[CONTRIBUTORS.md ](CONTRIBUTORS.md ) file for the list of all contributors and their awesome work for the stack.
2019-11-25 13:29:42 +07:00
2019-09-20 16:14:35 +07:00
## Supported MCUs
2020-01-10 00:34:12 +01:00
The stack supports the following MCUs:
2019-09-20 16:14:35 +07:00
2020-07-01 12:47:14 +07:00
- **Dialog:** DA1469x
2021-03-09 11:29:07 +01:00
- **Espressif:** ESP32-S2, ESP32-S3
2020-11-07 23:43:39 +07:00
- **MicroChip:** SAMD11, SAMD21, SAMD51, SAME5x, SAMG55
2020-04-19 14:02:39 +07:00
- **NordicSemi:** nRF52833, nRF52840
2020-03-17 10:40:45 +07:00
- **Nuvoton:** NUC120, NUC121/NUC125, NUC126, NUC505
2020-12-25 23:10:57 +07:00
- **NXP:**
2019-11-23 21:59:28 +07:00
- iMX RT Series: RT1011, RT1015, RT1021, RT1052, RT1062, RT1064
2020-12-25 23:10:57 +07:00
- Kinetis: KL25
- LPC Series: 11Uxx, 13xx, 175x_6x, 177x_8x, 18xx, 40xx, 43xx, 51Uxx, 54xxx, 55xx
2021-01-23 01:12:56 +07:00
- **Raspberry Pi:** RP2040
2021-04-02 16:32:48 +07:00
- **Renesas:** RX63N
- **Silabs:** EFM32GG12
2019-10-08 15:49:37 +07:00
- **Sony:** CXD56
2020-07-02 14:57:00 +07:00
- **ST:** STM32 series: L0, F0, F1, F2, F3, F4, F7, H7 both FullSpeed and HighSpeed
2020-03-24 12:12:38 +07:00
- **TI:** MSP430
2019-11-25 13:29:42 +07:00
- **[ValentyUSB ](https://github.com/im-tomu/valentyusb )** eptri
2019-09-20 16:14:35 +07:00
[Here is the list of supported Boards ](docs/boards.md ) that can be used with provided examples.
2018-12-12 16:35:53 +07:00
## Device Stack
2013-05-07 13:36:34 +07:00
2020-01-10 00:34:12 +01:00
Supports multiple device configurations by dynamically changing usb descriptors. Low power functions such like suspend, resume, and remote wakeup. Following device classes are supported:
2019-04-02 16:18:36 +07:00
2020-11-07 23:43:39 +07:00
- USB Audio Class 2.0 (UAC2) still work in progress
- Bluetooth Host Controller Interface (BTH HCI)
2018-11-27 18:07:22 -08:00
- Communication Class (CDC)
2020-11-07 23:43:39 +07:00
- Device Firmware Update (DFU): only Runtinme
2019-05-02 14:30:49 +07:00
- Human Interface Device (HID): Generic (In & Out), Keyboard, Mouse, Gamepad etc ...
2019-04-26 15:54:42 +07:00
- Mass Storage Class (MSC): with multiple LUNs
2019-03-19 19:09:08 +07:00
- Musical Instrument Digital Interface (MIDI)
2020-04-19 14:02:39 +07:00
- Network with RNDIS, CDC-ECM (work in progress)
2020-03-30 11:30:37 +07:00
- USB Test and Measurement Class (USBTMC)
2019-08-01 13:31:59 +07:00
- Vendor-specific class support with generic In & Out endpoints. Can be used with MS OS 2.0 compatible descriptor to load winUSB driver without INF file.
- [WebUSB ](https://github.com/WICG/webusb ) with vendor-specific class
2013-05-07 13:36:34 +07:00
2018-12-12 16:35:53 +07:00
## Host Stack
2018-11-27 18:07:22 -08:00
2018-12-12 16:57:10 +07:00
**Most active development is on the Device stack. The Host stack is under rework and largely untested.**
2013-05-07 13:36:34 +07:00
2018-12-12 16:35:53 +07:00
- Human Interface Device (HID): Keyboard, Mouse, Generic
2014-03-25 16:42:34 +07:00
- Mass Storage Class (MSC)
2020-01-10 00:34:12 +01:00
- Hub currently only supports 1 level of hub (due to my laziness)
2013-05-07 13:36:34 +07:00
2020-01-10 00:34:12 +01:00
## OS Abstraction layer
2013-05-07 13:36:34 +07:00
2020-01-10 00:34:12 +01:00
TinyUSB is completely thread-safe by pushing all ISR events into a central queue, then process it later in the non-ISR context task function. It also uses semaphore/mutex to access shared resources such as CDC FIFO. Therefore the stack needs to use some of OS's basic APIs. Following OSes are already supported out of the box.
2013-05-07 13:36:34 +07:00
2019-09-20 16:14:35 +07:00
- **No OS** : Disabling USB IRQ is used as way to provide mutex
2013-05-08 12:23:25 +07:00
- **FreeRTOS**
2019-08-01 16:22:19 +07:00
- **Mynewt** Due to the newt package build system, Mynewt examples are better to be on its [own repo ](https://github.com/hathach/mynewt-tinyusb-example )
2014-04-17 12:02:03 +07:00
2018-12-12 16:35:53 +07:00
## Getting Started
2014-03-26 15:42:34 +07:00
2020-01-10 00:34:12 +01:00
[Here are the details for getting started ](docs/getting_started.md ) with the stack.
2013-05-07 13:36:34 +07:00
2019-04-08 13:22:08 +07:00
## Porting
Want to help add TinyUSB support for a new MCU? Read [here ](docs/porting.md ) for an explanation on the low-level API needed by TinyUSB.
## License
2020-01-10 00:34:12 +01:00
MIT license for all TinyUSB sources `src` folder, [Full license is here ](LICENSE ). However, each file is individually licensed especially those in `lib` and `hw/mcu` folder. Please make sure you understand all the license term for files you use in your project.
2019-04-08 13:22:08 +07:00
2018-12-12 16:35:53 +07:00
## Uses
2018-11-27 18:07:22 -08:00
TinyUSB is currently used by these other projects:
2020-07-01 13:19:06 +07:00
- [Adafruit nRF52 Arduino ](https://github.com/adafruit/Adafruit_nRF52_Arduino )
- [Adafruit nRF52 Bootloader ](https://github.com/adafruit/Adafruit_nRF52_Bootloader )
- [Adafruit SAMD Arduino ](https://github.com/adafruit/ArduinoCore-samd )
- [CircuitPython ](https://github.com/adafruit/circuitpython )
2021-01-23 01:12:56 +07:00
- [Espressif IDF ](https://github.com/espressif/esp-idf )
2020-07-01 13:19:06 +07:00
- [MicroPython ](https://github.com/micropython/micropython )
- [mynewt ](https://mynewt.apache.org )
2021-02-09 09:55:26 +00:00
- [Raspberry Pi Pico SDK ](https://github.com/raspberrypi/pico-sdk )
2021-01-23 01:12:56 +07:00
- [TinyUF2 Bootloader ](https://github.com/adafruit/tinyuf2 )
2020-07-01 13:19:06 +07:00
- [TinyUSB Arduino Library ](https://github.com/adafruit/Adafruit_TinyUSB_Arduino )