From a91ac72dbdc033fd1cc26651ca2d66d0705b08aa Mon Sep 17 00:00:00 2001 From: hathach Date: Mon, 25 Nov 2019 13:29:42 +0700 Subject: [PATCH 1/6] add the most important file of the project: CONTRIBUTORS.md --- CONTRIBUTORS.md | 50 +++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 7 ++++++- 2 files changed, 56 insertions(+), 1 deletion(-) create mode 100644 CONTRIBUTORS.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md new file mode 100644 index 00000000..11c947c2 --- /dev/null +++ b/CONTRIBUTORS.md @@ -0,0 +1,50 @@ +# TinyUSB contributors (sorted alphabetically) + +* **[Arturo182](https://github.com/arturo182)** + * Board support for MiMX RT1010 evaluation kit + +* **[Ha Thach](https://github.com/hathach)** + * Author and maintainer + * Most features develpopment + +* **[Jeff Epler](https://github.com/jepler)** + * Improvement to MIDI device driver + +* **[Kamil Tomaszewski](https://github.com/kamtom480)** + * Sony CXD56 device driver port for spresnese board + +* **[Nathan Conrad](https://github.com/pigrew)** + * STM32 fsdev Fullspeed device driver port for STM32 L0, F0, F1, F3 etc ... + * USB device class driver support + * USBTMC class driver support with example + * Improvement to Zero-length packet for control transfer + * Board support for STM32F070RB Nucleo, STM32F303 Discovery + +* **[Scott Shawcroft](https://github.com/tannewt)** + * SAMD21 and SAMD51 device driver port + * MIDI device class driver support + * Improvement to USBD control transfer, MSC, CDC class driver + * Board support for Metro M0 & M4 express + * Write the execellent porting.md documentation + * Introduce inital Makefile + +* **[Sean Cross](https://github.com/xobs)** + * ValentyUSB eptri device driver port + * Board support for fomu + +* **[Sylvain "tnt" Munaut](https://github.com/smunaut)** + * DFU runtime support with example + +* **[Timon Skerutsch](https://github.com/PTS93)** + * hid_test.js script and extensive test for bi-directional raw HID + +* **[Tod E. Kurt](https://github.com/todbot)** + * hid_test.js script and extensive test for bi-directional raw HID + +* **[William D. Jones](https://github.com/cr1901)** + * Synopsys DesignWare device driver port for STM32 L4, F2, F4, F7, H7 etc ... + * MSP430 device driver port (WIP) + * Board support for STM32F407 Discovery, STM32H743 Nucleo, pyboard v1.1 + + +**[Full contributors list](https://github.com/hathach/tinyusb/contributors).** diff --git a/README.md b/README.md index 162b707d..2e503e39 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,11 @@ TinyUSB is an open-source cross-platform USB Host/Device stack for embedded syst └── tools # Files used internally ``` +## Contributors + +Special thanks for all the people who had spent their precious time and effort to helped this project so far. +[CONTRIBUTORS.md](CONTRIBUTORS.md) file contains list of contributors and their awesome work. + ## Supported MCUs The stack supports the following MCUs @@ -32,7 +37,7 @@ The stack supports the following MCUs - iMX RT Series: RT1011, RT1015, RT1021, RT1052, RT1062, RT1064 - **Sony:** CXD56 - **ST:** STM32 series: L0, F0, F1, F2, F3, F4, F7, H7 (device only) -- **[valentyusb](https://github.com/im-tomu/valentyusb)** eptri +- **[ValentyUSB](https://github.com/im-tomu/valentyusb)** eptri [Here is the list of supported Boards](docs/boards.md) that can be used with provided examples. From 168f0cb4711056e452fa335e71ee4a10341a9821 Mon Sep 17 00:00:00 2001 From: hathach Date: Mon, 25 Nov 2019 13:33:50 +0700 Subject: [PATCH 2/6] update readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2e503e39..3f7556cf 100644 --- a/README.md +++ b/README.md @@ -23,8 +23,8 @@ TinyUSB is an open-source cross-platform USB Host/Device stack for embedded syst ## Contributors -Special thanks for all the people who had spent their precious time and effort to helped this project so far. -[CONTRIBUTORS.md](CONTRIBUTORS.md) file contains list of contributors and their awesome work. +Special thanks for all the people who had spent their precious time and effort to helped this project so far. Check out +[CONTRIBUTORS.md](CONTRIBUTORS.md) file for the list of all contributors and their awesome work for the stack. ## Supported MCUs From 0fccfc647fc5538481b8f673e9680ac6a9990e83 Mon Sep 17 00:00:00 2001 From: hathach Date: Mon, 25 Nov 2019 13:37:55 +0700 Subject: [PATCH 3/6] update --- CONTRIBUTORS.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 11c947c2..0eb6974d 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -15,9 +15,8 @@ * **[Nathan Conrad](https://github.com/pigrew)** * STM32 fsdev Fullspeed device driver port for STM32 L0, F0, F1, F3 etc ... - * USB device class driver support * USBTMC class driver support with example - * Improvement to Zero-length packet for control transfer + * Various improvement e.g Zero-length packet, Lint setup * Board support for STM32F070RB Nucleo, STM32F303 Discovery * **[Scott Shawcroft](https://github.com/tannewt)** From 7c606563edfd5207c506566e0c49c25fb5a7e23c Mon Sep 17 00:00:00 2001 From: hathach Date: Mon, 25 Nov 2019 20:52:27 +0700 Subject: [PATCH 4/6] lower case for arturo --- CONTRIBUTORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 0eb6974d..1c8bbe37 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,6 +1,6 @@ # TinyUSB contributors (sorted alphabetically) -* **[Arturo182](https://github.com/arturo182)** +* **[arturo182](https://github.com/arturo182)** * Board support for MiMX RT1010 evaluation kit * **[Ha Thach](https://github.com/hathach)** From 13f42235176ef6dd49c7798dd83214a0963ee69f Mon Sep 17 00:00:00 2001 From: hathach Date: Mon, 25 Nov 2019 21:10:08 +0700 Subject: [PATCH 5/6] add the most important contributor --- CONTRIBUTORS.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 1c8bbe37..f938c332 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,5 +1,9 @@ # TinyUSB contributors (sorted alphabetically) +* **[Adafruit Team](https://github.com/adafruit)** + * Main supporter and sponsor for hardware boards and kits + * Discussion and suggestion for feature and improvement + * **[arturo182](https://github.com/arturo182)** * Board support for MiMX RT1010 evaluation kit From 3a2d63613bf710e706176f968e2ce1c1337adf26 Mon Sep 17 00:00:00 2001 From: hathach Date: Mon, 25 Nov 2019 22:56:37 +0700 Subject: [PATCH 6/6] logo design --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f938c332..20f4d9e2 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -3,6 +3,7 @@ * **[Adafruit Team](https://github.com/adafruit)** * Main supporter and sponsor for hardware boards and kits * Discussion and suggestion for feature and improvement + * Design the project logo * **[arturo182](https://github.com/arturo182)** * Board support for MiMX RT1010 evaluation kit