CONFIG_NRF_RPC_THREAD_POOL_SIZE

Number of threads in local thread pool

Type: int

Help

Thread pool is used to execute commands and events that arrived from the remote side. If there is no available threads then remote side will wait.

Direct dependencies

NRF_RPC

(Includes any dependencies from ifs and menus.)

Default

  • 3

Kconfig definition

At <nrfxlib>/nrf_rpc/Kconfig:57

Included via <Zephyr>/Kconfig:8<Zephyr>/Kconfig.zephyr:9<BuildDir>/Kconfig/Kconfig.modules:5<nrfxlib>/Kconfig.nrfxlib:15

Menu path: (Top) → Modules → Nordic nrfxlib → nRF RPC (Remote Procedure Call) library

config NRF_RPC_THREAD_POOL_SIZE
    int "Number of threads in local thread pool"
    range 1 32
    default 3
    depends on NRF_RPC
    help
      Thread pool is used to execute commands and events that arrived from
      the remote side. If there is no available threads then remote side
      will wait.

(The ‘depends on’ condition includes propagated dependencies from ifs and menus.)