Skip to content

Commit

Permalink
refactor(cdc_and_usb_device): Splitted the tests to cdc and to dconn_…
Browse files Browse the repository at this point in the history
…detection
  • Loading branch information
roma-jam committed Jan 2, 2025
1 parent e5abc42 commit 43a535c
Show file tree
Hide file tree
Showing 18 changed files with 133 additions and 328 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.

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_cdc)
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 43a535c

Please sign in to comment.