Skip to content

Commit f51f91d

Browse files
committed
enable check back, revert to tinyusb v0.18.0~5
1 parent 3b0fe14 commit f51f91d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

device/esp_tinyusb/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ targets:
1111
dependencies:
1212
idf: '>=5.0' # IDF 4.x contains TinyUSB as submodule
1313
tinyusb:
14-
version: '>=0.17.0~2' # 0.17.0~2 is the first version that supports deinit
14+
version: '0.18.0~5'
1515
public: true

device/esp_tinyusb/test_apps/vbus_monitor/main/test_vbus_monitor.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -516,8 +516,7 @@ TEST_CASE("Emulated VBUS USB OTG 2.0, verify attach/detach events callback (via
516516
TEST_ASSERT_EQUAL_MESSAGE(ESP_OK, tinyusb_driver_install(&tusb_cfg), "Failed to install TinyUSB driver");
517517

518518
// When we do not set self_powered mode, the Bvalid override should be not enabled
519-
/* TODO: Enable the verification back after fixing the regression in TinyUSB v0.19.0 */
520-
// TEST_ASSERT_EQUAL_MESSAGE(0, USB_DWC_HS.gotgctl_reg.bvalidoven, "Bvalid override value is already enabled");
519+
TEST_ASSERT_EQUAL_MESSAGE(0, USB_DWC_HS.gotgctl_reg.bvalidoven, "Bvalid override value is already enabled");
521520

522521
// Set Bvalid signal to 1 initially
523522
USB_DWC_HS.gotgctl_reg.bvalidovval = 1;

0 commit comments

Comments
 (0)