2020-11-05 20:30:49 +08:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
2023-10-27 18:56:33 +08:00
|
|
|
menu "RPMSG Socket Support"
|
2020-11-05 20:30:49 +08:00
|
|
|
depends on NET
|
|
|
|
|
|
|
|
config NET_RPMSG
|
2023-10-27 18:56:33 +08:00
|
|
|
bool "RPMSG domain (remote) sockets"
|
2024-02-04 14:30:39 +08:00
|
|
|
depends on RPMSG
|
2020-11-05 20:30:49 +08:00
|
|
|
default n
|
|
|
|
---help---
|
2023-10-27 18:56:33 +08:00
|
|
|
Enable or disable RPMSG (aka remote) sockets.
|
2020-11-05 20:30:49 +08:00
|
|
|
|
|
|
|
if NET_RPMSG
|
|
|
|
|
|
|
|
config NET_RPMSG_RXBUF_SIZE
|
2023-10-27 18:56:33 +08:00
|
|
|
int "RPMSG socket rx buffer size"
|
2020-11-05 20:30:49 +08:00
|
|
|
default 1024
|
|
|
|
---help---
|
2023-10-27 18:56:33 +08:00
|
|
|
Socket RPMSG rx buffer size, for recv slowly
|
2020-11-05 20:30:49 +08:00
|
|
|
|
|
|
|
config NET_RPMSG_NPOLLWAITERS
|
2023-10-27 18:56:33 +08:00
|
|
|
int "RPMSG socket number of poll waiters"
|
2020-11-05 20:30:49 +08:00
|
|
|
default 4
|
|
|
|
---help---
|
2023-10-27 18:56:33 +08:00
|
|
|
Socket RPMSG number of poll waiters
|
2020-11-05 20:30:49 +08:00
|
|
|
|
|
|
|
endif # NET_RPMSG
|
|
|
|
|
|
|
|
endmenu # Rpmsg Domain Sockets
|