Skip to content

Commit bb2f93d

Browse files
committed
prepare for release
1 parent 42dad78 commit bb2f93d

File tree

2 files changed

+65
-0
lines changed

2 files changed

+65
-0
lines changed

changelog.md

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,69 @@
11
# TinyUSB Changelog
22

3+
## 0.8.0 - 2021.02.05
4+
5+
### Device Controller Driver
6+
7+
- Added new device support for Raspberry Pi RP2040
8+
- Added new device support for NXP Kinetis KL25ZXX
9+
- Use dcd_event_bus_reset() with link speed to replace bus_signal
10+
- ESP32-S2:
11+
- Add bus suspend and wakeup support
12+
- SAMD21:
13+
- Fix (walkaround) samd21 setup_packet overflow by USB DMA
14+
- STM32 Synopsys:
15+
- Rework USB FIFO allocation scheme and allow RX FIFO size reduction
16+
- Sony CXD56
17+
- Update Update Spresense SDK to 2.0.2
18+
- Fix dcd issues with setup packets
19+
- Correct EP number for cdc_msc example
20+
21+
### USB Device
22+
23+
**UBSD**
24+
25+
- Rework usbd control transfer to have additional stage parameter for setup, data, status
26+
- Fix tusb_init() return true instead of TUSB_ERROR_NONE
27+
- Added new API tud_connected() that return true after device got out of bus reset and received the very first setup packet
28+
29+
**Class Driver**
30+
31+
- CDC
32+
- Allow to transmit data, even if the host does not support control line states i.e set DTR
33+
- HID
34+
- change default CFG_TUD_HID_EP_BUFSIZE from 16 to 64
35+
- MIDI
36+
- Fix midi sysex sending bug
37+
- MSC
38+
- Invoke only scsi complete callback after status transaction is complete.
39+
- Fix scsi_mode_sense6_t padding, which cause IAR compiler internal error.
40+
- USBTMC
41+
- Change interrupt endpoint example size to 8 instead of 2 for better compatibility with mcu
42+
43+
**Example**
44+
45+
- Support make from windows cmd.exe
46+
- Add HID Consumer Control (media keys) to hid_composite & hid_composite_freertos examples
47+
48+
### USB Host
49+
50+
No noticeable changes to host stack
51+
52+
### New Boards
53+
54+
- NXP/Freescale Freedom FRDM-KL25Z
55+
- Feather Double M33 express
56+
- Raspberry Pi Pico
57+
- Adafruit Feather RP2040
58+
- Adafruit Itsy Bitsy RP2040
59+
- Adafruit QT RP2040
60+
- Adfruit Feather ESP32-S2
61+
- Adafruit Magtag 29" Eink
62+
- Adafruit Metro ESP32-S2
63+
- Adafruit PyBadge
64+
- Adafruit PyPortal
65+
- Great Scott Gadgets' LUNA D11 & D21
66+
367
## 0.7.0 - 2020.11.08
468

569
### Device Controller Driver

src/device/usbd.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ extern void dcd_int_handler(uint8_t rhport);
5757
tusb_speed_t tud_speed_get(void);
5858

5959
// Check if device is connected (may not mounted/configured yet)
60+
// True if just got out of Bus Reset and received the very first data from host
6061
bool tud_connected(void);
6162

6263
// Check if device is connected and configured

0 commit comments

Comments
 (0)