Files
esp-idf/components/usb/test_apps/common/CMakeLists.txt
Tomas Rezucha 6badd2cf25 fix(usb/host): Do not call heap_caps_get_allocated_size() in USB host driver
It causes heap corruption if heap poisoning is enabled on ESP32-P4.
It returns incorrect size on ESP32-S3.

Closes https://github.com/espressif/esp-idf/issues/15815
2025-04-29 14:50:11 +08:00

13 lines
495 B
CMake

idf_component_register(SRCS "dev_hid.c"
"dev_isoc.c"
"dev_msc.c"
"mock_msc.c"
"phy_common.c"
"hcd_common.c"
INCLUDE_DIRS
"../../private_include" # hcd and urb
"."
REQUIRES usb unity
PRIV_REQUIRES esp_mm
)