:orphan: .. title:: CONFIG_DOMAIN_CPUNET_BOARD .. kconfig:: CONFIG_DOMAIN_CPUNET_BOARD CONFIG_DOMAIN_CPUNET_BOARD ########################## *(No prompt -- not directly user assignable.)* Type: ``string`` Help ==== .. code-block:: none 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 bl5340_dvk_cpunet for Bluetooth applications. Help ==== .. code-block:: none 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. Help ==== .. code-block:: none 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 =================== (\ :kconfig:`BOARD_ENABLE_CPUNET ` && (\ :kconfig:`BOARD_BL5340_DVK_CPUAPP ` || \ :kconfig:`BOARD_BL5340_DVK_CPUAPP_NS `)) || (\ :kconfig:`BOARD_ENABLE_CPUNET ` && (\ :kconfig:`BOARD_NRF5340DK_NRF5340_CPUAPP ` || \ :kconfig:`BOARD_NRF5340DK_NRF5340_CPUAPP_NS `)) || (\ :kconfig:`BOARD_ENABLE_CPUNET ` && (\ :kconfig:`BOARD_THINGY53_NRF5340_CPUAPP ` || \ :kconfig:`BOARD_THINGY53_NRF5340_CPUAPP_NS `)) *(Includes any dependencies from ifs and menus.)* Defaults ======== - "bl5340_dvk_cpunet" if \ :kconfig:`BOARD_BL5340_DVK_CPUAPP ` || \ :kconfig:`BOARD_BL5340_DVK_CPUAPP_NS ` - "nrf5340dk_nrf5340_cpunet" if \ :kconfig:`BOARD_NRF5340DK_NRF5340_CPUAPP ` || \ :kconfig:`BOARD_NRF5340DK_NRF5340_CPUAPP_NS ` - "thingy53_nrf5340_cpunet" Kconfig definitions =================== At ``/arm/bl5340_dvk/Kconfig:84`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:37`` → ``/Kconfig:75`` Menu path: (Top) → Board Options → Enable nRF53 Network MCU .. code-block:: kconfig config DOMAIN_CPUNET_BOARD string default "bl5340_dvk_cpunet" if BOARD_BL5340_DVK_CPUAPP || BOARD_BL5340_DVK_CPUAPP_NS depends on BOARD_ENABLE_CPUNET && (BOARD_BL5340_DVK_CPUAPP || BOARD_BL5340_DVK_CPUAPP_NS) 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 bl5340_dvk_cpunet for Bluetooth applications. ---- At ``/arm/nrf5340dk_nrf5340/Kconfig:83`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:37`` → ``/Kconfig:75`` Menu path: (Top) → Board Options → Enable nRF53 Network MCU .. code-block:: kconfig config DOMAIN_CPUNET_BOARD string default "nrf5340dk_nrf5340_cpunet" if BOARD_NRF5340DK_NRF5340_CPUAPP || BOARD_NRF5340DK_NRF5340_CPUAPP_NS depends on BOARD_ENABLE_CPUNET && (BOARD_NRF5340DK_NRF5340_CPUAPP || BOARD_NRF5340DK_NRF5340_CPUAPP_NS) 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. ---- At ``/arm/thingy53_nrf5340/Kconfig:86`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:37`` → ``/Kconfig:75`` Menu path: (Top) → Board Options → Enable nRF53 Network MCU .. code-block:: kconfig config DOMAIN_CPUNET_BOARD string default "thingy53_nrf5340_cpunet" depends on BOARD_ENABLE_CPUNET && (BOARD_THINGY53_NRF5340_CPUAPP || BOARD_THINGY53_NRF5340_CPUAPP_NS) 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.)*