mirror of
https://github.com/hathach/tinyusb.git
synced 2025-02-05 18:40:28 +00:00
increase version, update doc for release
This commit is contained in:
parent
8a6fe8a8f3
commit
566e3abcea
@ -18,6 +18,12 @@ Notable contributors
|
|||||||
- Design the project logo
|
- Design the project logo
|
||||||
|
|
||||||
|
|
||||||
|
`Gordon McNab <https://github.com/ftdigdm>`__
|
||||||
|
---------------------------------------------
|
||||||
|
|
||||||
|
- Add new DCD port for Bridgetek FT90x and FT93x
|
||||||
|
|
||||||
|
|
||||||
`Ha Thach <https://github.com/hathach>`__
|
`Ha Thach <https://github.com/hathach>`__
|
||||||
-----------------------------------------
|
-----------------------------------------
|
||||||
|
|
||||||
@ -53,6 +59,7 @@ Notable contributors
|
|||||||
-----------------------------------------------
|
-----------------------------------------------
|
||||||
|
|
||||||
- Add new DCD port for Dialog DA1469x
|
- Add new DCD port for Dialog DA1469x
|
||||||
|
- Add new DCD port for PIC32MZ
|
||||||
- Add new class driver for Bluetooth HCI
|
- Add new class driver for Bluetooth HCI
|
||||||
- Add ISO transfer for STM32 Synopsys, Nordic nRF, Dialog DA1469x
|
- Add ISO transfer for STM32 Synopsys, Nordic nRF, Dialog DA1469x
|
||||||
- Improve Audio driver and add uac2\_headset example
|
- Improve Audio driver and add uac2\_headset example
|
||||||
@ -81,11 +88,11 @@ Notable contributors
|
|||||||
`Koji KITAYAMA <https://github.com/kkitayam>`__
|
`Koji KITAYAMA <https://github.com/kkitayam>`__
|
||||||
-----------------------------------------------
|
-----------------------------------------------
|
||||||
|
|
||||||
- Add new DCD port for NXP Kinetis KL25
|
- Add new DCD and HCD port for NXP Kinetis KL25
|
||||||
- Add new DCD port for Renesas RX family (RX600, RX700 ..) with GR-CITRUS, RX65n target board
|
- Add new DCD and HCD port for Renesas RX family (RX600, RX700 ..) with GR-CITRUS, RX65n target board
|
||||||
|
- Add new DCD and HCD port for Mentor musb with MSP432E4
|
||||||
- Add new class driver for USB Video Class (UVC 1.5)
|
- Add new class driver for USB Video Class (UVC 1.5)
|
||||||
|
|
||||||
|
|
||||||
`Nathan Conrad <https://github.com/pigrew>`__
|
`Nathan Conrad <https://github.com/pigrew>`__
|
||||||
---------------------------------------------
|
---------------------------------------------
|
||||||
|
|
||||||
|
@ -2,6 +2,46 @@
|
|||||||
Changelog
|
Changelog
|
||||||
*********
|
*********
|
||||||
|
|
||||||
|
0.13.0
|
||||||
|
======
|
||||||
|
|
||||||
|
- [tu_fifo] Fix locked mutex when full, and return type in peek_n()
|
||||||
|
|
||||||
|
Controller Driver (DCD & HCD)
|
||||||
|
-----------------------------
|
||||||
|
|
||||||
|
- [DWC2] Generalize synopsys dwc2 with synopsys/dwc2 which support both FS and HS phy (UTMI and ULPI) for various MCUs.
|
||||||
|
- Broadcom 28/27xx on raspberrypi SBC
|
||||||
|
- Silicon Labs EFM32
|
||||||
|
- Espressif ESP32 Sx
|
||||||
|
- GigaDevice GD32
|
||||||
|
- ST STM32
|
||||||
|
- Infineon XMC
|
||||||
|
- [KL25] Add new HCD for NXP KL25
|
||||||
|
- [MUSB] Add new DCD and HCD for Mentor musb with TI MSP432E4
|
||||||
|
- [F1C100s] Add new DCD for Allwinner F1C100s family
|
||||||
|
- [PIC32MZ] Add new DCD for PIC32MZ
|
||||||
|
- [nRF] Fix/Enhance varous race condtion with: EASY DMA, request HFXO, EPOUT
|
||||||
|
- [ChipIdea] rename Transdimension to more popular ChipIdea Highspeed,
|
||||||
|
- [RP2040] various update/fix for hcd/dcd
|
||||||
|
- [FT9XX] new DCD port for Bridgetek FT90x and FT93x devices
|
||||||
|
- [DA1469X] Fix resume
|
||||||
|
- [OHCI] Fix device array out of bound
|
||||||
|
|
||||||
|
Note: legacy drivers such as st/synopsys, nxp/transdimension are still present in this release but won't recieve more update and could be removed in the future.
|
||||||
|
|
||||||
|
Device Stack
|
||||||
|
------------
|
||||||
|
|
||||||
|
- [Audio] Support disabling feedback format correction (16.16 <-> 10.14 format)
|
||||||
|
- [MSC] Add tud_msc_request_sense_cb() callback, change most default sense error to medium not present (0x02, 0x3A, 0x00)
|
||||||
|
- [Video] Fix video_capture example fails enumeration when 8FPS
|
||||||
|
|
||||||
|
Host Stack
|
||||||
|
----------
|
||||||
|
|
||||||
|
No notable changes
|
||||||
|
|
||||||
0.12.0
|
0.12.0
|
||||||
======
|
======
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
#include "common/tusb_compiler.h"
|
#include "common/tusb_compiler.h"
|
||||||
|
|
||||||
#define TUSB_VERSION_MAJOR 0
|
#define TUSB_VERSION_MAJOR 0
|
||||||
#define TUSB_VERSION_MINOR 12
|
#define TUSB_VERSION_MINOR 13
|
||||||
#define TUSB_VERSION_REVISION 0
|
#define TUSB_VERSION_REVISION 0
|
||||||
#define TUSB_VERSION_STRING TU_STRING(TUSB_VERSION_MAJOR) "." TU_STRING(TUSB_VERSION_MINOR) "." TU_STRING(TUSB_VERSION_REVISION)
|
#define TUSB_VERSION_STRING TU_STRING(TUSB_VERSION_MAJOR) "." TU_STRING(TUSB_VERSION_MINOR) "." TU_STRING(TUSB_VERSION_REVISION)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user