Skip to content

Commit 7b62c71

Browse files
authored
Merge pull request #634 from hathach/release-0.8.0
Release 0.8.0
2 parents 42dad78 + 465ea7a commit 7b62c71

File tree

4 files changed

+83
-1
lines changed

4 files changed

+83
-1
lines changed

.github/workflows/build.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,23 @@ jobs:
7777
name: ${{ matrix.family }}-tinyusb-examples
7878
path: _bin/
7979

80+
- name: Create Release Asset
81+
if: ${{ github.event_name == 'release' }}
82+
run: |
83+
cd _bin/
84+
zip -r ../${{ matrix.family }}-tinyusb-${{ github.event.release.tag_name }}-examples.zip *
85+
86+
- name: Upload Release Asset
87+
uses: actions/upload-release-asset@v1
88+
env:
89+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
90+
if: ${{ github.event_name == 'release' }}
91+
with:
92+
upload_url: ${{ github.event.release.upload_url }}
93+
asset_path: ${{ matrix.family }}-tinyusb-${{ github.event.release.tag_name }}-examples.zip
94+
asset_name: ${{ matrix.family }}-tinyusb-${{ github.event.release.tag_name }}-examples.zip
95+
asset_content_type: application/zip
96+
8097
# Build all no-family (opharned) boards
8198
build-board:
8299
runs-on: ubuntu-latest

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

src/tusb_option.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#define _TUSB_OPTION_H_
2929

3030
#define TUSB_VERSION_MAJOR 0
31-
#define TUSB_VERSION_MINOR 7
31+
#define TUSB_VERSION_MINOR 8
3232
#define TUSB_VERSION_REVISION 0
3333
#define TUSB_VERSION_STRING TU_STRING(TUSB_VERSION_MAJOR) "." TU_STRING(TUSB_VERSION_MINOR) "." TU_STRING(TUSB_VERSION_REVISION)
3434

0 commit comments

Comments
 (0)