Segger RTT (NCS 3.2.4)

We are developing the nRF5340 for the Thingy91X based on Connectivity Bridge (NCS 3.2.4).
I want to output logs from SWD and view them with RTT Viewer, but even when I call LOG_INF() or printk() at the beginning of the main function, no logs are output at all.
The following definitions are already present in prj.conf, but are there any other settings that need to be configured?

prj.conf

# Logging
CONFIG_LOG=y
CONFIG_USE_SEGGER_RTT=y
CONFIG_LOG_BACKEND_RTT=y
CONFIG_LOG_BACKEND_RTT_MODE_DROP=y
CONFIG_LOG_MODE_IMMEDIATE=y
CONFIG_LOG_DEFAULT_LEVEL=4
CONFIG_LOG_PRINTK=y

# Console
CONFIG_CONSOLE=y
CONFIG_RTT_CONSOLE=y
CONFIG_UART_CONSOLE=n
CONFIG_LOG_BACKEND_UART=n
CONFIG_SEGGER_RTT_BUFFER_SIZE_UP=1024
CONFIG_SEGGER_RTT_BUFFER_SIZE_DOWN=16

# printk support
CONFIG_PRINTK=y


main.c
 
/*
 * Copyright (c) 2020 Nordic Semiconductor ASA
 *
 * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
 */

#include <zephyr/kernel.h>

#include <app_event_manager.h>
#include <hw_id.h>

#define MODULE main
#include "module_state_event.h"

#include <zephyr/logging/log.h>
LOG_MODULE_REGISTER(MODULE);

static uint8_t usb_serial_str[] = "THINGY91_12PLACEHLDRS";

/* Overriding weak function to set iSerialNumber at runtime. */
uint8_t *usb_update_sn_string_descriptor(void)
{
#if defined(CONFIG_SOC_SERIES_NRF52X)
	snprintk(usb_serial_str, sizeof(usb_serial_str), "THINGY91_%04X%08X",
				(uint32_t)(NRF_FICR->DEVICEADDR[1] & 0x0000FFFF)|0x0000C000,
				(uint32_t)NRF_FICR->DEVICEADDR[0]);
#else
	char buf[HW_ID_LEN] = {0};

	if (!hw_id_get(buf, ARRAY_SIZE(buf))) {
		snprintk(usb_serial_str, sizeof(usb_serial_str), "THINGY91X_%s", buf);
	}
#endif
	return usb_serial_str;
}

int main(void)
{
	LOG_ERR("This is a error message!");
	LOG_WRN("This is a warning message!");
	LOG_INF("This is a information message!");
	LOG_DBG("This is a debugging message!");
	printk("This is a printk message!");

	if (app_event_manager_init()) {
		LOG_ERR("Application Event Manager not initialized");
	} else {
		module_set_state(MODULE_STATE_READY);
	}
	return 0;
}
 

