mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-24 05:42:57 +08:00
31 lines
972 B
CMake
31 lines
972 B
CMake
|
idf_component_register(SRCS "main.c" "usb_descriptors.c"
|
||
|
INCLUDE_DIRS "."
|
||
|
REQUIRES freertos soc)
|
||
|
|
||
|
target_compile_options(${COMPONENT_TARGET} PUBLIC
|
||
|
"-DCFG_TUSB_MCU=OPT_MCU_ESP32S2"
|
||
|
)
|
||
|
|
||
|
idf_component_get_property( FREERTOS_ORIG_INCLUDE_PATH freertos ORIG_INCLUDE_PATH)
|
||
|
target_include_directories(${COMPONENT_TARGET} PUBLIC
|
||
|
"${FREERTOS_ORIG_INCLUDE_PATH}"
|
||
|
"${TOP}/hw"
|
||
|
"${TOP}/src"
|
||
|
)
|
||
|
|
||
|
target_sources(${COMPONENT_TARGET} PUBLIC
|
||
|
"${TOP}/src/tusb.c"
|
||
|
"${TOP}/src/common/tusb_fifo.c"
|
||
|
"${TOP}/src/device/usbd.c"
|
||
|
"${TOP}/src/device/usbd_control.c"
|
||
|
"${TOP}/src/class/cdc/cdc_device.c"
|
||
|
"${TOP}/src/class/dfu/dfu_rt_device.c"
|
||
|
"${TOP}/src/class/hid/hid_device.c"
|
||
|
"${TOP}/src/class/midi/midi_device.c"
|
||
|
"${TOP}/src/class/msc/msc_device.c"
|
||
|
"${TOP}/src/class/net/net_device.c"
|
||
|
"${TOP}/src/class/usbtmc/usbtmc_device.c"
|
||
|
"${TOP}/src/class/vendor/vendor_device.c"
|
||
|
"${TOP}/src/portable/espressif/esp32s2/dcd_esp32s2.c"
|
||
|
)
|