nuttx/drivers/ipcc/Kconfig
Xiang Xiao a446b5816f mm/circbuf: Remove MM_CIRCBUF option from Kconfig
since the linker can remove the unused object file from the final image

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
2022-11-08 10:18:27 -03:00

33 lines
849 B
Plaintext

menuconfig IPCC
bool "IPCC (Inter Processor Communication Controller) driver"
depends on EXPERIMENTAL
default n
---help---
IPCC driver. Generic driver to communicate between two
processors via character device.
comment "IPCC driver requires CONFIG_EXPERIMENTAL"
depends on !EXPERIMENTAL
if IPCC
config IPCC_BUFFERED
bool "Enable buffering in driver"
default y
---help---
If enabled, data read and written to/from IPCC will be
buffered in driver. This will reduce thread waiting for
read and write to complete during busy period, but it
will also increase RAM usage.
Buffer size for tx and rx can be separately defined for
each channel during driver registration.
config IPCC_NPOLLWAITERS
int "Number of poll threads"
default 4
---help---
Maximum number of threads that can be waiting for POLL events.
endif # IPCC