-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(cdc_and_usb_device): Splitted the tests to cdc and to dconn_…
…detection
- Loading branch information
Showing
19 changed files
with
145 additions
and
340 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
18 changes: 0 additions & 18 deletions
18
device/esp_tinyusb/test_apps/cdc_and_usb_device/main/test_bvalid_sig.h
This file was deleted.
Oops, something went wrong.
252 changes: 0 additions & 252 deletions
252
device/esp_tinyusb/test_apps/cdc_and_usb_device/main/test_descriptors_config.c
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
device/esp_tinyusb/test_apps/cdc_and_usb_device/main/test_descriptors_config.h
This file was deleted.
Oops, something went wrong.
35 changes: 0 additions & 35 deletions
35
device/esp_tinyusb/test_apps/cdc_and_usb_device/main/tud_global_cb.c
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
device/esp_tinyusb/test_apps/cdc_and_usb_device/pytest_usb_device.py
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# The following lines of boilerplate have to be in your project's | ||
# CMakeLists in this exact order for cmake to work correctly | ||
cmake_minimum_required(VERSION 3.16) | ||
include($ENV{IDF_PATH}/tools/cmake/project.cmake) | ||
|
||
# "Trim" the build. Include the minimal set of components, main, and anything it depends on. | ||
set(COMPONENTS main) | ||
|
||
project(test_app_cdc) |
4 changes: 4 additions & 0 deletions
4
device/esp_tinyusb/test_apps/dconn_detection/main/CMakeLists.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
idf_component_register(SRC_DIRS . | ||
INCLUDE_DIRS . | ||
REQUIRES unity | ||
WHOLE_ARCHIVE) |
5 changes: 5 additions & 0 deletions
5
device/esp_tinyusb/test_apps/dconn_detection/main/idf_component.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
## IDF Component Manager Manifest File | ||
dependencies: | ||
espressif/esp_tinyusb: | ||
version: "*" | ||
override_path: "../../../" |
Oops, something went wrong.