Skip to content

Commit

Permalink
ref(esp_tinyusb): Updated CHANGELOG, returned pytest file
Browse files Browse the repository at this point in the history
  • Loading branch information
roma-jam committed Jul 30, 2024
1 parent c14eebb commit 87ddae1
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
4 changes: 3 additions & 1 deletion device/esp_tinyusb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
## Unreleased
## Unreleased (1.4.5)

- CDC-ACM: Fixed memory leak at VFS unregister
- esp_tinyusb: Added possibility to teardown tinyusb stack and reconfigure the tinyusb driver
- esp_tinyusb: Added test for tinyusb driver reconfiguration

## 1.4.4

Expand Down
12 changes: 12 additions & 0 deletions device/esp_tinyusb/test_app/pytest_usb_device.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: Apache-2.0

import pytest
from pytest_embedded_idf.dut import IdfDut


@pytest.mark.esp32s2
@pytest.mark.esp32s3
@pytest.mark.usb_device
def test_usb_device(dut: IdfDut) -> None:
dut.run_all_single_board_cases(group='usb_device')

0 comments on commit 87ddae1

Please sign in to comment.