Kconfig 612 B

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