能源管控程序
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

31 rader
738 B

  1. menu "AsyncTCP Configuration"
  2. choice ASYNC_TCP_RUNNING_CORE
  3. bool "Core on which AsyncTCP's thread is running"
  4. default ASYNC_TCP_RUN_CORE1
  5. help
  6. Select on which core AsyncTCP is running
  7. config ASYNC_TCP_RUN_CORE0
  8. bool "CORE 0"
  9. config ASYNC_TCP_RUN_CORE1
  10. bool "CORE 1"
  11. config ASYNC_TCP_RUN_NO_AFFINITY
  12. bool "BOTH"
  13. endchoice
  14. config ASYNC_TCP_RUNNING_CORE
  15. int
  16. default 0 if ASYNC_TCP_RUN_CORE0
  17. default 1 if ASYNC_TCP_RUN_CORE1
  18. default -1 if ASYNC_TCP_RUN_NO_AFFINITY
  19. config ASYNC_TCP_USE_WDT
  20. bool "Enable WDT for the AsyncTCP task"
  21. default "y"
  22. help
  23. Enable WDT for the AsyncTCP task, so it will trigger if a handler is locking the thread.
  24. endmenu