:orphan: .. title:: DOMAIN_CPUNET_BOARD .. option:: CONFIG_DOMAIN_CPUNET_BOARD *(No prompt -- not directly user assignable.)* Type: ``string`` Help ==== The board which will be used for CPUNET domain when creating a multi image application where one or more images should be located on another board. For example hci_rpmsg on the nRF5340_cpunet for Bluetooth applications. Direct dependencies =================== \ :option:`BOARD_ENABLE_CPUNET ` && (\ :option:`BOARD_NRF5340PDK_NRF5340_CPUAPP ` || \ :option:`BOARD_NRF5340PDK_NRF5340_CPUAPPNS ` || \ :option:`BOARD_NRF5340DK_NRF5340_CPUAPP ` || \ :option:`BOARD_NRF5340DK_NRF5340_CPUAPPNS `) *(Includes any dependencies from ifs and menus.)* Defaults ======== - "nrf5340pdk_nrf5340_cpunet" if \ :option:`BOARD_NRF5340PDK_NRF5340_CPUAPP ` || \ :option:`BOARD_NRF5340PDK_NRF5340_CPUAPPNS ` - "nrf5340dk_nrf5340_cpunet" if \ :option:`BOARD_NRF5340DK_NRF5340_CPUAPP ` || \ :option:`BOARD_NRF5340DK_NRF5340_CPUAPPNS ` Kconfig definition ================== .. highlight:: kconfig At ``boards/arm/nrf5340dk_nrf5340/Kconfig:83`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:27`` → ``boards/Kconfig:57`` Menu path: (Top) → Board Options → Enable nRF53 Network MCU .. parsed-literal:: config DOMAIN_CPUNET_BOARD string default "nrf5340pdk_nrf5340_cpunet" if \ :option:`BOARD_NRF5340PDK_NRF5340_CPUAPP ` || \ :option:`BOARD_NRF5340PDK_NRF5340_CPUAPPNS ` default "nrf5340dk_nrf5340_cpunet" if \ :option:`BOARD_NRF5340DK_NRF5340_CPUAPP ` || \ :option:`BOARD_NRF5340DK_NRF5340_CPUAPPNS ` depends on \ :option:`BOARD_ENABLE_CPUNET ` && (\ :option:`BOARD_NRF5340PDK_NRF5340_CPUAPP ` || \ :option:`BOARD_NRF5340PDK_NRF5340_CPUAPPNS ` || \ :option:`BOARD_NRF5340DK_NRF5340_CPUAPP ` || \ :option:`BOARD_NRF5340DK_NRF5340_CPUAPPNS `) help The board which will be used for CPUNET domain when creating a multi image application where one or more images should be located on another board. For example hci_rpmsg on the nRF5340_cpunet for Bluetooth applications. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*