mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-10 04:43:33 +00:00

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
13 lines
495 B
CMake
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
|
|
)
|