Parents
  • let me recommend to use rather the snippet:

    west build -b <board> ... -- -D<app>_SNIPPET="nrf91-modem-trace-rtt" 

    With your application directory in <app>, e.g. -Dmy_demo_SNIPPET for an app in directory "my_demo".

  • Hello, 

    I added nrf91-modem-trace-rtt to the build conditions, but I'm getting a build error.

    Building connectivity_bridge_v3-2-4
    west build --build-dir c:/ncs/applications/connectivity_bridge_v3-2-4/build c:/ncs/applications/connectivity_bridge_v3-2-4 --pristine --board thingy91x/nrf5340/cpuapp -- -DCONFIG_DEBUG_THREAD_INFO=y -DSNIPPET=nrf91-modem-trace-rtt
    
    -- west build: generating a build system
    -- Found Python3: C:/ncs/toolchains/fd21892d0f/opt/bin/python.exe (found suitable version "3.12.4", minimum required is "3.10") found components: Interpreter 
    -- Cache files will be written to: C:/ncs/v3.2.4/zephyr/.cache
    -- Found west (found suitable version "1.4.0", minimum required is "0.14.0")
    -- Board: thingy91x, qualifiers: nrf5340/cpuapp
    -- Snippet(s): nrf91-modem-trace-rtt
    Parsing c:/ncs/applications/connectivity_bridge_v3-2-4/Kconfig.sysbuild
    Loaded configuration 'C:/ncs/applications/connectivity_bridge_v3-2-4/build/_sysbuild/empty.conf'
    Merged configuration 'c:/ncs/applications/connectivity_bridge_v3-2-4/sysbuild.conf'
    Configuration saved to 'C:/ncs/applications/connectivity_bridge_v3-2-4/build/zephyr/.config'
    Kconfig header saved to 'C:/ncs/applications/connectivity_bridge_v3-2-4/build/_sysbuild/autoconf.h'
    -- 
       *****************************
       * Running CMake for mcuboot *
       *****************************
    -- Application: C:/ncs/v3.2.4/bootloader/mcuboot/boot/zephyr
    -- CMake version: 3.21.0
    -- Found Python3: C:/ncs/toolchains/fd21892d0f/opt/bin/python.exe (found suitable version "3.12.4", minimum required is "3.10") found components: Interpreter 
    -- Cache files will be written to: C:/ncs/v3.2.4/zephyr/.cache
    -- Zephyr version: 4.2.99 (C:/ncs/v3.2.4/zephyr)
    -- Found west (found suitable version "1.4.0", minimum required is "0.14.0")
    -- Board: thingy91x, qualifiers: nrf5340/cpuapp
    -- Snippet(s): nrf91-modem-trace-rtt
    -- Found host-tools: zephyr 0.17.0 (C:/ncs/toolchains/fd21892d0f/opt/zephyr-sdk)
    -- Found toolchain: zephyr 0.17.0 (C:/ncs/toolchains/fd21892d0f/opt/zephyr-sdk)
    -- Found Dtc: C:/ncs/toolchains/fd21892d0f/opt/bin/dtc.exe (found suitable version "1.4.7", minimum required is "1.4.6") 
    -- Found BOARD.dts: C:/ncs/v3.2.4/nrf/boards/nordic/thingy91x/thingy91x_nrf5340_cpuapp.dts
    -- Found devicetree overlay: C:/ncs/applications/connectivity_bridge_v3-2-4/sysbuild/mcuboot/app.overlay
    -- Found devicetree overlay: C:/ncs/v3.2.4/nrf/modules/mcuboot/flash_sim.overlay
    -- Generated zephyr.dts: C:/ncs/applications/connectivity_bridge_v3-2-4/build/mcuboot/zephyr/zephyr.dts
    -- Generated pickled edt: C:/ncs/applications/connectivity_bridge_v3-2-4/build/mcuboot/zephyr/edt.pickle
    -- Generated devicetree_generated.h: C:/ncs/applications/connectivity_bridge_v3-2-4/build/mcuboot/zephyr/include/generated/zephyr/devicetree_generated.h
    Loading Zephyr module(s) (Zephyr base): sysbuild_default
    -- Sysbuild assigned MCUboot image IDs:
       * Application: 0
       * Network: 1
       * MCUboot b0 update: 2
    Loading Zephyr default modules (Zephyr base).
    
    warning: MBEDTLS_CFG_FILE (defined at C:/ncs/v3.2.4/bootloader/mcuboot/boot/zephyr/Kconfig:536,
    C:/ncs/v3.2.4/nrf/modules/..\subsys\nrf_security/Kconfig:72,
    C:/ncs/v3.2.4/zephyr/modules/mbedtls/Kconfig:59, modules\mbedtls\Kconfig:59) was assigned the value
    'mcuboot-mbedtls-cfg.h' but got the value ''. See
    http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_MBEDTLS_CFG_FILE and/or look up
    MBEDTLS_CFG_FILE in the menuconfig/guiconfig interface. The Application Development Primer, Setting
    Configuration Values, and Kconfig - Tips and Best Practices sections of the manual might be helpful
    too.
    
    
    warning: NRF_MODEM_LIB_TRACE (defined at
    C:/ncs/v3.2.4/nrf/modules/..\lib\nrf_modem_lib\Kconfig.modemlib:131) was assigned the value 'y' but
    got the value 'n'. Check these unsatisfied dependencies: (SOC_SERIES_NRF91X || SOC_SERIES_NRF92X ||
    UNITY) (=n), NRF_MODEM_LIB (=n). See
    http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_NRF_MODEM_LIB_TRACE and/or look up
    NRF_MODEM_LIB_TRACE in the menuconfig/guiconfig interface. The Application Development Primer,
    Setting Configuration Values, and Kconfig - Tips and Best Practices sections of the manual might be
    helpful too.
    
    
    warning: UART_NRFX (defined at drivers/serial\Kconfig.nrfx:6) was assigned the value 'y' but got the
    value 'n'. Check these unsatisfied dependencies: (DT_HAS_NORDIC_NRF_UART_ENABLED ||
    DT_HAS_NORDIC_NRF_UARTE_ENABLED) (=n). See
    http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_UART_NRFX and/or look up UART_NRFX in the
    menuconfig/guiconfig interface. The Application Development Primer, Setting Configuration Values,
    and Kconfig - Tips and Best Practices sections of the manual might be helpful too.
    
    
    warning: LOG_DEFAULT_LEVEL (defined at subsys/logging\Kconfig.filtering:13) was assigned the value
    '0' but got the value ''. Check these unsatisfied dependencies: LOG (=n). See
    http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_LOG_DEFAULT_LEVEL and/or look up
    LOG_DEFAULT_LEVEL in the menuconfig/guiconfig interface. The Application Development Primer, Setting
    Configuration Values, and Kconfig - Tips and Best Practices sections of the manual might be helpful
    too.
    
    
    warning: The choice symbol MCUBOOT_LOG_LEVEL_INF (defined at
    subsys/logging/Kconfig.template.log_config:17) was selected (set =y), but no symbol ended up as the
    choice selection. See http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_MCUBOOT_LOG_LEVEL_INF
    and/or look up MCUBOOT_LOG_LEVEL_INF in the menuconfig/guiconfig interface. The Application
    Development Primer, Setting Configuration Values, and Kconfig - Tips and Best Practices sections of
    the manual might be helpful too.
    
    
    warning: The choice symbol NRF_MODEM_LIB_TRACE_BACKEND_RTT (defined at
    C:/ncs/v3.2.4/nrf/modules/..\lib\nrf_modem_lib\trace_backends\rtt/Kconfig:10) was selected (set =y),
    but no symbol ended up as the choice selection. See
    http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_NRF_MODEM_LIB_TRACE_BACKEND_RTT and/or look
    up NRF_MODEM_LIB_TRACE_BACKEND_RTT in the menuconfig/guiconfig interface. The Application
    Development Primer, Setting Configuration Values, and Kconfig - Tips and Best Practices sections of
    the manual might be helpful too.
    
    
    warning: The choice symbol LOG_MODE_MINIMAL (defined at subsys/logging\Kconfig.mode:29) was selected
    (set =y), but no symbol ended up as the choice selection. See
    http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_LOG_MODE_MINIMAL and/or look up
    LOG_MODE_MINIMAL in the menuconfig/guiconfig interface. The Application Development Primer, Setting
    Configuration Values, and Kconfig - Tips and Best Practices sections of the manual might be helpful
    too.
    
    
    warning: Deprecated symbol SOC_DCDC_NRF53X_APP is enabled.
    
    
    warning: Deprecated symbol SOC_DCDC_NRF53X_NET is enabled.
    
    
    warning: Deprecated symbol USB_DEVICE_DRIVER is enabled.
    
    
    warning: Deprecated symbol USB_DEVICE_STACK is enabled.
    
    MCUBoot bootloader key file: C:/ncs/v3.2.4/bootloader/mcuboot/root-ec-p256.pem
    CMake Warning at CMakeLists.txt:442 (message):
      WARNING: Using default MCUboot signing key file, this file is for debug use
      only and is not secure!
    
    
    Loading Zephyr default modules (Zephyr base).
    Parsing C:/ncs/v3.2.4/bootloader/mcuboot/boot/zephyr/Kconfig
    Loaded configuration 'C:/ncs/v3.2.4/nrf/boards/nordic/thingy91x/thingy91x_nrf5340_cpuapp_defconfig'
    Merged configuration 'C:/ncs/applications/connectivity_bridge_v3-2-4/sysbuild/mcuboot/prj.conf'
    Merged configuration 'C:/ncs/applications/connectivity_bridge_v3-2-4/sysbuild/mcuboot/boards/thingy91x_nrf5340_cpuapp.conf'
    Merged configuration 'C:/ncs/v3.2.4/nrf/snippets/nrf91-modem-trace-rtt/overlay-modem-trace-rtt.conf'
    Merged configuration 'C:/ncs/v3.2.4/nrf/subsys/bootloader/image/log_minimal.conf'
    Merged configuration 'C:/ncs/v3.2.4/bootloader/mcuboot/boot/zephyr/external_crypto.conf'
    Merged configuration 'C:/ncs/applications/connectivity_bridge_v3-2-4/build/mcuboot/zephyr/.config.sysbuild'
    Configuration saved to 'C:/ncs/applications/connectivity_bridge_v3-2-4/build/mcuboot/zephyr/.config'
    Kconfig header saved to 'C:/ncs/applications/connectivity_bridge_v3-2-4/build/mcuboot/zephyr/include/generated/zephyr/autoconf.h'
    -- Found GnuLd: c:/ncs/toolchains/fd21892d0f/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi/bin/ld.bfd.exe (found version "2.38") 
    -- The C compiler identification is GNU 12.2.0
    -- The CXX compiler identification is GNU 12.2.0
    -- The ASM compiler identification is GNU
    -- Found assembler: C:/ncs/toolchains/fd21892d0f/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.exe
    -- Found gen_kobject_list: C:/ncs/v3.2.4/zephyr/scripts/build/gen_kobject_list.py
    -- Configuring done
    -- Generating done
    -- Build files have been written to: C:/ncs/applications/connectivity_bridge_v3-2-4/build/mcuboot
    -- 
       *******************************
       * Running CMake for ipc_radio *
       *******************************
    -- Application: C:/ncs/v3.2.4/nrf/applications/ipc_radio
    -- CMake version: 3.21.0
    -- Found Python3: C:/ncs/toolchains/fd21892d0f/opt/bin/python.exe (found suitable version "3.12.4", minimum required is "3.10") found components: Interpreter 
    -- Cache files will be written to: C:/ncs/v3.2.4/zephyr/.cache
    -- Zephyr version: 4.2.99 (C:/ncs/v3.2.4/zephyr)
    -- Found west (found suitable version "1.4.0", minimum required is "0.14.0")
    -- Board: thingy91x, qualifiers: nrf5340/cpunet
    -- Snippet(s): nrf91-modem-trace-rtt
    -- Found host-tools: zephyr 0.17.0 (C:/ncs/toolchains/fd21892d0f/opt/zephyr-sdk)
    -- Found toolchain: zephyr 0.17.0 (C:/ncs/toolchains/fd21892d0f/opt/zephyr-sdk)
    -- Found Dtc: C:/ncs/toolchains/fd21892d0f/opt/bin/dtc.exe (found suitable version "1.4.7", minimum required is "1.4.6") 
    -- Found BOARD.dts: C:/ncs/v3.2.4/nrf/boards/nordic/thingy91x/thingy91x_nrf5340_cpunet.dts
    -- Generated zephyr.dts: C:/ncs/applications/connectivity_bridge_v3-2-4/build/ipc_radio/zephyr/zephyr.dts
    -- Generated pickled edt: C:/ncs/applications/connectivity_bridge_v3-2-4/build/ipc_radio/zephyr/edt.pickle
    -- Generated devicetree_generated.h: C:/ncs/applications/connectivity_bridge_v3-2-4/build/ipc_radio/zephyr/include/generated/zephyr/devicetree_generated.h
    
    warning: NRF_MODEM_LIB_TRACE (defined at
    C:/ncs/v3.2.4/nrf/modules/..\lib\nrf_modem_lib\Kconfig.modemlib:131) was assigned the value 'y' but
    got the value 'n'. Check these unsatisfied dependencies: (SOC_SERIES_NRF91X || SOC_SERIES_NRF92X ||
    UNITY) (=n), NRF_MODEM_LIB (=n). See
    http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_NRF_MODEM_LIB_TRACE and/or look up
    NRF_MODEM_LIB_TRACE in the menuconfig/guiconfig interface. The Application Development Primer,
    Setting Configuration Values, and Kconfig - Tips and Best Practices sections of the manual might be
    helpful too.
    
    
    warning: The choice symbol NRF_MODEM_LIB_TRACE_BACKEND_RTT (defined at
    C:/ncs/v3.2.4/nrf/modules/..\lib\nrf_modem_lib\trace_backends\rtt/Kconfig:10) was selected (set =y),
    but no symbol ended up as the choice selection. See
    http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_NRF_MODEM_LIB_TRACE_BACKEND_RTT and/or look
    up NRF_MODEM_LIB_TRACE_BACKEND_RTT in the menuconfig/guiconfig interface. The Application
    Development Primer, Setting Configuration Values, and Kconfig - Tips and Best Practices sections of
    the manual might be helpful too.
    
    Parsing C:/ncs/v3.2.4/nrf/applications/ipc_radio/Kconfig
    Loaded configuration 'C:/ncs/v3.2.4/nrf/boards/nordic/thingy91x/thingy91x_nrf5340_cpunet_defconfig'
    Merged configuration 'C:/ncs/v3.2.4/nrf/applications/ipc_radio/prj.conf'
    Merged configuration 'C:/ncs/v3.2.4/nrf/snippets/nrf91-modem-trace-rtt/overlay-modem-trace-rtt.conf'
    Merged configuration 'C:/ncs/v3.2.4/nrf/applications/ipc_radio/overlay-bt_hci_ipc.conf'
    Merged configuration 'C:/ncs/applications/connectivity_bridge_v3-2-4/build/ipc_radio/zephyr/.config.sysbuild'
    Configuration saved to 'C:/ncs/applications/connectivity_bridge_v3-2-4/build/ipc_radio/zephyr/.config'
    Kconfig header saved to 'C:/ncs/applications/connectivity_bridge_v3-2-4/build/ipc_radio/zephyr/include/generated/zephyr/autoconf.h'
    -- Found GnuLd: c:/ncs/toolchains/fd21892d0f/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi/bin/ld.bfd.exe (found version "2.38") 
    -- The C compiler identification is GNU 12.2.0
    -- The CXX compiler identification is GNU 12.2.0
    -- The ASM compiler identification is GNU
    -- Found assembler: C:/ncs/toolchains/fd21892d0f/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.exe
    -- Build type:  
    -- Host-- libmetal version: 1.8.0 (C:/ncs/v3.2.4/nrf/applications/ipc_radio)
    :    Windows/AMD64
    -- Target:  Generic/arm
    -- Machine: arm
    -- Vendor: none
    -- Looking for include file stdatomic.h
    -- Looking for include file stdatomic.h - found
    -- open-amp version: 1.8.0 (C:/ncs/v3.2.4/modules/lib/open-amp/open-amp)
    -- Host:    Windows/AMD64
    -- Target:  Generic/arm
    -- Machine: arm
    [0m-- C_FLAGS :  -Wall -Wextra
    -- Looking for include file fcntl.h
    -- Looking for include file fcntl.h - found
    -- Found gen_kobject_list: C:/ncs/v3.2.4/zephyr/scripts/build/gen_kobject_list.py
    CMake Warning at C:/ncs/v3.2.4/zephyr/CMakeLists.txt:1096 (message):
      No SOURCES given to Zephyr library: drivers__console
    
      Excluding target from build.
    
    
    [33mCMake Warning at C:/ncs/v3.2.4/zephyr/CMakeLists.txt:2321 (message):
      __ASSERT() statements are globally ENABLED
    
    
    -- Configuring done
    -- Generating done
    -- Build files have been written to: C:/ncs/applications/connectivity_bridge_v3-2-4/build/ipc_radio
    -- 
       *************************
       * Running CMake for b0n *
       *************************
    Loading Zephyr default modules (Zephyr base).
    -- Application: C:/ncs/v3.2.4/nrf/samples/nrf5340/netboot
    -- CMake version: 3.21.0
    -- Found Python3: C:/ncs/toolchains/fd21892d0f/opt/bin/python.exe (found suitable version "3.12.4", minimum required is "3.10") found components: Interpreter 
    -- Cache files will be written to: C:/ncs/v3.2.4/zephyr/.cache
    -- Zephyr version: 4.2.99 (C:/ncs/v3.2.4/zephyr)
    -- Found west (found suitable version "1.4.0", minimum required is "0.14.0")
    -- Board: thingy91x, qualifiers: nrf5340/cpunet
    -- Snippet(s): nrf91-modem-trace-rtt
    -- Found host-tools: zephyr 0.17.0 (C:/ncs/toolchains/fd21892d0f/opt/zephyr-sdk)
    -- Found toolchain: zephyr 0.17.0 (C:/ncs/toolchains/fd21892d0f/opt/zephyr-sdk)
    -- Found Dtc: C:/ncs/toolchains/fd21892d0f/opt/bin/dtc.exe (found suitable version "1.4.7", minimum required is "1.4.6") 
    -- Found BOARD.dts: C:/ncs/v3.2.4/nrf/boards/nordic/thingy91x/thingy91x_nrf5340_cpunet.dts
    -- Generated zephyr.dts: C:/ncs/applications/connectivity_bridge_v3-2-4/build/b0n/zephyr/zephyr.dts
    -- Generated pickled edt: C:/ncs/applications/connectivity_bridge_v3-2-4/build/b0n/zephyr/edt.pickle
    -- Generated devicetree_generated.h: C:/ncs/applications/connectivity_bridge_v3-2-4/build/b0n/zephyr/include/generated/zephyr/devicetree_generated.h
    
    warning: NRF_MODEM_LIB_TRACE (defined at
    C:/ncs/v3.2.4/nrf/modules/..\lib\nrf_modem_lib\Kconfig.modemlib:131) was assigned the value 'y' but
    got the value 'n'. Check these unsatisfied dependencies: (SOC_SERIES_NRF91X || SOC_SERIES_NRF92X ||
    UNITY) (=n), NRF_MODEM_LIB (=n). See
    http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_NRF_MODEM_LIB_TRACE and/or look up
    NRF_MODEM_LIB_TRACE in the menuconfig/guiconfig interface. The Application Development Primer,
    Setting Configuration Values, and Kconfig - Tips and Best Practices sections of the manual might be
    helpful too.
    
    
    warning: UART_CONSOLE (defined at drivers/console/Kconfig:42) was assigned the value 'y' but got the
    value 'n'. Check these unsatisfied dependencies: SERIAL_HAS_DRIVER (=n). See
    http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_UART_CONSOLE and/or look up UART_CONSOLE in
    the menuconfig/guiconfig interface. The Application Development Primer, Setting Configuration
    Values, and Kconfig - Tips and Best Practices sections of the manual might be helpful too.
    
    
    warning: The choice symbol NRF_MODEM_LIB_TRACE_BACKEND_RTT (defined at
    C:/ncs/v3.2.4/nrf/modules/..\lib\nrf_modem_lib\trace_backends\rtt/Kconfig:10) was selected (set =y),
    but no symbol ended up as the choice selection. See
    http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_NRF_MODEM_LIB_TRACE_BACKEND_RTT and/or look
    up NRF_MODEM_LIB_TRACE_BACKEND_RTT in the menuconfig/guiconfig interface. The Application
    Development Primer, Setting Configuration Values, and Kconfig - Tips and Best Practices sections of
    the manual might be helpful too.
    
    Parsing C:/ncs/v3.2.4/nrf/samples/nrf5340/netboot/Kconfig
    Loaded configuration 'C:/ncs/v3.2.4/nrf/boards/nordic/thingy91x/thingy91x_nrf5340_cpunet_defconfig'
    Merged configuration 'C:/ncs/v3.2.4/nrf/samples/nrf5340/netboot/prj.conf'
    Merged configuration 'C:/ncs/v3.2.4/nrf/snippets/nrf91-modem-trace-rtt/overlay-modem-trace-rtt.conf'
    Merged configuration 'C:/ncs/applications/connectivity_bridge_v3-2-4/build/b0n/zephyr/.config.sysbuild'
    Configuration saved to 'C:/ncs/applications/connectivity_bridge_v3-2-4/build/b0n/zephyr/.config'
    Kconfig header saved to 'C:/ncs/applications/connectivity_bridge_v3-2-4/build/b0n/zephyr/include/generated/zephyr/autoconf.h'
    -- Found GnuLd: c:/ncs/toolchains/fd21892d0f/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi/bin/ld.bfd.exe (found version "2.38") 
    -- The C compiler identification is GNU 12.2.0
    -- The CXX compiler identification is GNU 12.2.0
    -- The ASM compiler identification is GNU
    -- Found assembler: C:/ncs/toolchains/fd21892d0f/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.exe
    -- Found gen_kobject_list: C:/ncs/v3.2.4/zephyr/scripts/build/gen_kobject_list.py
    [33mCMake Warning at C:/ncs/v3.2.4/zephyr/CMakeLists.txt:1096 (message):
      No SOURCES given to Zephyr library: drivers__console
    
      Excluding target from build.
    
    
    [33mCMake Warning at C:/ncs/v3.2.4/zephyr/CMakeLists.txt:1096 (message):
      No SOURCES given to Zephyr library: drivers__serial
    
      Excluding target from build.
    
    
    [33mCMake Warning at C:/ncs/v3.2.4/zephyr/CMakeLists.txt:2321 (message):
      __ASSERT() statements are globally ENABLED
    
    
    -- Configuring done
    -- Generating done
    -- Build files have been written to: C:/ncs/applications/connectivity_bridge_v3-2-4/build/b0n
    -- 
       ************************
       * Running CMake for b0 *
       ************************
    [0mLoading Zephyr default modules (Zephyr base).
    -- Application: C:/ncs/v3.2.4/nrf/samples/bootloader
    -- CMake version: 3.21.0
    -- Found Python3: C:/ncs/toolchains/fd21892d0f/opt/bin/python.exe (found suitable version "3.12.4", minimum required is "3.10") found components: Interpreter 
    -- Cache files will be written to: C:/ncs/v3.2.4/zephyr/.cache
    -- Zephyr version: 4.2.99 (C:/ncs/v3.2.4/zephyr)
    -- Found west (found suitable version "1.4.0", minimum required is "0.14.0")
    -- Board: thingy91x, qualifiers: nrf5340/cpuapp
    -- Snippet(s): nrf91-modem-trace-rtt
    -- Found host-tools: zephyr 0.17.0 (C:/ncs/toolchains/fd21892d0f/opt/zephyr-sdk)
    -- Found toolchain: zephyr 0.17.0 (C:/ncs/toolchains/fd21892d0f/opt/zephyr-sdk)
    -- Found Dtc: C:/ncs/toolchains/fd21892d0f/opt/bin/dtc.exe (found suitable version "1.4.7", minimum required is "1.4.6") 
    -- Found BOARD.dts: C:/ncs/v3.2.4/nrf/boards/nordic/thingy91x/thingy91x_nrf5340_cpuapp.dts
    -- Generated zephyr.dts: C:/ncs/applications/connectivity_bridge_v3-2-4/build/b0/zephyr/zephyr.dts
    -- Generated pickled edt: C:/ncs/applications/connectivity_bridge_v3-2-4/build/b0/zephyr/edt.pickle
    -- Generated devicetree_generated.h: C:/ncs/applications/connectivity_bridge_v3-2-4/build/b0/zephyr/include/generated/zephyr/devicetree_generated.h
    
    warning: NRF_MODEM_LIB_TRACE (defined at
    C:/ncs/v3.2.4/nrf/modules/..\lib\nrf_modem_lib\Kconfig.modemlib:131) was assigned the value 'y' but
    got the value 'n'. Check these unsatisfied dependencies: (SOC_SERIES_NRF91X || SOC_SERIES_NRF92X ||
    UNITY) (=n), NRF_MODEM_LIB (=n). See
    http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_NRF_MODEM_LIB_TRACE and/or look up
    NRF_MODEM_LIB_TRACE in the menuconfig/guiconfig interface. The Application Development Primer,
    Setting Configuration Values, and Kconfig - Tips and Best Practices sections of the manual might be
    helpful too.
    
    
    warning: The choice symbol NRF_MODEM_LIB_TRACE_BACKEND_RTT (defined at
    C:/ncs/v3.2.4/nrf/modules/..\lib\nrf_modem_lib\trace_backends\rtt/Kconfig:10) was selected (set =y),
    but no symbol ended up as the choice selection. See
    http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_NRF_MODEM_LIB_TRACE_BACKEND_RTT and/or look
    up NRF_MODEM_LIB_TRACE_BACKEND_RTT in the menuconfig/guiconfig interface. The Application
    Development Primer, Setting Configuration Values, and Kconfig - Tips and Best Practices sections of
    the manual might be helpful too.
    
    
    warning: Deprecated symbol SOC_DCDC_NRF53X_APP is enabled.
    
    
    warning: Deprecated symbol SOC_DCDC_NRF53X_NET is enabled.
    
    Parsing C:/ncs/v3.2.4/zephyr/Kconfig
    Loaded configuration 'C:/ncs/v3.2.4/nrf/boards/nordic/thingy91x/thingy91x_nrf5340_cpuapp_defconfig'
    Merged configuration 'C:/ncs/v3.2.4/nrf/samples/bootloader/prj.conf'
    Merged configuration 'C:/ncs/v3.2.4/nrf/samples/bootloader/boards/thingy91x_nrf5340_cpuapp.conf'
    Merged configuration 'C:/ncs/v3.2.4/nrf/snippets/nrf91-modem-trace-rtt/overlay-modem-trace-rtt.conf'
    Merged configuration 'C:/ncs/applications/connectivity_bridge_v3-2-4/build/b0/zephyr/.config.sysbuild'
    Configuration saved to 'C:/ncs/applications/connectivity_bridge_v3-2-4/build/b0/zephyr/.config'
    Kconfig header saved to 'C:/ncs/applications/connectivity_bridge_v3-2-4/build/b0/zephyr/include/generated/zephyr/autoconf.h'
    -- Found GnuLd: c:/ncs/toolchains/fd21892d0f/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi/bin/ld.bfd.exe (found version "2.38") 
    -- The C compiler identification is GNU 12.2.0
    -- The CXX compiler identification is GNU 12.2.0
    -- The ASM compiler identification is GNU
    -- Found assembler: C:/ncs/toolchains/fd21892d0f/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.exe
    -- Found gen_kobject_list: C:/ncs/v3.2.4/zephyr/scripts/build/gen_kobject_list.py
    -- Configuring done
    -- Generating done
    -- Build files have been written to: C:/ncs/applications/connectivity_bridge_v3-2-4/build/b0
    -- 
       ************************************************
       * Running CMake for connectivity_bridge_v3-2-4 *
       ************************************************
    Loading Zephyr default modules (Zephyr base).
    -- Application: C:/ncs/applications/connectivity_bridge_v3-2-4
    -- CMake version: 3.21.0
    -- Found Python3: C:/ncs/toolchains/fd21892d0f/opt/bin/python.exe (found suitable version "3.12.4", minimum required is "3.10") found components: Interpreter 
    -- Cache files will be written to: C:/ncs/v3.2.4/zephyr/.cache
    -- Zephyr version: 4.2.99 (C:/ncs/v3.2.4/zephyr)
    -- Found west (found suitable version "1.4.0", minimum required is "0.14.0")
    -- Board: thingy91x, qualifiers: nrf5340/cpuapp
    -- Snippet(s): nrf91-modem-trace-rtt
    -- Found host-tools: zephyr 0.17.0 (C:/ncs/toolchains/fd21892d0f/opt/zephyr-sdk)
    -- Found toolchain: zephyr 0.17.0 (C:/ncs/toolchains/fd21892d0f/opt/zephyr-sdk)
    -- Found Dtc: C:/ncs/toolchains/fd21892d0f/opt/bin/dtc.exe (found suitable version "1.4.7", minimum required is "1.4.6") 
    -- Found BOARD.dts: C:/ncs/v3.2.4/nrf/boards/nordic/thingy91x/thingy91x_nrf5340_cpuapp.dts
    -- Found devicetree overlay: C:/ncs/applications/connectivity_bridge_v3-2-4/boards/thingy91x_nrf5340_cpuapp.overlay
    -- Generated zephyr.dts: C:/ncs/applications/connectivity_bridge_v3-2-4/build/connectivity_bridge_v3-2-4/zephyr/zephyr.dts
    -- Generated pickled edt: C:/ncs/applications/connectivity_bridge_v3-2-4/build/connectivity_bridge_v3-2-4/zephyr/edt.pickle
    -- Generated devicetree_generated.h: C:/ncs/applications/connectivity_bridge_v3-2-4/build/connectivity_bridge_v3-2-4/zephyr/include/generated/zephyr/devicetree_generated.h
    
    warning: BRIDGE_LOG_MODULE_STATE_EVENT (defined at
    C:/ncs/applications/connectivity_bridge_v3-2-4\src/events/Kconfig:13) was assigned the value 'y' but
    got the value 'n'. Check these unsatisfied dependencies: LOG (=n). See
    http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_BRIDGE_LOG_MODULE_STATE_EVENT and/or look
    up BRIDGE_LOG_MODULE_STATE_EVENT in the menuconfig/guiconfig interface. The Application Development
    Primer, Setting Configuration Values, and Kconfig - Tips and Best Practices sections of the manual
    might be helpful too.
    
    
    warning: BRIDGE_LOG_UART_DATA_EVENT (defined at
    C:/ncs/applications/connectivity_bridge_v3-2-4\src/events/Kconfig:17) was assigned the value 'y' but
    got the value 'n'. Check these unsatisfied dependencies: LOG (=n). See
    http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_BRIDGE_LOG_UART_DATA_EVENT and/or look up
    BRIDGE_LOG_UART_DATA_EVENT in the menuconfig/guiconfig interface. The Application Development
    Primer, Setting Configuration Values, and Kconfig - Tips and Best Practices sections of the manual
    might be helpful too.
    
    
    warning: BT_CTLR_DATA_LENGTH_MAX (defined at
    C:/ncs/v3.2.4/nrf/modules/..\samples\common\mcumgr_bt_ota_dfu/Kconfig:125,
    C:/ncs/v3.2.4/nrf/modules/..\subsys\bluetooth\services\fast_pair/Kconfig.fast_pair:125,
    subsys/bluetooth\controller/Kconfig:611) was assigned the value '251' but got the value ''. Check
    these unsatisfied dependencies: (NCS_SAMPLE_MCUMGR_BT_OTA_DFU_SPEEDUP || (BT_FAST_PAIR_GATT_SERVICE
    && BT_FAST_PAIR && BT) || (BT_CTLR_DATA_LENGTH && BT_CONN && HAS_BT_CTLR && BT_HCI && BT)) (=n). See
    http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_BT_CTLR_DATA_LENGTH_MAX and/or look up
    BT_CTLR_DATA_LENGTH_MAX in the menuconfig/guiconfig interface. The Application Development Primer,
    Setting Configuration Values, and Kconfig - Tips and Best Practices sections of the manual might be
    helpful too.
    
    
    warning: NRF_MODEM_LIB_TRACE (defined at
    C:/ncs/v3.2.4/nrf/modules/..\lib\nrf_modem_lib\Kconfig.modemlib:131) was assigned the value 'y' but
    got the value 'n'. Check these unsatisfied dependencies: (SOC_SERIES_NRF91X || SOC_SERIES_NRF92X ||
    UNITY) (=n), NRF_MODEM_LIB (=n). See
    http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_NRF_MODEM_LIB_TRACE and/or look up
    NRF_MODEM_LIB_TRACE in the menuconfig/guiconfig interface. The Application Development Primer,
    Setting Configuration Values, and Kconfig - Tips and Best Practices sections of the manual might be
    helpful too.
    
    
    warning: RTT_CONSOLE (defined at drivers/console/Kconfig:130) was assigned the value 'y' but got the
    value 'n'. Check these unsatisfied dependencies: CONSOLE (=n). See
    http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_RTT_CONSOLE and/or look up RTT_CONSOLE in
    the menuconfig/guiconfig interface. The Application Development Primer, Setting Configuration
    Values, and Kconfig - Tips and Best Practices sections of the manual might be helpful too.
    
    
    warning: MCUBOOT_UPDATE_FOOTER_SIZE (defined at subsys/dfu/Kconfig:55) was assigned the value
    '0x2000' but got the value ''. Check these unsatisfied dependencies: MCUBOOT_IMG_MANAGER (=n),
    IMG_MANAGER (=n). See
    http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_MCUBOOT_UPDATE_FOOTER_SIZE and/or look up
    MCUBOOT_UPDATE_FOOTER_SIZE in the menuconfig/guiconfig interface. The Application Development
    Primer, Setting Configuration Values, and Kconfig - Tips and Best Practices sections of the manual
    might be helpful too.
    
    
    warning: LOG_DEFAULT_LEVEL (defined at subsys/logging\Kconfig.filtering:13) was assigned the value
    '4' but got the value ''. Check these unsatisfied dependencies: LOG (=n). See
    http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_LOG_DEFAULT_LEVEL and/or look up
    LOG_DEFAULT_LEVEL in the menuconfig/guiconfig interface. The Application Development Primer, Setting
    Configuration Values, and Kconfig - Tips and Best Practices sections of the manual might be helpful
    too.
    
    
    warning: LOG_PRINTK (defined at subsys/logging\Kconfig.processing:8) was assigned the value 'y' but
    got the value 'n'. Check these unsatisfied dependencies: LOG (=n). See
    http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_LOG_PRINTK and/or look up LOG_PRINTK in the
    menuconfig/guiconfig interface. The Application Development Primer, Setting Configuration Values,
    and Kconfig - Tips and Best Practices sections of the manual might be helpful too.
    
    
    warning: The choice symbol NRF_MODEM_LIB_TRACE_BACKEND_RTT (defined at
    C:/ncs/v3.2.4/nrf/modules/..\lib\nrf_modem_lib\trace_backends\rtt/Kconfig:10) was selected (set =y),
    but no symbol ended up as the choice selection. See
    http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_NRF_MODEM_LIB_TRACE_BACKEND_RTT and/or look
    up NRF_MODEM_LIB_TRACE_BACKEND_RTT in the menuconfig/guiconfig interface. The Application
    Development Primer, Setting Configuration Values, and Kconfig - Tips and Best Practices sections of
    the manual might be helpful too.
    
    
    warning: The choice symbol LOG_MODE_IMMEDIATE (defined at subsys/logging\Kconfig.mode:19) was
    selected (set =y), but no symbol ended up as the choice selection. See
    http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_LOG_MODE_IMMEDIATE and/or look up
    LOG_MODE_IMMEDIATE in the menuconfig/guiconfig interface. The Application Development Primer,
    Setting Configuration Values, and Kconfig - Tips and Best Practices sections of the manual might be
    helpful too.
    
    
    warning: The choice symbol LOG_BACKEND_RTT_MODE_DROP (defined at
    subsys/logging\backends\Kconfig.rtt:24) was selected (set =y), but no symbol ended up as the choice
    selection. See http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_LOG_BACKEND_RTT_MODE_DROP
    and/or look up LOG_BACKEND_RTT_MODE_DROP in the menuconfig/guiconfig interface. The Application
    Development Primer, Setting Configuration Values, and Kconfig - Tips and Best Practices sections of
    the manual might be helpful too.
    
    
    warning: Deprecated symbol SOC_DCDC_NRF53X_APP is enabled.
    
    
    warning: Deprecated symbol SOC_DCDC_NRF53X_NET is enabled.
    
    
    warning: Deprecated symbol USB_DEVICE_DRIVER is enabled.
    
    
    warning: Deprecated symbol USB_DEVICE_STACK is enabled.
    
    
    warning: Experimental symbol DP_DRIVER is enabled.
    
    
    warning: Experimental symbol DAP is enabled.
    
    Parsing C:/ncs/applications/connectivity_bridge_v3-2-4/Kconfig
    Loaded configuration 'C:/ncs/v3.2.4/nrf/boards/nordic/thingy91x/thingy91x_nrf5340_cpuapp_defconfig'
    Merged configuration 'C:/ncs/applications/connectivity_bridge_v3-2-4/prj.conf'
    Merged configuration 'C:/ncs/applications/connectivity_bridge_v3-2-4/boards/thingy91x_nrf5340_cpuapp.conf'
    Merged configuration 'C:/ncs/v3.2.4/nrf/snippets/nrf91-modem-trace-rtt/overlay-modem-trace-rtt.conf'
    Merged configuration 'C:/ncs/applications/connectivity_bridge_v3-2-4/build/connectivity_bridge_v3-2-4/zephyr/misc/generated/extra_kconfig_options.conf'
    Merged configuration 'C:/ncs/applications/connectivity_bridge_v3-2-4/build/connectivity_bridge_v3-2-4/zephyr/.config.sysbuild'
    Configuration saved to 'C:/ncs/applications/connectivity_bridge_v3-2-4/build/connectivity_bridge_v3-2-4/zephyr/.config'
    Kconfig header saved to 'C:/ncs/applications/connectivity_bridge_v3-2-4/build/connectivity_bridge_v3-2-4/zephyr/include/generated/zephyr/autoconf.h'
    -- Found GnuLd: c:/ncs/toolchains/fd21892d0f/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi/bin/ld.bfd.exe (found version "2.38") 
    -- The C compiler identification is GNU 12.2.0
    -- The CXX compiler identification is GNU 12.2.0
    -- The ASM compiler identification is GNU
    -- Found assembler: C:/ncs/toolchains/fd21892d0f/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.exe
    -- Build type:  
    -- Host:    Windows/AMD64
    -- Target:  Generic/arm
    --- libmetal version: 1.8.0 (C:/ncs/applications/connectivity_bridge_v3-2-4)
    - Machine: arm
    -- Vendor: none
    -- Looking for include file stdatomic.h
    -- Looking for include file stdatomic.h - found
    -- open-amp version: 1.8.0 (C:/ncs/v3.2.4/modules/lib/open-amp/open-amp)
    -- Host:    Windows/AMD64
    -- Target:  Generic/arm
    -- Machine: arm
    -- C_FLAGS :  -Wall -Wextra
    -- Looking for include file fcntl.h
    -- Looking for include file fcntl.h - found
    -- Found gen_kobject_list: C:/ncs/v3.2.4/zephyr/scripts/build/gen_kobject_list.py
    -- Including signing script: C:/ncs/v3.2.4/nrf/cmake/sysbuild/image_signing.cmake
    [33mCMake Warning at C:/ncs/v3.2.4/zephyr/CMakeLists.txt:2321 (message):
      __ASSERT() statements are globally ENABLED
    
    
    -- Found Git: C:/ncs/toolchains/fd21892d0f/mingw64/bin/git.exe (found version "2.52.0.windows.1") 
    fatal: not a git repository (or any of the parent directories): .git
    -- Configuring done
    -- Generating done
    -- Build files have been written to: C:/ncs/applications/connectivity_bridge_v3-2-4/build/connectivity_bridge_v3-2-4
    -- 
       ******************************
       * Running CMake for s1_image *
       ******************************
    Loading Zephyr default modules (Zephyr base).
    -- Application: C:/ncs/v3.2.4/bootloader/mcuboot/boot/zephyr
    -- CMake version: 3.21.0
    -- Found Python3: C:/ncs/toolchains/fd21892d0f/opt/bin/python.exe (found suitable version "3.12.4", minimum required is "3.10") found components: Interpreter 
    -- Cache files will be written to: C:/ncs/v3.2.4/zephyr/.cache
    -- Zephyr version: 4.2.99 (C:/ncs/v3.2.4/zephyr)
    -- Found west (found suitable version "1.4.0", minimum required is "0.14.0")
    -- Board: thingy91x, qualifiers: nrf5340/cpuapp
    -- Snippet(s): nrf91-modem-trace-rtt
    -- Found host-tools: zephyr 0.17.0 (C:/ncs/toolchains/fd21892d0f/opt/zephyr-sdk)
    -- Found toolchain: zephyr 0.17.0 (C:/ncs/toolchains/fd21892d0f/opt/zephyr-sdk)
    -- Found Dtc: C:/ncs/toolchains/fd21892d0f/opt/bin/dtc.exe (found suitable version "1.4.7", minimum required is "1.4.6") 
    -- Found BOARD.dts: C:/ncs/v3.2.4/nrf/boards/nordic/thingy91x/thingy91x_nrf5340_cpuapp.dts
    -- Found devicetree overlay: C:/ncs/applications/connectivity_bridge_v3-2-4/sysbuild/mcuboot/app.overlay
    -- Found devicetree overlay: C:/ncs/v3.2.4/nrf/modules/mcuboot/flash_sim.overlay
    -- Generated zephyr.dts: C:/ncs/applications/connectivity_bridge_v3-2-4/build/s1_image/zephyr/zephyr.dts
    -- Generated pickled edt: C:/ncs/applications/connectivity_bridge_v3-2-4/build/s1_image/zephyr/edt.pickle
    -- Generated devicetree_generated.h: C:/ncs/applications/connectivity_bridge_v3-2-4/build/s1_image/zephyr/include/generated/zephyr/devicetree_generated.h
    [31mCMake Error at C:/ncs/v3.2.4/zephyr/cmake/modules/FindGnuLd.cmake:91 (string):
      string sub-command REGEX, mode MATCH needs at least 5 arguments total to
      command.
    Call Stack (most recent call first):
      C:/ncs/v3.2.4/zephyr/cmake/linker/ld/target.cmake:4 (find_package)
      C:/ncs/v3.2.4/zephyr/cmake/modules/FindTargetTools.cmake:104 (include)
      C:/ncs/v3.2.4/zephyr/cmake/modules/kernel.cmake:25 (find_package)
      C:/ncs/v3.2.4/zephyr/cmake/modules/zephyr_default.cmake:140 (include)
      C:/ncs/v3.2.4/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)
      C:/ncs/v3.2.4/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)
      CMakeLists.txt:18 (find_package)
    
    
    -- Found GnuLd: c:/ncs/toolchains/fd21892d0f/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi/bin/ld.bfd.exe (found version "") 
    -- The C compiler identification is GNU 12.2.0
    -- The CXX compiler identification is GNU 12.2.0
    -- The ASM compiler identification is GNU
    -- Found assembler: C:/ncs/toolchains/fd21892d0f/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.exe
    -- Found gen_kobject_list: C:/ncs/v3.2.4/zephyr/scripts/build/gen_kobject_list.py
    MCUBoot bootloader key file: C:/ncs/v3.2.4/bootloader/mcuboot/root-ec-p256.pem
    CMake Warning at CMakeLists.txt:442 (message):
      WARNING: Using default MCUboot signing key file, this file is for debug use
      only and is not secure!
    
    
    -- Configuring incomplete, errors occurred!
    See also "C:/ncs/applications/connectivity_bridge_v3-2-4/build/s1_image/CMakeFiles/CMakeOutput.log".
    See also "C:/ncs/applications/connectivity_bridge_v3-2-4/build/s1_image/CMakeFiles/CMakeError.log".
    CMake Error at cmake/modules/sysbuild_extensions.cmake:530 (message):
      CMake configure failed for Zephyr project: s1_image
    
      Location: C:/ncs/v3.2.4/bootloader/mcuboot/boot/zephyr/
    Call Stack (most recent call first):
      cmake/modules/sysbuild_images.cmake:43 (ExternalZephyrProject_Cmake)
      cmake/modules/sysbuild_default.cmake:21 (include)
      C:/ncs/v3.2.4/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:75 (include)
      C:/ncs/v3.2.4/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)
      C:/ncs/v3.2.4/zephyr/share/sysbuild-package/cmake/SysbuildConfig.cmake:8 (include)
      template/CMakeLists.txt:10 (find_package)
    
    
    -- Configuring incomplete, errors occurred!
    See also "C:/ncs/applications/connectivity_bridge_v3-2-4/build/CMakeFiles/CMakeOutput.log".
    FATAL ERROR: command exited with status 1: 'C:\ncs\toolchains\fd21892d0f\opt\bin\cmake.EXE' -DWEST_PYTHON=C:/ncs/toolchains/fd21892d0f/opt/bin/python.exe '-Bc:\ncs\applications\connectivity_bridge_v3-2-4\build' -GNinja -DBOARD=thingy91x/nrf5340/cpuapp -DCONFIG_DEBUG_THREAD_INFO=y -DSNIPPET=nrf91-modem-trace-rtt '-SC:\ncs\v3.2.4\zephyr\share\sysbuild' '-DAPP_DIR:PATH=c:\ncs\applications\connectivity_bridge_v3-2-4'
    
     *  The terminal process terminated with exit code: 1. 
     *  Terminal will be reused by tasks, press any key to close it.

    Best regards,

    Gotoda

  • yours

    -DSNIPPET=nrf91-modem-trace-rtt

    mine

    -D<app>_SNIPPET="nrf91-modem-trace-rtt" 

    So, why do you skip <app>, get an error and don't try it with <app>?

    Unfortunately, there are in the meantime a couple of "add-ons" in zephyr and NCS, and some are more "as they are on each alone" than "aligned to a set of tools".

    With the "sysbuild/multi-domain" it's crucial to configure the right domain. For some configuration the "default" is the app and others apply to all. And if applied to mcuboot or s1, it won't work (therefore "CMake configure failed for Zephyr project: s1_image").

    And the app-name is for the "multi-domain" stuff, the name of the directory.

    (I was not the only one, who felt, that this is a bad solution, but AFAIK, no-one is working on changing that ;-). )

    So in your case, I would try it with:

    -Dconnectivity_bridge_v3-2-4_SNIPPET=nrf91-modem-trace-rtt

    If that doesn't work, us a "simpler/plain" directory name, e.g. "connectivitybridge". You will then need to rename the directory and use then that simpler name.

  • Oh ... my bad!

    Too many modem traces!

    You just want logging, so that snippet is wrong.

Reply Children
No Data
Related