We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2d486d commit 41801c2Copy full SHA for 41801c2
examples/CMakeLists.txt
@@ -8,3 +8,4 @@ project(tinyusb_examples C CXX ASM)
8
add_subdirectory(device)
9
add_subdirectory(dual)
10
add_subdirectory(host)
11
+add_subdirectory(typec)
examples/typec/CMakeLists.txt
@@ -0,0 +1,9 @@
1
+cmake_minimum_required(VERSION 3.17)
2
+
3
+include(${CMAKE_CURRENT_SOURCE_DIR}/../../hw/bsp/family_support.cmake)
4
5
+project(tinyusb_host_examples C CXX ASM)
6
+family_initialize_project(tinyusb_host_examples ${CMAKE_CURRENT_LIST_DIR})
7
+# family_add_subdirectory will filter what to actually add based on selected FAMILY
+family_add_subdirectory(power_delivery)
0 commit comments