Skip to content

Commit

Permalink
Merge pull request #108 from espressif/feature/dconn_detection_test
Browse files Browse the repository at this point in the history
refactor(cdc_and_usb_device): Split the tests for cdc and disconnection verification (part1/2)
  • Loading branch information
roma-jam authored Jan 7, 2025
2 parents c8b79f6 + a0bec58 commit d8041fd
Show file tree
Hide file tree
Showing 19 changed files with 145 additions and 340 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ 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_and_usb_device)
project(test_app_cdc)

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

9 changes: 9 additions & 0 deletions device/esp_tinyusb/test_apps/dconn_detection/CMakeLists.txt
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_dconn_detection)
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)
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: "../../../"
Loading

0 comments on commit d8041fd

Please sign in to comment.