mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-08-24 11:08:38 +08:00
26 lines
608 B
Plaintext
Executable File
26 lines
608 B
Plaintext
Executable File
menuconfig RT_USING_RPMSG
|
|
bool "Using Remote Processor Messaging (RPMSG)"
|
|
select RT_USING_DEVICE_IPC
|
|
select RT_USING_SYSTEM_WORKQUEUE
|
|
default n
|
|
|
|
config RT_RPMSG_CHAR_MSG_MAX
|
|
int "Char device message receive max"
|
|
depends on RT_USING_RPMSG
|
|
default 64
|
|
|
|
config RT_RPMSG_CHAR_MSG_SIZE_MAX
|
|
int "Char device message size max"
|
|
depends on RT_USING_RPMSG
|
|
default 256
|
|
|
|
config RT_RPMSG_RT_THREAD_VIRTIO
|
|
bool "RT-Thread common VirtIO RPMSG"
|
|
depends on RT_USING_RPMSG
|
|
select RT_USING_SLAB
|
|
default y
|
|
|
|
if RT_USING_RPMSG
|
|
osource "$(SOC_DM_RPMSG_DIR)/Kconfig"
|
|
endif
|