Kconfig 668 B

12345678910111213141516171819202122232425
  1. menuconfig RT_USING_DEVICE_IPC
  2. bool "Using device drivers IPC"
  3. default y
  4. select RT_USING_MUTEX
  5. select RT_USING_SEMAPHORE
  6. if RT_USING_DEVICE_IPC
  7. config RT_UNAMED_PIPE_NUMBER
  8. int "The number of unamed pipe"
  9. default 64
  10. config RT_USING_SYSTEM_WORKQUEUE
  11. bool "Using system default workqueue"
  12. default n
  13. if RT_USING_SYSTEM_WORKQUEUE
  14. config RT_SYSTEM_WORKQUEUE_STACKSIZE
  15. int "The stack size for system workqueue thread"
  16. default 2048
  17. config RT_SYSTEM_WORKQUEUE_PRIORITY
  18. int "The priority level of system workqueue thread"
  19. default 23
  20. endif
  21. endif