Kconfig 464 B

12345678910111213141516171819
  1. menuconfig RT_USING_RPMSG
  2. bool "Using Remote Processor Messaging (RPMSG)"
  3. select RT_USING_DEVICE_IPC
  4. select RT_USING_SYSTEM_WORKQUEUE
  5. default n
  6. config RT_RPMSG_CHAR_MSG_MAX
  7. int "Char device message receive max"
  8. depends on RT_USING_RPMSG
  9. default 64
  10. config RT_RPMSG_CHAR_MSG_SIZE_MAX
  11. int "Char device message size max"
  12. depends on RT_USING_RPMSG
  13. default 256
  14. if RT_USING_RPMSG
  15. osource "$(SOC_DM_RPMSG_DIR)/Kconfig"
  16. endif