mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
3abeee00d0
When we try to uninstall usb_host library on multi-core SoC (ESP32S3) the USB interrupt can be triggered even after it was disabled on one CPU
17 lines
463 B
Plaintext
17 lines
463 B
Plaintext
# Configure TinyUSB, it will be used to mock USB devices
|
|
CONFIG_TINYUSB=y
|
|
CONFIG_TINYUSB_MSC_ENABLED=y
|
|
CONFIG_TINYUSB_CDC_ENABLED=y
|
|
CONFIG_TINYUSB_CDC_COUNT=2
|
|
|
|
# Disable watchdogs, they'd get triggered during unity interactive menu
|
|
CONFIG_ESP_INT_WDT=n
|
|
CONFIG_ESP_TASK_WDT=n
|
|
|
|
# Run-time checks of Heap and Stack
|
|
CONFIG_HEAP_POISONING_COMPREHENSIVE=y
|
|
CONFIG_COMPILER_STACK_CHECK_MODE_STRONG=y
|
|
CONFIG_COMPILER_STACK_CHECK=y
|
|
|
|
CONFIG_UNITY_ENABLE_BACKTRACE_ON_FAIL=y
|