Kconfig 646 B

123456789101112131415161718192021222324252627
  1. menu "IDF unit test"
  2. config UNITY_FREERTOS_PRIORITY
  3. int "Priority of Unity test task"
  4. default 5
  5. config UNITY_FREERTOS_CPU
  6. int "CPU to run Unity test task on"
  7. default 0
  8. config UNITY_FREERTOS_STACK_SIZE
  9. int "Stack size of Unity test task, in bytes"
  10. default 8192
  11. config UNITY_WARN_LEAK_LEVEL_GENERAL
  12. int "Leak warning level"
  13. default 255
  14. config UNITY_CRITICAL_LEAK_LEVEL_GENERAL
  15. int "Critical leak"
  16. default 1024
  17. config UNITY_CRITICAL_LEAK_LEVEL_LWIP
  18. int "Critical leak for UT which use LWIP component"
  19. default 4095
  20. endmenu