NRF5340 HCI_USB & HCI_UART Stop Scanning

I am developing a custom nrf5340 board design, that is using the BL5340PA external antenna module to implement the nrf5340 chip in the design. The BL5340 module allows all of the base functionality in the nrf5340 module, but also adds an external FEM in increase the TX power. I am utilizing the Zephyr/nrf SDK version 2.4.1 (received from Laird for updated TX power setting rules: GitHub - LairdCP/bl5340pa_manifest: Manifest for the Laird Connectivity fork of the nRF Connect SDK with support for the BL5340PA). I am attempting to utilize either the HCI_USB or HCI_UART firmware projects, that come with Zephyr, in order to make this custom board a reliable BLE adapter for Linux. My Linux device is running off of kernel version 5.4.0-174-generic and is connected to the custom board through the NRF USB interface on the nrf5340. My BlueZ is version 5.66. The below actions are what I am trying to accomplish:

  1. Reliable BLE Adapter over USB or CDC-ACM USB
  2. Application Core Firmware Update over CDC-ACM USB
    1. Currently using MCUMGR
  3. Network Core Firmware Update over CDC-ACM USB
    1. Not functional, as no external flash on custom board. Need method to use internal flash

The items above I would like to complete in that priority as well. Therefore I will focus on the BLE Adapter functionality with mentions to the others. 

My Issue:

  • Utilizing the HCI_USB or HCI_USB project, HCI_UART is sent through the CDC-ACM driver and setup with BTATTACH (HCIATTACH tried too, same effect, and it is deprecated now) in Linux as H4 protocol with 1000000 speed, whereas HCI_USB is automatically recognized by BTUSB driver in Linux and setup. I can communicate, connect, pair, and perform all necessary BT actions between both of these projects (this has been tested using BluetoothCTL and HCI_BUS commands in C++ code). After some time (HCI_UART, few minutes to an hour. HCI_USB, hour to two hours) of Scanning for devices the adapter will stop functioning, communication will halt on a timeout (This is shown in the image below, as output from DMESG, below that is what appears in BTMON). In some Debug Messages from the custom board I have received a "<wrn> bt_hci_driver: Couldn't allocate a buffer after waiting 10 seconds." error when this occurs. After this error occurs there are a few different methods of resetting the board that work to recover and regain BLE functionality with BlueZ. 
    • Recovery Methods
      • HCI_USB
        • bluetoothctl.power off -> bluetoothctl.power on
        • Or any hard power reset of board
          • Details: Default Zephyr Project
      • HCI_UART
        • Hard power reset of board
          • Details: Default Zephyr Project, with addition of CDC-ACM configuration for bt-c2h-uart redirection. 
      • HCI_USB with MCUMGR
        • MCUMGR reset
        • or any hard power reset of board
          • Details:
            • This project is implemented with a change in the SDK to allow the CDC-ACM interface to always be second, allowing HCI_USB to use the first interface and BTUSB to recognize this. Both USB interfaces are active at the same time, as seen when plugging into Windows, but Linux only allows one to be active as the BTUSB and CDC drivers conflict on assignment. Meaning that in order to switch the USB interface of the board has to be unbinded.  
      • HCI_UART with MCUMGR
        • MCUMGR reset
        • or any hard power reset of board
          • Details:
            • 2 CDC-ACM ports, one for MCUMGR and one for HCI_UART

I have seen this issue across every attempt with these firmware projects, and any configuration I try with them. Eventually the board will stop functioning as a BT adapter and some, possibly extensive, actions have to be taken to recover it. From my investigation, this seems to be, on the surface, a memory or issue in the speed of communication. As the issue occurs faster when there are many more Bluetooth devices available to be scanned. I tried using the same testing methods with another Linux BT Adapter (Intel AX210) and they did not occur, which let me know that this is an issue within my Zephyr firmware. This issue seems to occur faster with the HCI_UART version of the firmware, as opposed to HCI_USB.

I have researched this issue everywhere and cannot find a good solution or any solution to resolve this. Below are some links that I have gone to find any solution:

https://lists.zephyrproject.org/g/devel/topic/hci_interface_stopped_working/71746540?p=,,,20,0,0,0::recentpostdate%2Fsticky,,,20,2,640,71746540

https://github.com/zephyrproject-rtos/zephyr/issues/20250

https://github.com/zephyrproject-rtos/zephyr/issues/37731

Code from my HCI_UART_MCUMGR project:

-  prj.conf

"prj.conf"

#################################################################################
#
#  Custom-Board Project Configuration 
#
#################################################################################


##########################################################################
## HCI_UART Project Configuration --------------------------------------
# --- Sets up the UART interface for HCI control of the BT Carrier Board
# -- From default HCI_UART project with few removals due to conflicts

CONFIG_STDOUT_CONSOLE=n
CONFIG_UART_CONSOLE=n
CONFIG_GPIO=y
CONFIG_SERIAL=y
CONFIG_UART_INTERRUPT_DRIVEN=y
CONFIG_BT=y
CONFIG_BT_HCI_RAW=y
CONFIG_BT_HCI_RAW_H4=y
CONFIG_BT_HCI_RAW_H4_ENABLE=y
CONFIG_BT_BUF_ACL_RX_SIZE=255
CONFIG_BT_BUF_CMD_TX_SIZE=255
CONFIG_BT_BUF_EVT_DISCARDABLE_SIZE=255
CONFIG_BT_MAX_CONN=16
CONFIG_BT_TINYCRYPT_ECC=n

# Workaround: Unable to allocate command buffer when using K_NO_WAIT since
# Host number of completed commands does not follow normal flow control.
CONFIG_BT_BUF_CMD_TX_COUNT=10

#=========================================================================

##########################################################################
## HCI -> USB Project Configuration --------------------------------------
# --- Sets up the USB interface to be used for communication
# --- USB Interface is used for MCUMGR and HCI_UART
# --- Composite USB configuration allowing multiple USB interfaces

CONFIG_USB_DEVICE_STACK=y
CONFIG_USB_DEVICE_PRODUCT="Custom-Board"

#CONFIG_USB_DEVICE_PID=
#CONFIG_USB_DEVICE_VID=

CONFIG_USB_CDC_ACM=y
CONFIG_USB_DEVICE_INITIALIZE_AT_BOOT=n
CONFIG_UART_LINE_CTRL=y

#=========================================================================

##########################################################################
## MCUMGR/MCUBOOT Project Configuration --------------------------------------
# --- Enables MCUMGR that is used for Image Management
# --- Enables MCUBOOT bootloader to handle the images on the carrier board, as well as booting

# Enable MCUmgr and dependencies.
CONFIG_NET_BUF=y
CONFIG_ZCBOR=y
CONFIG_CRC=y
CONFIG_MCUMGR=y
CONFIG_STREAM_FLASH=y
CONFIG_FLASH_MAP=y

# Some command handlers require a large stack.
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2304
CONFIG_MAIN_STACK_SIZE=2048

# Ensure an MCUboot-compatible binary is generated.
CONFIG_BOOTLOADER_MCUBOOT=y

# Enable flash operations.
CONFIG_FLASH=y

# Required by the `taskstat` command.
CONFIG_THREAD_MONITOR=y

# Support for taskstat command
CONFIG_MCUMGR_GRP_OS_TASKSTAT=y

# Enable statistics and statistic names.
CONFIG_STATS=y
CONFIG_STATS_NAMES=y

# Enable most core commands.
CONFIG_FLASH=y
CONFIG_IMG_MANAGER=y
CONFIG_MCUMGR_GRP_IMG=y
CONFIG_MCUMGR_GRP_OS=y
CONFIG_MCUMGR_GRP_STAT=y

# Enable logging
CONFIG_LOG=y
CONFIG_MCUBOOT_UTIL_LOG_LEVEL_WRN=y

# Disable debug logging
CONFIG_LOG_MAX_LEVEL=3

CONFIG_MCUMGR_TRANSPORT_UART=y
CONFIG_BASE64=y

#=========================================================================

- mcuboot.conf

"mcuboot.conf"

#################################################################################
#
#  MCUBOOT Child Image Configuration 
#
#################################################################################


#--------------------------------------------------------------------------------
# Enable Pin Control
#--------------------------------------------------------------------------------
CONFIG_PINCTRL=y


#--------------------------------------------------------------------------------
# Enable code size optimization on the compiler
#--------------------------------------------------------------------------------
CONFIG_SIZE_OPTIMIZATIONS=y


#--------------------------------------------------------------------------------
# Enable multi threading.
#--------------------------------------------------------------------------------
CONFIG_MULTITHREADING=y


#--------------------------------------------------------------------------------
# Add private key for MCUboot. Refer to these sites for more information:
# https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/app_dev/bootloaders_and_dfu/bootloader_adding.html#id11
# https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/app_dev/bootloaders_and_dfu/fw_update.html#ug-fw-update-keys-python
#--------------------------------------------------------------------------------
CONFIG_BOOT_SIGNATURE_KEY_FILE="custom_file_and_path_here.pem"

- hci_rpmsg.conf (to setup FEM)

"hci_rpmsg.conf"

#################################################################################
#
#  HCI_RPMSP Child Image Configuration 
#
#################################################################################

#--------------------------------------------------------------------------------
# Enable Pin Control
#--------------------------------------------------------------------------------
CONFIG_PINCTRL=y


#--------------------------------------------------------------------------------
# Enable SPI
#--------------------------------------------------------------------------------

# Enabled for FEM control
CONFIG_SPI=y


#--------------------------------------------------------------------------------
# Enable MPSL and FEM
#--------------------------------------------------------------------------------
CONFIG_MPSL=y
CONFIG_MPSL_FEM=y
CONFIG_MPSL_FEM_NRF21540_GPIO=y
CONFIG_MPSL_FEM_NRF21540_TX_GAIN_DB=20
CONFIG_BT_CTLR_TX_PWR_ANTENNA=20
CONFIG_MPSL_FEM_NRF21540_GPIO_SPI=y

- bl5340pa_dvk_cpuapp.overlay (I have custom board files made for my board, but for ease of testing it also works with the bl5340pa DVK default board files. Both configurations give the same results)

"bl5340pa_dvk_cpuapp.overlay"

/ {
	chosen {
	   zephyr,uart-mcumgr = &cdc_acm1;
	   zephyr,bt-c2h-uart = &cdc_acm0;
	};
 };
 

&zephyr_udc0 {
	cdc_acm0: cdc_acm0 {
		compatible = "zephyr,cdc-acm-uart";
	};
	cdc_acm1: cdc_acm1 {
		compatible = "zephyr,cdc-acm-uart";
	};
};

&uart0 {
	current-speed = <1000000>;
	status = "disabled";
	hw-flow-control;
};

 

The Main.C src file of HCI_USB and HCI_UART is unedited from either of the examples.

As a note on the above, this has also been tested without any of the FEM or MCUBOOT/MCUMGR configurations to ensure that is not affecting the projects. Same effect observed.

Questions:

  1. Is there something that I am missing that is causing this issue?
    1. On the Zephyr Configuration side?
    2. On the Linux/BlueZ setup side?
  2. Is there another method to perform my desired actions that would avoid these issues?
  3. Is this the right place to investigate this?
  4. Or any other advice would be greatly appreciated.

Thank you to whomever can help with this issue, as it has been causing me a lot of troubles. Let me know if I can supply any addition information that would assist in resolving this. 

Parents
  • Hi Devin

    There are some configuration changes you could try on the nRF side in order to try and improve the reliability, in particular the CONFIG_BT_RX_STACK_SIZE configuration. 

    Could you try to add the following config settings both for the appcore (hci_usb/hci_uart) and netcore (hci_rpmsg/hci_ipc), and see if it works better?

    CONFIG_BT_BUF_CMD_TX_COUNT=10
     
    CONFIG_BT_BUF_EVT_RX_COUNT=16
     
    CONFIG_BT_BUF_EVT_RX_SIZE=255
    CONFIG_BT_BUF_ACL_RX_SIZE=255
    CONFIG_BT_BUF_ACL_TX_SIZE=251
    CONFIG_BT_BUF_CMD_TX_SIZE=255
     
    CONFIG_BT_RX_STACK_SIZE=2048
     

    If it is still unreliable, would you be able to provide the full btmon log, and ideally also the nRF side log, for analysis? 

    Best regards
    Torbjørn

  •    Thanks for your response!

    I inserted the log files from dmesg, btmon, and log from the Zephyr Console. This test was on the HCI_UART with CDC_ACM driver and a 2nd CDC-ACM interface used for output of Zephyr Console Logs.
    7624.btmon.txt

    4643.dmesg.txt

    The bottom of dmesg file is applicable to the current test.

    5224.log.txt

    I switched back to the default HCI_UART sample, added configuration for FEM, LOG, CDC-ACM, and the suggested additions from you as well. I also then tested with additions for Clock and DCDC, with the same results. (I also tested the additions on HCI_USB sample with additions for FEM, with similar results).

    Below are the new config files for reference: (CLOCK and DCDC included)

    --- PRJ.CONF ---
    
    CONFIG_USB_DEVICE_STACK=y
    CONFIG_USB_DEVICE_PRODUCT="Zephyr HCI UART sample"
    CONFIG_USB_CDC_ACM=y
    CONFIG_USB_DEVICE_INITIALIZE_AT_BOOT=n
    
    
    CONFIG_GPIO=y
    CONFIG_SERIAL=y
    CONFIG_UART_INTERRUPT_DRIVEN=y
    CONFIG_BT=y
    CONFIG_BT_HCI_RAW=y
    CONFIG_BT_HCI_RAW_H4=y
    CONFIG_BT_HCI_RAW_H4_ENABLE=y
    CONFIG_BT_BUF_ACL_RX_SIZE=255
    CONFIG_BT_BUF_CMD_TX_SIZE=255
    CONFIG_BT_BUF_EVT_DISCARDABLE_SIZE=255
    CONFIG_BT_CTLR_ASSERT_HANDLER=y
    CONFIG_BT_MAX_CONN=16
    CONFIG_BT_TINYCRYPT_ECC=n
    CONFIG_BT_CTLR_DTM_HCI=y
    
    CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=512
    
    # Workaround: Unable to allocate command buffer when using K_NO_WAIT since
    # Host number of completed commands does not follow normal flow control.
    CONFIG_BT_BUF_CMD_TX_COUNT=10
    
    #---------Nordic
    # Already in the Example HCI_UART
    CONFIG_BT_BUF_CMD_TX_COUNT=10  
    
    CONFIG_BT_BUF_EVT_RX_COUNT=16
     
    CONFIG_BT_BUF_EVT_RX_SIZE=255
    # Already in the Example HCI_UART
    CONFIG_BT_BUF_ACL_RX_SIZE=255   
    CONFIG_BT_BUF_ACL_TX_SIZE=251
    # Already in the Example HCI_UART
    CONFIG_BT_BUF_CMD_TX_SIZE=255    
     
    CONFIG_BT_RX_STACK_SIZE=2048
    
    #LOG---------------------------
    
    CONFIG_LOG=y
    
    CONFIG_THREAD_NAME=y
    CONFIG_THREAD_ANALYZER=y
    CONFIG_THREAD_ANALYZER_AUTO=y
    CONFIG_THREAD_ANALYZER_RUN_UNLOCKED=y
    
    CONFIG_HW_STACK_PROTECTION=y
    
    CONFIG_LOG_MODE_DEFERRED=y
    CONFIG_LOG_MODE_OVERFLOW=y
    CONFIG_CONSOLE=y
    CONFIG_STDOUT_CONSOLE=y
    CONFIG_LOG_BACKEND_UART=y
    CONFIG_LOG_DEFAULT_LEVEL=3
    
    # INDV
    CONFIG_USB_DRIVER_LOG_LEVEL_INF=y
    CONFIG_USB_DEVICE_LOG_LEVEL_INF=y
    CONFIG_BT_DEBUG_LOG=y
    CONFIG_BT_HCI_DRIVER_LOG_LEVEL_DBG=y
    CONFIG_BT_HCI_CORE_LOG_LEVEL_DBG=y
    
    #--------------------------------------------------------------------------------
    # Enable External Crystals
    #--------------------------------------------------------------------------------
    CONFIG_CLOCK_CONTROL_NRF_K32SRC_20PPM=y
    
    # Enable the External Low Frequency Oscillator
    CONFIG_SOC_ENABLE_LFXO=y
    CONFIG_SOC_LFXO_CAP_INT_7PF=y
    
    # Enable High Frequency Crystal internal capacitors
    CONFIG_SOC_HFXO_CAP_INTERNAL=y
    CONFIG_SOC_HFXO_CAP_INT_VALUE_X2=27
    
    
    
    #--------------------------------------------------------------------------------
    # Enable DC/DC regulators
    #--------------------------------------------------------------------------------
    # Enable App DC/DC regulator
    CONFIG_BOARD_ENABLE_DCDC_APP=y
    
    # Enable Net DC/DC regulator
    CONFIG_BOARD_ENABLE_DCDC_NET=y
    
    # Disable High Voltage DC/DC regulator
    CONFIG_BOARD_ENABLE_DCDC_HV=n

    --- HCI_RPMSG.CONF ---
    
    #################################################################################
    #
    #  HCI_RPMSP Child Image Configuration 
    #
    #################################################################################
    
    ##########################################################################
    ## LOGGING Configuration --------------------------------------
    CONFIG_LOG=y
    CONFIG_BT_DEBUG_LOG=y
    CONFIG_LOG_MODE_DEFERRED=y
    CONFIG_LOG_MODE_OVERFLOW=y
    CONFIG_LOG_DEFAULT_LEVEL=3
    
    #--------------------------------------------------------------------------------
    # Disable network cpu serial port, console, and UART console for low power
    #--------------------------------------------------------------------------------
    #CONFIG_SERIAL=n
    #CONFIG_CONSOLE=n
    #CONFIG_UART_CONSOLE=n
    #CONFIG_LOG_BACKEND_UART=n
    
    #=========================================================================
    #--------------------------------------------------------------------------------
    # Enable Pin Control
    #--------------------------------------------------------------------------------
    CONFIG_PINCTRL=y
    #--------------------------------------------------------------------------------
    # Enable Pin Control
    #--------------------------------------------------------------------------------
    
    #--------------------------------------------------------------------------------
    # Enable SPI
    #--------------------------------------------------------------------------------
    
    # Enabled for FEM control
    CONFIG_SPI=y
    
    
    #--------------------------------------------------------------------------------
    # Enable MPSL and FEM
    #--------------------------------------------------------------------------------
    CONFIG_MPSL=y
    CONFIG_MPSL_FEM=y
    CONFIG_MPSL_FEM_NRF21540_GPIO=y
    CONFIG_MPSL_FEM_NRF21540_TX_GAIN_DB=20
    CONFIG_BT_CTLR_TX_PWR_ANTENNA=20
    CONFIG_MPSL_FEM_NRF21540_GPIO_SPI=y
    
    CONFIG_BT_PHY_UPDATE=n
    
    
    ##---------------NORDIC
    CONFIG_BT_BUF_CMD_TX_COUNT=10
     
    CONFIG_BT_BUF_EVT_RX_COUNT=16
     
    CONFIG_BT_BUF_EVT_RX_SIZE=255
    CONFIG_BT_BUF_ACL_RX_SIZE=255
    CONFIG_BT_BUF_ACL_TX_SIZE=251
    CONFIG_BT_BUF_CMD_TX_SIZE=255
     
    CONFIG_BT_RX_STACK_SIZE=2048

     --- HCI_RPMSG.overlay ---
    //Disable for FEM use, as conflicts with SPI on netcore
    &uart0{
        status = "disabled";
    };

    --- bl5340pa_dvk_cpuapp.overlay ---
    
    / {
    	chosen {
    	   zephyr,bt-c2h-uart = &cdc_acm0;
    	   zephyr,console = &cdc_acm1;
    	};
     };
     
    
    &zephyr_udc0 {
    	cdc_acm0: cdc_acm0 {
    		compatible = "zephyr,cdc-acm-uart";
    	};
    	cdc_acm1: cdc_acm1 {
    		compatible = "zephyr,cdc-acm-uart";
    	};
    };
    &uart0 {
    	compatible = "nordic,nrf-uarte";
    	current-speed = <1000000>;
    	status = "okay";
    	hw-flow-control;
    };

    The "test" ran was setting up the board as a serial bt adapter using BTAttach (pictured below), and start scanning with Bluetoothctl until it fails. Then when it failed I ran some more Bluetoothctl commands to test the failure (pictured below).

    Let me know if there are any questions, if you need different LOG settings, or any other information from me. Thank you for your assistance!

    Edit:

    Seems that after failure any HCI command gets this response from the bl5340pa USB or some version of the "Final HCI Buffer". The above output was logged after trying to bring the HCI device back online, as the board never freezes, the HCI interface just stops functioning. I used hciconfig hci1 up, which timed out.

     

    Edit: I also tested this across Linux Kernel Versions 5.4.0, 5.15.0, 5.16.0 (all generic), in order to rule out this possibility, and the same issue occurred in all tests.

  • I checked and that config was already disabled. I did run a test adding that config line in setting CONFIG_BT_CTLR_PHY_CODED=n and it still had the same issue.

    I was looking at the faulting instruction and noticed that there was a separate function ran if BT_CTRL_ASSER_HANDLER=y was set, so I gave that a go as well and the same issue occurred but I was not able to see any of the faulting output in the Netcore logs. 

    I have tried a lot of different ways to go about this and I have had no success yet. I will post my complete config files below as well as the generated ones. Let me know if there are any other ideas based on those and I will be reaching out to Laird in the near future. Thanks!

    HCI_RPMSG.conf
    
    
    
    #################################################################################
    #
    #  HCI_RPMSP Child Image Configuration 
    #
    #################################################################################
    
    CONFIG_BT_CTLR_PHY_CODED=n
    
    ##########################################################################
    ## LOGGING Configuration --------------------------------------
    CONFIG_LOG=y
    CONFIG_BT_DEBUG_LOG=y
    CONFIG_LOG_MODE_DEFERRED=y
    CONFIG_LOG_MODE_OVERFLOW=y
    CONFIG_LOG_DEFAULT_LEVEL=3
    
    CONFIG_MPSL_LOG_LEVEL_DBG=y
    CONFIG_SPI_LOG_LEVEL_DBG=y
    
    CONFIG_BOOT_BANNER=y
    
    #CONFIG_THREAD_ANALYZER=y
    CONFIG_THREAD_NAME=y
    CONFIG_STACK_SENTINEL=y
    #CONFIG_THREAD_ANALYZER_AUTO=y
    #CONFIG_THREAD_ANALYZER_RUN_UNLOCKED=y
    
    CONFIG_IDLE_STACK_SIZE=512
    CONFIG_MPU_STACK_GUARD=y
    
    CONFIG_BT_CTLR_ASSERT_HANDLER=y
    
    CONFIG_CONSOLE=y
    CONFIG_BT_DEBUG_LOG=n
    CONFIG_LOG_BUFFER_SIZE=1024
    CONFIG_RTT_CONSOLE=y
    CONFIG_LOG_BACKEND_RTT=y
    CONFIG_LOG_BACKEND_RTT_MODE_DROP=n
    CONFIG_USE_SEGGER_RTT=y
    CONFIG_SEGGER_RTT_BUFFER_SIZE_UP=1024
    CONFIG_LOG_BACKEND_SHOW_COLOR=n
    CONFIG_LOG_PROCESS_THREAD_STACK_SIZE=1024
    CONFIG_LOG_MODE_DEFERRED=y
    CONFIG_LOG_MODE_OVERFLOW=y
    
    #--------------------------------------------------------------------------------
    # Disable network cpu serial port, console, and UART console for low power
    #--------------------------------------------------------------------------------
    #CONFIG_SERIAL=n
    #CONFIG_CONSOLE=n
    #CONFIG_UART_CONSOLE=n
    #CONFIG_LOG_BACKEND_UART=n
    
    #=========================================================================
    #--------------------------------------------------------------------------------
    # Enable Pin Control
    #--------------------------------------------------------------------------------
    CONFIG_PINCTRL=y
    #--------------------------------------------------------------------------------
    # Enable Pin Control
    #--------------------------------------------------------------------------------
    
    #--------------------------------------------------------------------------------
    # Enable SPI
    #--------------------------------------------------------------------------------
    
    # Enabled for FEM control
    CONFIG_SPI=y
    
    
    #--------------------------------------------------------------------------------
    # Enable MPSL and FEM
    #--------------------------------------------------------------------------------
    CONFIG_MPSL=y
    CONFIG_MPSL_FEM=y
    CONFIG_MPSL_FEM_NRF21540_GPIO=y
    CONFIG_MPSL_FEM_NRF21540_TX_GAIN_DB=20
    CONFIG_BT_CTLR_TX_PWR_ANTENNA=20
    CONFIG_MPSL_FEM_NRF21540_GPIO_SPI=y
    
    
    ##---------------NORDIC
    CONFIG_BT_BUF_CMD_TX_COUNT=10
     
    CONFIG_BT_BUF_EVT_RX_COUNT=16
     
    CONFIG_BT_BUF_EVT_RX_SIZE=255
    CONFIG_BT_BUF_ACL_RX_SIZE=255
    CONFIG_BT_BUF_ACL_TX_SIZE=251
    CONFIG_BT_BUF_CMD_TX_SIZE=255
     
    CONFIG_BT_RX_STACK_SIZE=2048

    PRJ.conf
    
    CONFIG_RESET_ON_FATAL_ERROR=y
    CONFIG_IDLE_STACK_SIZE=512
    
    CONFIG_USB_DEVICE_STACK=y
    CONFIG_USB_DEVICE_PRODUCT="Zephyr HCI UART sample"
    CONFIG_USB_CDC_ACM=y
    CONFIG_USB_DEVICE_INITIALIZE_AT_BOOT=n
    
    
    CONFIG_GPIO=y
    CONFIG_SERIAL=y
    CONFIG_UART_INTERRUPT_DRIVEN=y
    CONFIG_BT=y
    CONFIG_BT_HCI_RAW=y
    CONFIG_BT_HCI_RAW_H4=y
    CONFIG_BT_HCI_RAW_H4_ENABLE=y
    CONFIG_BT_BUF_ACL_RX_SIZE=255
    CONFIG_BT_BUF_CMD_TX_SIZE=255
    CONFIG_BT_BUF_EVT_DISCARDABLE_SIZE=255
    CONFIG_BT_CTLR_ASSERT_HANDLER=y
    CONFIG_BT_MAX_CONN=16
    CONFIG_BT_TINYCRYPT_ECC=n
    CONFIG_BT_CTLR_DTM_HCI=y
    
    CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=512
    
    # Workaround: Unable to allocate command buffer when using K_NO_WAIT since
    # Host number of completed commands does not follow normal flow control.
    CONFIG_BT_BUF_CMD_TX_COUNT=10
    
    #---------Nordic
    # Already in the Example HCI_UART
    CONFIG_BT_BUF_CMD_TX_COUNT=10  
    
    CONFIG_BT_BUF_EVT_RX_COUNT=16
     
    CONFIG_BT_BUF_EVT_RX_SIZE=255
    # Already in the Example HCI_UART
    CONFIG_BT_BUF_ACL_RX_SIZE=255   
    CONFIG_BT_BUF_ACL_TX_SIZE=251
    # Already in the Example HCI_UART
    CONFIG_BT_BUF_CMD_TX_SIZE=255    
     
    CONFIG_BT_RX_STACK_SIZE=2048
    
    #LOG---------------------------
    
    CONFIG_LOG=y
    
    CONFIG_THREAD_NAME=y
    CONFIG_THREAD_ANALYZER=y
    CONFIG_THREAD_ANALYZER_AUTO=y
    CONFIG_THREAD_ANALYZER_RUN_UNLOCKED=y
    
    CONFIG_HW_STACK_PROTECTION=y
    
    CONFIG_LOG_MODE_DEFERRED=y
    CONFIG_LOG_MODE_OVERFLOW=y
    CONFIG_CONSOLE=y
    CONFIG_STDOUT_CONSOLE=y
    CONFIG_LOG_BACKEND_UART=y
    CONFIG_LOG_DEFAULT_LEVEL=3
    
    # INDV
    CONFIG_USB_DRIVER_LOG_LEVEL_INF=y
    CONFIG_USB_DEVICE_LOG_LEVEL_INF=y
    CONFIG_BT_DEBUG_LOG=y
    CONFIG_BT_HCI_DRIVER_LOG_LEVEL_DBG=y
    CONFIG_BT_HCI_CORE_LOG_LEVEL_DBG=y
    
    #--------------------------------------------------------------------------------
    # Enable External Crystals
    #--------------------------------------------------------------------------------
    CONFIG_CLOCK_CONTROL_NRF_K32SRC_250PPM=y
    
    # Enable the External Low Frequency Oscillator
    CONFIG_SOC_ENABLE_LFXO=y
    CONFIG_SOC_LFXO_CAP_INT_7PF=y
    
    # Enable High Frequency Crystal internal capacitors
    CONFIG_SOC_HFXO_CAP_INTERNAL=y
    CONFIG_SOC_HFXO_CAP_INT_VALUE_X2=27
    
    
    
    #--------------------------------------------------------------------------------
    # Enable DC/DC regulators
    #--------------------------------------------------------------------------------
    # Enable App DC/DC regulator
    CONFIG_BOARD_ENABLE_DCDC_APP=y
    
    # Enable Net DC/DC regulator
    CONFIG_BOARD_ENABLE_DCDC_NET=y
    
    # Disable High Voltage DC/DC regulator
    CONFIG_BOARD_ENABLE_DCDC_HV=n

    build/zephyr/.config
    
    CONFIG_GPIO=y
    # CONFIG_KSCAN is not set
    # CONFIG_INPUT is not set
    # CONFIG_WIFI is not set
    # CONFIG_SPI is not set
    CONFIG_GPIO_INIT_PRIORITY=40
    # CONFIG_UHC_DRIVER is not set
    # CONFIG_REGULATOR is not set
    # CONFIG_SENSOR is not set
    # CONFIG_WATCHDOG is not set
    # CONFIG_MODEM is not set
    CONFIG_UART_INTERRUPT_DRIVEN=y
    # CONFIG_DISPLAY is not set
    CONFIG_I2C=y
    CONFIG_BT_HCI_ACL_FLOW_CONTROL=y
    CONFIG_BT_HCI_VS_EXT=y
    CONFIG_BOARD_BL5340_DVK_CPUAPP_ANY=y
    CONFIG_BOARD="bl5340pa_dvk_cpuapp"
    CONFIG_FLASH_LOAD_SIZE=0
    CONFIG_SRAM_SIZE=448
    CONFIG_FLASH_LOAD_OFFSET=0
    CONFIG_MBOX_NRFX_IPC=y
    CONFIG_HEAP_MEM_POOL_SIZE=4096
    CONFIG_BT_HCI_VS=y
    # CONFIG_BT_CTLR is not set
    # CONFIG_BT_ECC is not set
    CONFIG_MAIN_STACK_SIZE=1024
    CONFIG_SOC="nRF5340_CPUAPP_QKAA"
    CONFIG_SOC_SERIES="nrf53"
    CONFIG_NUM_IRQS=69
    CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=32768
    CONFIG_CLOCK_CONTROL_INIT_PRIORITY=30
    CONFIG_FLASH_SIZE=1024
    CONFIG_FLASH_BASE_ADDRESS=0x0
    CONFIG_ICACHE_LINE_SIZE=32
    CONFIG_DCACHE_LINE_SIZE=32
    CONFIG_ROM_START_OFFSET=0
    CONFIG_PINCTRL=y
    CONFIG_CLOCK_CONTROL=y
    # CONFIG_RESET is not set
    CONFIG_SOC_HAS_TIMING_FUNCTIONS=y
    CONFIG_ARCH_HAS_CUSTOM_BUSY_WAIT=y
    CONFIG_PM=y
    # CONFIG_PM_DEVICE is not set
    CONFIG_IPC_SERVICE_BACKEND_RPMSG_SHMEM_RESET=y
    CONFIG_LOG_DOMAIN_NAME=""
    CONFIG_NRF_RTC_TIMER=y
    CONFIG_SYS_CLOCK_TICKS_PER_SEC=32768
    CONFIG_BUILD_OUTPUT_HEX=y
    CONFIG_SERIAL_INIT_PRIORITY=55
    # CONFIG_FPU is not set
    # CONFIG_MBEDTLS is not set
    # CONFIG_MEMC is not set
    # CONFIG_CODE_DATA_RELOCATION is not set
    # CONFIG_CPU_HAS_CUSTOM_FIXED_SOC_MPU_REGIONS is not set
    # CONFIG_TINYCRYPT is not set
    CONFIG_SERIAL=y
    # CONFIG_SRAM_VECTOR_TABLE is not set
    CONFIG_MP_MAX_NUM_CPUS=1
    CONFIG_PLATFORM_SPECIFIC_INIT=y
    CONFIG_HAS_DTS=y
    
    #
    # Devicetree Info
    #
    CONFIG_DT_HAS_ARM_ARMV8M_ITM_ENABLED=y
    CONFIG_DT_HAS_ARM_ARMV8M_MPU_ENABLED=y
    CONFIG_DT_HAS_ARM_CORTEX_M33F_ENABLED=y
    CONFIG_DT_HAS_ARM_CRYPTOCELL_312_ENABLED=y
    CONFIG_DT_HAS_ARM_V8M_NVIC_ENABLED=y
    CONFIG_DT_HAS_ATMEL_AT24_ENABLED=y
    CONFIG_DT_HAS_FIXED_PARTITIONS_ENABLED=y
    CONFIG_DT_HAS_GPIO_KEYS_ENABLED=y
    CONFIG_DT_HAS_ILITEK_ILI9340_ENABLED=y
    CONFIG_DT_HAS_MICROCHIP_ENC424J600_ENABLED=y
    CONFIG_DT_HAS_MMIO_SRAM_ENABLED=y
    CONFIG_DT_HAS_NORDIC_MBOX_NRF_IPC_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_CC312_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_CLOCK_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_CTRLAPPERI_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_DCNF_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_DPPIC_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_EGU_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_FICR_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_GPIO_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_GPIO_FORWARDER_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_GPIOTE_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_GPREGRET_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_IPC_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_KMU_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_MUTEX_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_NFCT_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_OSCILLATORS_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_PINCTRL_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_POWER_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_PWM_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_QSPI_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_REGULATORS_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_RESET_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_SAADC_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_SPIM_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_SPU_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_TWIM_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_UARTE_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_UICR_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_USBD_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_USBREG_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_VMC_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_WDT_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF53_FLASH_CONTROLLER_ENABLED=y
    CONFIG_DT_HAS_NORDIC_QSPI_NOR_ENABLED=y
    CONFIG_DT_HAS_SOC_NV_FLASH_ENABLED=y
    CONFIG_DT_HAS_ZEPHYR_BT_HCI_ENTROPY_ENABLED=y
    CONFIG_DT_HAS_ZEPHYR_CDC_ACM_UART_ENABLED=y
    CONFIG_DT_HAS_ZEPHYR_IPC_OPENAMP_STATIC_VRINGS_ENABLED=y
    CONFIG_DT_HAS_ZEPHYR_SDHC_SPI_SLOT_ENABLED=y
    CONFIG_DT_HAS_ZEPHYR_SDMMC_DISK_ENABLED=y
    # end of Devicetree Info
    
    #
    # Modules
    #
    
    #
    # Available modules.
    #
    
    #
    # nrf (C:/Code/test/UA_ZEPHYR_V2/nrf)
    #
    CONFIG_NUM_METAIRQ_PRIORITIES=0
    CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=512
    CONFIG_LOG_BUFFER_SIZE=1024
    CONFIG_INIT_STACKS=y
    
    #
    # Nordic nRF Connect
    #
    CONFIG_WARN_EXPERIMENTAL=y
    CONFIG_PRIVILEGED_STACK_SIZE=1024
    CONFIG_BT_BUF_CMD_TX_COUNT=10
    # CONFIG_ENTROPY_GENERATOR is not set
    CONFIG_INIT_ARCH_HW_AT_BOOT=y
    CONFIG_NORDIC_QSPI_NOR_FLASH_LAYOUT_PAGE_SIZE=4096
    # CONFIG_GETOPT is not set
    # CONFIG_NCS_SAMPLES_DEFAULTS is not set
    CONFIG_NCS_INCLUDE_RPMSG_CHILD_IMAGE=y
    CONFIG_NCS_SAMPLE_HCI_RPMSG_CHILD_IMAGE=y
    
    #
    # Image build variants
    #
    # CONFIG_NCS_MCUBOOT_IN_BUILD is not set
    # end of Image build variants
    
    # CONFIG_NCS_SAMPLE_MCUMGR_BT_OTA_DFU_SPEEDUP is not set
    CONFIG_BT_BUF_ACL_TX_SIZE=251
    CONFIG_BT_BUF_ACL_RX_SIZE=255
    
    #
    # Bootloader
    #
    # CONFIG_BUILD_S1_VARIANT is not set
    # CONFIG_SECURE_BOOT is not set
    CONFIG_PM_PARTITION_SIZE_PROVISION=0x280
    # CONFIG_B0_MIN_PARTITION_SIZE is not set
    CONFIG_PM_PARTITION_SIZE_B0_IMAGE=0x8000
    # CONFIG_SECURE_BOOT_CRYPTO is not set
    
    #
    # Secure Boot firmware validation
    #
    CONFIG_SB_VALIDATION_INFO_MAGIC=0x86518483
    CONFIG_SB_VALIDATION_POINTER_MAGIC=0x6919b47e
    CONFIG_SB_VALIDATION_INFO_CRYPTO_ID=1
    CONFIG_SB_VALIDATION_INFO_VERSION=2
    CONFIG_SB_VALIDATION_METADATA_OFFSET=0
    CONFIG_SB_VALIDATE_FW_SIGNATURE=y
    # end of Secure Boot firmware validation
    # end of Bootloader
    
    #
    # Bluetooth Low Energy
    #
    CONFIG_BT_MAX_CONN=16
    CONFIG_BT_HCI_TX_STACK_SIZE=1024
    CONFIG_BT_RX_STACK_SIZE=2048
    
    #
    # BLE Libraries
    #
    # CONFIG_BT_GATT_POOL is not set
    # CONFIG_BT_GATT_DM is not set
    # CONFIG_BT_ADV_PROV is not set
    # CONFIG_BT_SCAN is not set
    # CONFIG_BT_CONN_CTX is not set
    
    #
    # Bluetooth Services
    #
    # CONFIG_BT_AMS_CLIENT is not set
    # CONFIG_BT_ANCS_CLIENT is not set
    # CONFIG_BT_BAS_CLIENT is not set
    # CONFIG_BT_BMS is not set
    # CONFIG_BT_CTS_CLIENT is not set
    # CONFIG_BT_DFU_SMP is not set
    # CONFIG_BT_GATTP is not set
    # CONFIG_BT_HIDS is not set
    # CONFIG_BT_HOGP is not set
    # CONFIG_BT_LBS is not set
    # CONFIG_BT_NSMS is not set
    # CONFIG_BT_NUS is not set
    # CONFIG_BT_NUS_CLIENT is not set
    # CONFIG_BT_RSCS is not set
    # CONFIG_BT_THROUGHPUT is not set
    # CONFIG_BT_LATENCY is not set
    # CONFIG_BT_LATENCY_CLIENT is not set
    # CONFIG_BT_HRS_CLIENT is not set
    # CONFIG_BT_DDFS is not set
    # CONFIG_BT_MDS is not set
    # CONFIG_BT_CGMS is not set
    # CONFIG_BT_FAST_PAIR is not set
    # end of Bluetooth Services
    
    #
    # BLE over nRF RPC
    #
    CONFIG_BT_DRIVERS=y
    # CONFIG_BT_RPC_STACK is not set
    CONFIG_BT_CENTRAL=y
    CONFIG_BT_PERIPHERAL=y
    CONFIG_BT_OBSERVER=y
    CONFIG_BT_BROADCASTER=y
    CONFIG_BT_CONN=y
    CONFIG_BT_REMOTE_VERSION=y
    CONFIG_BT_PHY_UPDATE=y
    CONFIG_BT_DATA_LEN_UPDATE=y
    # CONFIG_BT_EXT_ADV is not set
    CONFIG_BT_BUF_ACL_TX_COUNT=7
    CONFIG_BT_BUF_ACL_RX_COUNT=6
    CONFIG_BT_BUF_EVT_RX_SIZE=255
    CONFIG_BT_BUF_EVT_RX_COUNT=16
    CONFIG_BT_BUF_EVT_DISCARDABLE_SIZE=255
    CONFIG_BT_BUF_CMD_TX_SIZE=255
    CONFIG_BT_HAS_HCI_VS=y
    # CONFIG_BT_HCI_VS_EVT is not set
    # CONFIG_BT_HCI_VS_FATAL_ERROR is not set
    # CONFIG_BT_HCI_VS_EXT_DETECT is not set
    # CONFIG_BT_HCI_MESH_EXT is not set
    # CONFIG_BT_WAIT_NOP is not set
    CONFIG_BT_ASSERT=y
    CONFIG_BT_ASSERT_VERBOSE=y
    # CONFIG_BT_ASSERT_PANIC is not set
    # CONFIG_BT_DEBUG_NONE is not set
    CONFIG_BT_DEBUG_LOG=y
    # CONFIG_BT_DEBUG_MONITOR_UART is not set
    # CONFIG_BT_LONG_WQ is not set
    # CONFIG_BT_HCI_TX_STACK_SIZE_WITH_PROMPT is not set
    CONFIG_BT_HCI_TX_PRIO=7
    CONFIG_BT_HCI_RESERVE=1
    # CONFIG_BT_RECV_BLOCKING is not set
    # CONFIG_BT_RECV_WORKQ_SYS is not set
    CONFIG_BT_RECV_WORKQ_BT=y
    CONFIG_BT_RX_PRIO=8
    CONFIG_BT_DRIVER_RX_HIGH_PRIO=6
    # CONFIG_BT_HOST_CCM is not set
    # CONFIG_BT_LOG_SNIFFER_INFO is not set
    # CONFIG_BT_TESTING is not set
    # CONFIG_BT_HCI_VS_EVT_USER is not set
    # end of BLE over nRF RPC
    # end of Bluetooth Low Energy
    
    #
    # DFU
    #
    # CONFIG_DFU_MULTI_IMAGE is not set
    # CONFIG_DFU_TARGET is not set
    # end of DFU
    
    # CONFIG_ESB is not set
    # CONFIG_ESB_LOG_LEVEL_OFF is not set
    # CONFIG_ESB_LOG_LEVEL_ERR is not set
    # CONFIG_ESB_LOG_LEVEL_WRN is not set
    # CONFIG_ESB_LOG_LEVEL_INF is not set
    # CONFIG_ESB_LOG_LEVEL_DBG is not set
    CONFIG_ESB_LOG_LEVEL_DEFAULT=y
    CONFIG_ESB_LOG_LEVEL=3
    
    #
    # Peripheral CPU DFU (PCD)
    #
    # CONFIG_PCD is not set
    # CONFIG_PCD_APP is not set
    # CONFIG_PCD_NET is not set
    # end of Peripheral CPU DFU (PCD)
    
    #
    # Networking
    #
    
    #
    # Application protocols
    #
    
    #
    # nRF Cloud
    #
    
    #
    # Client ID (nRF Cloud Device ID)
    #
    CONFIG_NRF_CLOUD_CLIENT_ID_SRC_COMPILE_TIME=y
    CONFIG_NRF_CLOUD_CLIENT_ID="my-client-id"
    # end of Client ID (nRF Cloud Device ID)
    
    # CONFIG_NRF_CLOUD_MQTT is not set
    # CONFIG_NRF_CLOUD_FOTA is not set
    # CONFIG_NRF_CLOUD_FOTA_FULL_MODEM_UPDATE is not set
    # CONFIG_NRF_CLOUD_REST is not set
    # CONFIG_NRF_CLOUD_ALERT is not set
    # CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL_OFF is not set
    # CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL_ERR is not set
    # CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL_WRN is not set
    # CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL_INF is not set
    # CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL_DBG is not set
    CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL_DEFAULT=y
    CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL=3
    CONFIG_NRF_CLOUD_LOG_OUTPUT_LEVEL=1
    CONFIG_NRF_CLOUD_LOG_BUF_SIZE=256
    # CONFIG_NRF_CLOUD_LOG_LOG_LEVEL_OFF is not set
    # CONFIG_NRF_CLOUD_LOG_LOG_LEVEL_ERR is not set
    # CONFIG_NRF_CLOUD_LOG_LOG_LEVEL_WRN is not set
    # CONFIG_NRF_CLOUD_LOG_LOG_LEVEL_INF is not set
    # CONFIG_NRF_CLOUD_LOG_LOG_LEVEL_DBG is not set
    CONFIG_NRF_CLOUD_LOG_LOG_LEVEL_DEFAULT=y
    CONFIG_NRF_CLOUD_LOG_LOG_LEVEL=3
    # CONFIG_NRF_CLOUD_GATEWAY is not set
    # CONFIG_NRF_CLOUD_LOG_LEVEL_OFF is not set
    # CONFIG_NRF_CLOUD_LOG_LEVEL_ERR is not set
    # CONFIG_NRF_CLOUD_LOG_LEVEL_WRN is not set
    # CONFIG_NRF_CLOUD_LOG_LEVEL_INF is not set
    # CONFIG_NRF_CLOUD_LOG_LEVEL_DBG is not set
    CONFIG_NRF_CLOUD_LOG_LEVEL_DEFAULT=y
    CONFIG_NRF_CLOUD_LOG_LEVEL=3
    # end of nRF Cloud
    
    # CONFIG_REST_CLIENT is not set
    # CONFIG_DOWNLOAD_CLIENT is not set
    # CONFIG_AWS_IOT is not set
    # CONFIG_AWS_JOBS is not set
    # CONFIG_AZURE_IOT_HUB is not set
    
    #
    # Self-Registration (Zi ZHu Ce)
    #
    # end of Self-Registration (Zi ZHu Ce)
    
    # CONFIG_ICAL_PARSER is not set
    # CONFIG_FTP_CLIENT is not set
    # CONFIG_LWM2M_CLIENT_UTILS is not set
    # CONFIG_WIFI_CREDENTIALS is not set
    # CONFIG_WIFI_CREDENTIALS_STATIC is not set
    # CONFIG_MQTT_HELPER is not set
    # end of Application protocols
    # end of Networking
    
    #
    # NFC
    #
    # CONFIG_NFC_NDEF is not set
    # CONFIG_NFC_NDEF_PARSER is not set
    # CONFIG_NFC_NDEF_PAYLOAD_TYPE_COMMON is not set
    # CONFIG_NFC_T2T_PARSER is not set
    # CONFIG_NFC_T4T_NDEF_FILE is not set
    # CONFIG_NFC_T4T_ISODEP is not set
    # CONFIG_NFC_T4T_APDU is not set
    # CONFIG_NFC_T4T_CC_FILE is not set
    # CONFIG_NFC_T4T_HL_PROCEDURE is not set
    # CONFIG_NFC_PLATFORM is not set
    # CONFIG_NFC_TNEP_TAG is not set
    # CONFIG_NFC_TNEP_POLLER is not set
    # CONFIG_NFC_TNEP_CH is not set
    # end of NFC
    
    # CONFIG_APP_EVENT_MANAGER is not set
    # CONFIG_NRF_PROFILER is not set
    # CONFIG_FW_INFO is not set
    
    #
    # Debug
    #
    # CONFIG_CPU_LOAD is not set
    # CONFIG_PPI_TRACE is not set
    # end of Debug
    
    # CONFIG_SHELL_BT_NUS is not set
    # CONFIG_SHELL_IPC is not set
    # CONFIG_MPSL_FEM_ONLY is not set
    # CONFIG_MPSL_FEM_DEVICE_CONFIG_254 is not set
    # CONFIG_MPSL_FEM_LOG_LEVEL_OFF is not set
    # CONFIG_MPSL_FEM_LOG_LEVEL_ERR is not set
    # CONFIG_MPSL_FEM_LOG_LEVEL_WRN is not set
    # CONFIG_MPSL_FEM_LOG_LEVEL_INF is not set
    # CONFIG_MPSL_FEM_LOG_LEVEL_DBG is not set
    CONFIG_MPSL_FEM_LOG_LEVEL_DEFAULT=y
    CONFIG_MPSL_FEM_LOG_LEVEL=3
    CONFIG_MPSL_THREAD_COOP_PRIO=8
    CONFIG_MPSL_WORK_STACK_SIZE=1024
    CONFIG_MPSL_TIMESLOT_SESSION_COUNT=0
    # CONFIG_MPSL_ASSERT_HANDLER is not set
    # CONFIG_MPSL_LOG_LEVEL_OFF is not set
    # CONFIG_MPSL_LOG_LEVEL_ERR is not set
    # CONFIG_MPSL_LOG_LEVEL_WRN is not set
    # CONFIG_MPSL_LOG_LEVEL_INF is not set
    # CONFIG_MPSL_LOG_LEVEL_DBG is not set
    CONFIG_MPSL_LOG_LEVEL_DEFAULT=y
    CONFIG_MPSL_LOG_LEVEL=3
    
    #
    # Partition Manager
    #
    CONFIG_PARTITION_MANAGER_ENABLED=y
    CONFIG_FLASH_MAP_CUSTOM=y
    CONFIG_SRAM_BASE_ADDRESS=0x20000000
    
    #
    # Zephyr subsystem configurations
    #
    CONFIG_RPMSG_NRF53_SRAM_SIZE=0x10000
    # end of Zephyr subsystem configurations
    
    #
    # NCS subsystem configurations
    #
    # CONFIG_PM_SINGLE_IMAGE is not set
    CONFIG_PM_EXTERNAL_FLASH_BASE=0
    # CONFIG_PM_OVERRIDE_EXTERNAL_DRIVER_CHECK is not set
    CONFIG_PM_SRAM_BASE=0x20000000
    CONFIG_PM_SRAM_SIZE=0x80000
    # end of Partition Manager
    
    #
    # nRF RPC (Remote Procedure Call) library
    #
    # end of nRF RPC (Remote Procedure Call) library
    
    # CONFIG_ZIGBEE is not set
    
    #
    # Full Modem Firmware Update Management(FMFU)
    #
    # CONFIG_MGMT_FMFU_LOG_LEVEL_OFF is not set
    # CONFIG_MGMT_FMFU_LOG_LEVEL_ERR is not set
    # CONFIG_MGMT_FMFU_LOG_LEVEL_WRN is not set
    # CONFIG_MGMT_FMFU_LOG_LEVEL_INF is not set
    # CONFIG_MGMT_FMFU_LOG_LEVEL_DBG is not set
    CONFIG_MGMT_FMFU_LOG_LEVEL_DEFAULT=y
    CONFIG_MGMT_FMFU_LOG_LEVEL=3
    # end of Full Modem Firmware Update Management(FMFU)
    
    # CONFIG_CAF is not set
    
    #
    # Nordic IEEE 802.15.4
    #
    # end of Nordic IEEE 802.15.4
    
    # CONFIG_DM_MODULE is not set
    
    #
    # TF-M SPM component configs
    #
    CONFIG_TFM_CONN_HANDLE_MAX_NUM=8
    # end of TF-M SPM component configs
    
    #
    # Libraries
    #
    
    #
    # Binary libraries
    #
    # CONFIG_BT_LL_ACS_NRF53 is not set
    # end of Binary libraries
    
    # CONFIG_ADP536X is not set
    # CONFIG_AT_MONITOR is not set
    # CONFIG_LTE_LINK_CONTROL is not set
    CONFIG_NRF_SPU_FLASH_REGION_SIZE=0x4000
    CONFIG_FPROTECT_BLOCK_SIZE=0x4000
    # CONFIG_FPROTECT is not set
    # CONFIG_AT_CMD_CUSTOM is not set
    # CONFIG_DK_LIBRARY is not set
    # CONFIG_MODEM_INFO is not set
    CONFIG_RESET_ON_FATAL_ERROR=y
    # CONFIG_FATAL_ERROR_LOG_LEVEL_OFF is not set
    # CONFIG_FATAL_ERROR_LOG_LEVEL_ERR is not set
    # CONFIG_FATAL_ERROR_LOG_LEVEL_WRN is not set
    # CONFIG_FATAL_ERROR_LOG_LEVEL_INF is not set
    # CONFIG_FATAL_ERROR_LOG_LEVEL_DBG is not set
    CONFIG_FATAL_ERROR_LOG_LEVEL_DEFAULT=y
    CONFIG_FATAL_ERROR_LOG_LEVEL=3
    # CONFIG_SMS is not set
    # CONFIG_SUPL_CLIENT_LIB is not set
    # CONFIG_DATE_TIME is not set
    # CONFIG_HW_ID_LIBRARY is not set
    # CONFIG_RAM_POWER_DOWN_LIBRARY is not set
    # CONFIG_WAVE_GEN_LIB is not set
    CONFIG_HW_UNIQUE_KEY_PARTITION_SIZE=0
    # CONFIG_MODEM_JWT is not set
    # CONFIG_QOS is not set
    # CONFIG_SFLOAT is not set
    # CONFIG_CONTIN_ARRAY is not set
    # CONFIG_PCM_MIX is not set
    # CONFIG_TONE is not set
    # CONFIG_PSCM is not set
    # CONFIG_DATA_FIFO is not set
    # CONFIG_FEM_AL_LIB is not set
    # end of Libraries
    
    #
    # Device Drivers
    #
    # CONFIG_BT_DRIVER_QUIRK_NO_AUTO_DLE is not set
    CONFIG_HW_CC3XX=y
    # CONFIG_ETH_RTT is not set
    # CONFIG_NRF_SW_LPUART is not set
    CONFIG_NRFX_GPIOTE_NUM_OF_EVT_HANDLERS=1
    # CONFIG_IPC_UART is not set
    # end of Device Drivers
    
    #
    # External libraries
    #
    # end of External libraries
    
    #
    # Test
    #
    CONFIG_ZTEST_MULTICORE_DEFAULT_SETTINGS=y
    # CONFIG_UNITY is not set
    
    #
    # Mocks
    #
    # CONFIG_MOCK_NRF_MODEM_AT is not set
    # end of Mocks
    # end of Test
    # end of Nordic nRF Connect
    
    CONFIG_ZEPHYR_NRF_MODULE=y
    # end of nrf (C:/Code/test/UA_ZEPHYR_V2/nrf)
    
    #
    # hostap (C:/Code/test/UA_ZEPHYR_V2/modules/lib/hostap)
    #
    CONFIG_POSIX_MAX_FDS=4
    CONFIG_ZEPHYR_HOSTAP_MODULE=y
    # end of hostap (C:/Code/test/UA_ZEPHYR_V2/modules/lib/hostap)
    
    #
    # mcuboot (C:/Code/test/UA_ZEPHYR_V2/bootloader/mcuboot)
    #
    
    #
    # MCUboot
    #
    CONFIG_BOOT_SIGNATURE_KEY_FILE=""
    CONFIG_DT_FLASH_WRITE_BLOCK_SIZE=4
    CONFIG_MCUBOOT_USB_SUPPORT=y
    # CONFIG_MCUBOOT_USE_ALL_AVAILABLE_RAM is not set
    # end of MCUboot
    
    CONFIG_ZEPHYR_MCUBOOT_MODULE=y
    # end of mcuboot (C:/Code/test/UA_ZEPHYR_V2/bootloader/mcuboot)
    
    #
    # mbedtls (C:/Code/test/UA_ZEPHYR_V2/modules/crypto/mbedtls)
    #
    CONFIG_ZEPHYR_MBEDTLS_MODULE=y
    CONFIG_MBEDTLS_BUILTIN=y
    # CONFIG_MBEDTLS_LIBRARY is not set
    # end of mbedtls (C:/Code/test/UA_ZEPHYR_V2/modules/crypto/mbedtls)
    
    #
    # trusted-firmware-m (C:/Code/test/UA_ZEPHYR_V2/modules/tee/tf-m/trusted-firmware-m)
    #
    # CONFIG_BOOTLOADER_MCUBOOT is not set
    CONFIG_ZEPHYR_TRUSTED_FIRMWARE_M_MODULE=y
    # end of trusted-firmware-m (C:/Code/test/UA_ZEPHYR_V2/modules/tee/tf-m/trusted-firmware-m)
    
    #
    # cjson (C:/Code/test/UA_ZEPHYR_V2/modules/lib/cjson)
    #
    CONFIG_ZEPHYR_CJSON_MODULE=y
    # end of cjson (C:/Code/test/UA_ZEPHYR_V2/modules/lib/cjson)
    
    #
    # azure-sdk-for-c (C:/Code/test/UA_ZEPHYR_V2/modules/lib/azure-sdk-for-c)
    #
    # CONFIG_AZURE_SDK is not set
    CONFIG_ZEPHYR_AZURE_SDK_FOR_C_MODULE=y
    # end of azure-sdk-for-c (C:/Code/test/UA_ZEPHYR_V2/modules/lib/azure-sdk-for-c)
    
    #
    # cirrus-logic (C:/Code/test/UA_ZEPHYR_V2/modules/hal/cirrus-logic)
    #
    # CONFIG_HW_CODEC_CIRRUS_LOGIC is not set
    CONFIG_ZEPHYR_CIRRUS_LOGIC_MODULE=y
    # end of cirrus-logic (C:/Code/test/UA_ZEPHYR_V2/modules/hal/cirrus-logic)
    
    #
    # openthread (C:/Code/test/UA_ZEPHYR_V2/modules/lib/openthread)
    #
    # CONFIG_OPENTHREAD is not set
    CONFIG_ZEPHYR_OPENTHREAD_MODULE=y
    # end of openthread (C:/Code/test/UA_ZEPHYR_V2/modules/lib/openthread)
    
    #
    # memfault-firmware-sdk (C:/Code/test/UA_ZEPHYR_V2/modules/lib/memfault-firmware-sdk)
    #
    # CONFIG_MEMFAULT is not set
    CONFIG_ZEPHYR_MEMFAULT_FIRMWARE_SDK_MODULE=y
    # end of memfault-firmware-sdk (C:/Code/test/UA_ZEPHYR_V2/modules/lib/memfault-firmware-sdk)
    
    #
    # canopennode (C:/Code/test/UA_ZEPHYR_V2/modules/lib/canopennode)
    #
    CONFIG_ZEPHYR_CANOPENNODE_MODULE=y
    # end of canopennode (C:/Code/test/UA_ZEPHYR_V2/modules/lib/canopennode)
    
    #
    # chre (C:/Code/test/UA_ZEPHYR_V2/modules/lib/chre)
    #
    CONFIG_ZEPHYR_CHRE_MODULE=y
    # CONFIG_CHRE is not set
    # end of chre (C:/Code/test/UA_ZEPHYR_V2/modules/lib/chre)
    
    #
    # fatfs (C:/Code/test/UA_ZEPHYR_V2/modules/fs/fatfs)
    #
    CONFIG_ZEPHYR_FATFS_MODULE=y
    # end of fatfs (C:/Code/test/UA_ZEPHYR_V2/modules/fs/fatfs)
    
    #
    # hal_nordic (C:/Code/test/UA_ZEPHYR_V2/modules/hal/nordic)
    #
    CONFIG_ZEPHYR_HAL_NORDIC_MODULE=y
    CONFIG_HAS_NORDIC_DRIVERS=y
    
    #
    # Nordic drivers
    #
    # CONFIG_NRF_802154_SOURCE_HAL_NORDIC is not set
    # CONFIG_NRF_802154_SER_HOST is not set
    # end of Nordic drivers
    
    CONFIG_HAS_NRFX=y
    
    #
    # nrfx drivers
    #
    CONFIG_NRFX_CLOCK=y
    CONFIG_NRFX_CLOCK_LFXO_TWO_STAGE_ENABLED=y
    # CONFIG_NRFX_COMP is not set
    CONFIG_NRFX_DPPI=y
    # CONFIG_NRFX_EGU0 is not set
    # CONFIG_NRFX_EGU1 is not set
    # CONFIG_NRFX_EGU2 is not set
    # CONFIG_NRFX_EGU3 is not set
    # CONFIG_NRFX_EGU4 is not set
    # CONFIG_NRFX_EGU5 is not set
    CONFIG_NRFX_GPIOTE=y
    # CONFIG_NRFX_I2S is not set
    CONFIG_NRFX_IPC=y
    # CONFIG_NRFX_NFCT is not set
    # CONFIG_NRFX_NVMC is not set
    # CONFIG_NRFX_PDM is not set
    CONFIG_NRFX_POWER=y
    # CONFIG_NRFX_PWM0 is not set
    # CONFIG_NRFX_PWM1 is not set
    # CONFIG_NRFX_PWM2 is not set
    # CONFIG_NRFX_PWM3 is not set
    # CONFIG_NRFX_QDEC is not set
    # CONFIG_NRFX_QSPI is not set
    # CONFIG_NRFX_RTC0 is not set
    # CONFIG_NRFX_RTC1 is not set
    # CONFIG_NRFX_SAADC is not set
    # CONFIG_NRFX_SPIM0 is not set
    # CONFIG_NRFX_SPIM1 is not set
    # CONFIG_NRFX_SPIM2 is not set
    # CONFIG_NRFX_SPIM3 is not set
    # CONFIG_NRFX_SPIM4 is not set
    # CONFIG_NRFX_SYSTICK is not set
    # CONFIG_NRFX_TIMER0 is not set
    # CONFIG_NRFX_TIMER1 is not set
    # CONFIG_NRFX_TIMER2 is not set
    CONFIG_NRFX_TWIM=y
    # CONFIG_NRFX_TWIM0 is not set
    CONFIG_NRFX_TWIM1=y
    # CONFIG_NRFX_TWIM2 is not set
    # CONFIG_NRFX_TWIM3 is not set
    # CONFIG_NRFX_UARTE0 is not set
    # CONFIG_NRFX_UARTE1 is not set
    # CONFIG_NRFX_UARTE2 is not set
    # CONFIG_NRFX_UARTE3 is not set
    CONFIG_NRFX_USBD=y
    CONFIG_NRFX_USBREG=y
    # CONFIG_NRFX_WDT0 is not set
    # CONFIG_NRFX_WDT1 is not set
    
    #
    # Peripheral Resource Sharing module
    #
    # CONFIG_NRFX_PRS_BOX_0 is not set
    # CONFIG_NRFX_PRS_BOX_1 is not set
    # CONFIG_NRFX_PRS_BOX_2 is not set
    # CONFIG_NRFX_PRS_BOX_3 is not set
    # CONFIG_NRFX_PRS_BOX_4 is not set
    # end of Peripheral Resource Sharing module
    # end of nrfx drivers
    # end of hal_nordic (C:/Code/test/UA_ZEPHYR_V2/modules/hal/nordic)
    
    #
    # liblc3 (C:/Code/test/UA_ZEPHYR_V2/modules/lib/liblc3)
    #
    CONFIG_ZEPHYR_LIBLC3_MODULE=y
    # end of liblc3 (C:/Code/test/UA_ZEPHYR_V2/modules/lib/liblc3)
    
    #
    # littlefs (C:/Code/test/UA_ZEPHYR_V2/modules/fs/littlefs)
    #
    CONFIG_ZEPHYR_LITTLEFS_MODULE=y
    # end of littlefs (C:/Code/test/UA_ZEPHYR_V2/modules/fs/littlefs)
    
    #
    # loramac-node (C:/Code/test/UA_ZEPHYR_V2/modules/lib/loramac-node)
    #
    CONFIG_ZEPHYR_LORAMAC_NODE_MODULE=y
    # CONFIG_HAS_SEMTECH_RADIO_DRIVERS is not set
    # end of loramac-node (C:/Code/test/UA_ZEPHYR_V2/modules/lib/loramac-node)
    
    #
    # lvgl (C:/Code/test/UA_ZEPHYR_V2/modules/lib/gui/lvgl)
    #
    CONFIG_ZEPHYR_LVGL_MODULE=y
    # end of lvgl (C:/Code/test/UA_ZEPHYR_V2/modules/lib/gui/lvgl)
    
    #
    # lz4 (C:/Code/test/UA_ZEPHYR_V2/modules/lib/lz4)
    #
    CONFIG_ZEPHYR_LZ4_MODULE=y
    # CONFIG_LZ4 is not set
    # end of lz4 (C:/Code/test/UA_ZEPHYR_V2/modules/lib/lz4)
    
    #
    # nanopb (C:/Code/test/UA_ZEPHYR_V2/modules/lib/nanopb)
    #
    CONFIG_ZEPHYR_NANOPB_MODULE=y
    # CONFIG_NANOPB is not set
    # end of nanopb (C:/Code/test/UA_ZEPHYR_V2/modules/lib/nanopb)
    
    #
    # picolibc (C:/Code/test/UA_ZEPHYR_V2/modules/lib/picolibc)
    #
    # CONFIG_PICOLIBC_MODULE is not set
    CONFIG_ZEPHYR_PICOLIBC_MODULE=y
    # end of picolibc (C:/Code/test/UA_ZEPHYR_V2/modules/lib/picolibc)
    
    #
    # segger (C:/Code/test/UA_ZEPHYR_V2/modules/debug/segger)
    #
    CONFIG_ZEPHYR_SEGGER_MODULE=y
    CONFIG_HAS_SEGGER_RTT=y
    # CONFIG_USE_SEGGER_RTT is not set
    # end of segger (C:/Code/test/UA_ZEPHYR_V2/modules/debug/segger)
    
    #
    # TraceRecorder (C:/Code/test/UA_ZEPHYR_V2/modules/debug/TraceRecorder)
    #
    CONFIG_ZEPHYR_TRACERECORDER_MODULE=y
    # end of TraceRecorder (C:/Code/test/UA_ZEPHYR_V2/modules/debug/TraceRecorder)
    
    #
    # uoscore-uedhoc (C:/Code/test/UA_ZEPHYR_V2/modules/lib/uoscore-uedhoc)
    #
    CONFIG_ZEPHYR_UOSCORE_UEDHOC_MODULE=y
    # end of uoscore-uedhoc (C:/Code/test/UA_ZEPHYR_V2/modules/lib/uoscore-uedhoc)
    
    #
    # zcbor (C:/Code/test/UA_ZEPHYR_V2/modules/lib/zcbor)
    #
    CONFIG_ZEPHYR_ZCBOR_MODULE=y
    # CONFIG_ZCBOR is not set
    # end of zcbor (C:/Code/test/UA_ZEPHYR_V2/modules/lib/zcbor)
    
    #
    # zscilib (C:/Code/test/UA_ZEPHYR_V2/modules/lib/zscilib)
    #
    # CONFIG_ZSL is not set
    CONFIG_ZEPHYR_ZSCILIB_MODULE=y
    # end of zscilib (C:/Code/test/UA_ZEPHYR_V2/modules/lib/zscilib)
    
    #
    # nrfxlib (C:/Code/test/UA_ZEPHYR_V2/nrfxlib)
    #
    
    #
    # Nordic nrfxlib
    #
    CONFIG_NRF_MODEM_SHMEM_CTRL_SIZE=0x4e8
    # CONFIG_NFC_T2T_NRFXLIB is not set
    # CONFIG_NFC_T4T_NRFXLIB is not set
    
    #
    # Crypto libraries for nRF5x SOCs.
    #
    CONFIG_NRFXLIB_CRYPTO=y
    CONFIG_CRYPTOCELL_CC312_USABLE=y
    CONFIG_CRYPTOCELL_USABLE=y
    # CONFIG_NRF_OBERON is not set
    # CONFIG_NRF_CC310_BL is not set
    CONFIG_NRF_CC3XX_PLATFORM=y
    CONFIG_CC3XX_MUTEX_LOCK=y
    # CONFIG_CC3XX_ATOMIC_LOCK is not set
    # CONFIG_CC3XX_HW_MUTEX_LOCK is not set
    # end of Crypto libraries for nRF5x SOCs.
    
    #
    # nrf_security module
    #
    # CONFIG_NORDIC_SECURITY_BACKEND is not set
    # CONFIG_NRF_SECURITY is not set
    # end of nrf_security module
    
    # CONFIG_NRF_RPC is not set
    CONFIG_NRF_802154_SOURCE_NRFXLIB=y
    # CONFIG_GZLL is not set
    # CONFIG_NRF_DM is not set
    # CONFIG_LC3_PLC_DISABLED is not set
    CONFIG_LC3_ENC_CHAN_MAX=1
    CONFIG_LC3_DEC_CHAN_MAX=1
    
    #
    # Encoder sample rates
    #
    CONFIG_LC3_ENC_SAMPLE_RATE_8KHZ_SUPPORT=y
    CONFIG_LC3_ENC_SAMPLE_RATE_16KHZ_SUPPORT=y
    CONFIG_LC3_ENC_SAMPLE_RATE_24KHZ_SUPPORT=y
    CONFIG_LC3_ENC_SAMPLE_RATE_32KHZ_SUPPORT=y
    CONFIG_LC3_ENC_SAMPLE_RATE_441KHZ_SUPPORT=y
    CONFIG_LC3_ENC_SAMPLE_RATE_48KHZ_SUPPORT=y
    # end of Encoder sample rates
    
    #
    # Decoder sample rates
    #
    CONFIG_LC3_DEC_SAMPLE_RATE_8KHZ_SUPPORT=y
    CONFIG_LC3_DEC_SAMPLE_RATE_16KHZ_SUPPORT=y
    CONFIG_LC3_DEC_SAMPLE_RATE_24KHZ_SUPPORT=y
    CONFIG_LC3_DEC_SAMPLE_RATE_32KHZ_SUPPORT=y
    CONFIG_LC3_DEC_SAMPLE_RATE_441KHZ_SUPPORT=y
    CONFIG_LC3_DEC_SAMPLE_RATE_48KHZ_SUPPORT=y
    # end of Decoder sample rates
    
    # CONFIG_NRF_FUEL_GAUGE is not set
    # end of Nordic nrfxlib
    
    CONFIG_ZEPHYR_NRFXLIB_MODULE=y
    # end of nrfxlib (C:/Code/test/UA_ZEPHYR_V2/nrfxlib)
    
    #
    # connectedhomeip (C:/Code/test/UA_ZEPHYR_V2/modules/lib/matter)
    #
    # CONFIG_CHIP is not set
    # CONFIG_CHIP_LOG_SIZE_OPTIMIZATION is not set
    CONFIG_ZEPHYR_CONNECTEDHOMEIP_MODULE=y
    # end of connectedhomeip (C:/Code/test/UA_ZEPHYR_V2/modules/lib/matter)
    
    #
    # Optional modules. Make sure they're installed, via the project manifest.
    #
    CONFIG_HAS_CMSIS_CORE=y
    CONFIG_HAS_CMSIS_CORE_M=y
    # CONFIG_CMSIS_DSP is not set
    # CONFIG_CMSIS_NN is not set
    CONFIG_LIBMETAL=y
    CONFIG_LIBMETAL_SRC_PATH="libmetal"
    # CONFIG_LVGL is not set
    # CONFIG_HAS_MEC_HAL is not set
    # CONFIG_HAS_MPFS_HAL is not set
    CONFIG_OPENAMP=y
    CONFIG_OPENAMP_SRC_PATH="open-amp"
    CONFIG_OPENAMP_MASTER=y
    CONFIG_OPENAMP_SLAVE=y
    # CONFIG_SOF is not set
    # CONFIG_MIPI_SYST_LIB is not set
    # CONFIG_HAS_TELINK_DRIVERS is not set
    # CONFIG_MCUBOOT_BOOTUTIL_LIB is not set
    
    #
    # Unavailable modules, please install those via the project manifest.
    #
    
    #
    # hal_gigadevice module not available.
    #
    
    #
    # Trusted-firmware-a module not available.
    #
    
    #
    # THRIFT module not available.
    #
    # end of Modules
    
    CONFIG_BOARD_REVISION="$BOARD_REVISION"
    # CONFIG_NET_DRIVERS is not set
    # CONFIG_BOARD_BL5340_DVK_CPUAPP is not set
    # CONFIG_BOARD_BL5340_DVK_CPUAPP_NS is not set
    CONFIG_BOARD_BL5340PA_DVK_CPUAPP=y
    # CONFIG_BOARD_BL5340PA_DVK_CPUAPP_NS is not set
    
    #
    # Board Options
    #
    CONFIG_BOARD_ENABLE_DCDC_APP=y
    CONFIG_BOARD_ENABLE_DCDC_NET=y
    # CONFIG_BOARD_ENABLE_DCDC_HV is not set
    CONFIG_BOARD_ENABLE_CPUNET=y
    CONFIG_DOMAIN_CPUNET_BOARD="bl5340pa_dvk_cpunet"
    # end of Board Options
    
    # CONFIG_SOC_SERIES_BEETLE is not set
    # CONFIG_SOC_SERIES_ARM_DESIGNSTART is not set
    # CONFIG_SOC_SERIES_FVP_AEMV8R_AARCH32 is not set
    # CONFIG_SOC_SERIES_MPS2 is not set
    # CONFIG_SOC_SERIES_MPS3 is not set
    # CONFIG_SOC_SERIES_MUSCA_B1 is not set
    # CONFIG_SOC_SERIES_MUSCA_S1 is not set
    # CONFIG_SOC_SERIES_AST10X0 is not set
    # CONFIG_SOC_SERIES_SAMC20 is not set
    # CONFIG_SOC_SERIES_SAMC21 is not set
    # CONFIG_SOC_SERIES_SAMD20 is not set
    # CONFIG_SOC_SERIES_SAMD21 is not set
    # CONFIG_SOC_SERIES_SAMD51 is not set
    # CONFIG_SOC_SERIES_SAME51 is not set
    # CONFIG_SOC_SERIES_SAME53 is not set
    # CONFIG_SOC_SERIES_SAME54 is not set
    # CONFIG_SOC_SERIES_SAML21 is not set
    # CONFIG_SOC_SERIES_SAMR21 is not set
    # CONFIG_SOC_SERIES_SAMR34 is not set
    # CONFIG_SOC_SERIES_SAMR35 is not set
    # CONFIG_SOC_SERIES_SAM3X is not set
    # CONFIG_SOC_SERIES_SAM4E is not set
    # CONFIG_SOC_SERIES_SAM4L is not set
    # CONFIG_SOC_SERIES_SAM4S is not set
    # CONFIG_SOC_SERIES_SAME70 is not set
    # CONFIG_SOC_SERIES_SAMV71 is not set
    # CONFIG_SOC_SERIES_VALKYRIE is not set
    # CONFIG_SOC_SERIES_VIPER is not set
    # CONFIG_SOC_SERIES_PSOC62 is not set
    # CONFIG_SOC_SERIES_PSOC63 is not set
    # CONFIG_SOC_SERIES_GD32A50X is not set
    # CONFIG_SOC_SERIES_GD32E10X is not set
    # CONFIG_SOC_SERIES_GD32E50X is not set
    # CONFIG_SOC_SERIES_GD32F3X0 is not set
    # CONFIG_SOC_SERIES_GD32F403 is not set
    # CONFIG_SOC_SERIES_GD32F4XX is not set
    # CONFIG_SOC_SERIES_GD32L23X is not set
    # CONFIG_SOC_SERIES_PSOC_60 is not set
    # CONFIG_SOC_SERIES_PSOC_61 is not set
    # CONFIG_SOC_SERIES_PSOC_62 is not set
    # CONFIG_SOC_SERIES_PSOC_63 is not set
    # CONFIG_SOC_SERIES_PSOC_64 is not set
    # CONFIG_SOC_SERIES_XMC_4XXX is not set
    # CONFIG_SOC_SERIES_CYCLONE5 is not set
    # CONFIG_SOC_SERIES_MEC1501X is not set
    # CONFIG_SOC_SERIES_MEC1701X is not set
    # CONFIG_SOC_SERIES_MEC172X is not set
    # CONFIG_SOC_SERIES_NRF51X is not set
    # CONFIG_SOC_SERIES_NRF52X is not set
    CONFIG_SOC_SERIES_NRF53X=y
    # CONFIG_SOC_SERIES_NRF91X is not set
    # CONFIG_SOC_SERIES_NPCX7 is not set
    # CONFIG_SOC_SERIES_NPCX9 is not set
    # CONFIG_SOC_SERIES_M48X is not set
    # CONFIG_SOC_SERIES_IMX_6X_M4 is not set
    # CONFIG_SOC_SERIES_IMX7_M4 is not set
    # CONFIG_SOC_SERIES_IMX8ML_M7 is not set
    # CONFIG_SOC_SERIES_IMX8MM_M4 is not set
    # CONFIG_SOC_SERIES_IMX8MQ_M4 is not set
    # CONFIG_SOC_SERIES_IMX_RT5XX is not set
    # CONFIG_SOC_SERIES_IMX_RT6XX is not set
    # CONFIG_SOC_SERIES_IMX_RT is not set
    # CONFIG_SOC_SERIES_KINETIS_K2X is not set
    # CONFIG_SOC_SERIES_KINETIS_K6X is not set
    # CONFIG_SOC_SERIES_KINETIS_K8X is not set
    # CONFIG_SOC_SERIES_KINETIS_KE1XF is not set
    # CONFIG_SOC_SERIES_KINETIS_KL2X is not set
    # CONFIG_SOC_SERIES_KINETIS_KV5X is not set
    # CONFIG_SOC_SERIES_KINETIS_KWX is not set
    # CONFIG_SOC_SERIES_LPC11U6X is not set
    # CONFIG_SOC_SERIES_LPC51U68 is not set
    # CONFIG_SOC_SERIES_LPC54XXX is not set
    # CONFIG_SOC_SERIES_LPC55XXX is not set
    # CONFIG_SOC_SERIES_S32ZE_R52 is not set
    # CONFIG_SOC_EOS_S3 is not set
    # CONFIG_SOC_SERIES_RCAR_GEN3 is not set
    # CONFIG_SOC_SERIES_DA1469X is not set
    # CONFIG_SOC_SERIES_RP2XXX is not set
    # CONFIG_SOC_SERIES_EFM32GG11B is not set
    # CONFIG_SOC_SERIES_EFM32HG is not set
    # CONFIG_SOC_SERIES_EFM32JG12B is not set
    # CONFIG_SOC_SERIES_EFM32PG12B is not set
    # CONFIG_SOC_SERIES_EFM32PG1B is not set
    # CONFIG_SOC_SERIES_EFM32WG is not set
    # CONFIG_SOC_SERIES_EFR32BG13P is not set
    # CONFIG_SOC_SERIES_EFR32BG22 is not set
    # CONFIG_SOC_SERIES_EFR32FG13P is not set
    # CONFIG_SOC_SERIES_EFR32FG1P is not set
    # CONFIG_SOC_SERIES_EFR32MG12P is not set
    # CONFIG_SOC_SERIES_EFR32MG21 is not set
    # CONFIG_SOC_SERIES_EFR32MG24 is not set
    # CONFIG_SOC_SERIES_STM32C0X is not set
    # CONFIG_SOC_SERIES_STM32F0X is not set
    # CONFIG_SOC_SERIES_STM32F1X is not set
    # CONFIG_SOC_SERIES_STM32F2X is not set
    # CONFIG_SOC_SERIES_STM32F3X is not set
    # CONFIG_SOC_SERIES_STM32F4X is not set
    # CONFIG_SOC_SERIES_STM32F7X is not set
    # CONFIG_SOC_SERIES_STM32G0X is not set
    # CONFIG_SOC_SERIES_STM32G4X is not set
    # CONFIG_SOC_SERIES_STM32H5X is not set
    # CONFIG_SOC_SERIES_STM32H7X is not set
    # CONFIG_SOC_SERIES_STM32L0X is not set
    # CONFIG_SOC_SERIES_STM32L1X is not set
    # CONFIG_SOC_SERIES_STM32L4X is not set
    # CONFIG_SOC_SERIES_STM32L5X is not set
    # CONFIG_SOC_SERIES_STM32MP1X is not set
    # CONFIG_SOC_SERIES_STM32U5X is not set
    # CONFIG_SOC_SERIES_STM32WBX is not set
    # CONFIG_SOC_SERIES_STM32WLX is not set
    # CONFIG_SOC_TI_LM3S6965 is not set
    # CONFIG_SOC_SERIES_CC13X2_CC26X2 is not set
    # CONFIG_SOC_SERIES_CC13X2X7_CC26X2X7 is not set
    # CONFIG_SOC_SERIES_CC32XX is not set
    # CONFIG_SOC_SERIES_MSP432P4XX is not set
    # CONFIG_SOC_SERIES_XILINX_XC7ZXXX is not set
    # CONFIG_SOC_SERIES_XILINX_XC7ZXXXS is not set
    # CONFIG_SOC_XILINX_ZYNQMP_RPU is not set
    
    #
    # Hardware Configuration
    #
    CONFIG_CPU_HAS_ARM_MPU=y
    CONFIG_CPU_HAS_NRF_IDAU=y
    CONFIG_NRF_SPU_RAM_REGION_SIZE=0x2000
    CONFIG_HAS_SWO=y
    CONFIG_SOC_FAMILY="nordic_nrf"
    CONFIG_SOC_FAMILY_NRF=y
    CONFIG_HAS_HW_NRF_CC312=y
    CONFIG_HAS_HW_NRF_CLOCK=y
    CONFIG_HAS_HW_NRF_CTRLAP=y
    CONFIG_HAS_HW_NRF_DCNF=y
    CONFIG_HAS_HW_NRF_DPPIC=y
    CONFIG_HAS_HW_NRF_EGU0=y
    CONFIG_HAS_HW_NRF_EGU1=y
    CONFIG_HAS_HW_NRF_EGU2=y
    CONFIG_HAS_HW_NRF_EGU3=y
    CONFIG_HAS_HW_NRF_EGU4=y
    CONFIG_HAS_HW_NRF_EGU5=y
    CONFIG_HAS_HW_NRF_GPIO0=y
    CONFIG_HAS_HW_NRF_GPIO1=y
    CONFIG_HAS_HW_NRF_GPIOTE=y
    CONFIG_HAS_HW_NRF_IPC=y
    CONFIG_HAS_HW_NRF_KMU=y
    CONFIG_HAS_HW_NRF_MUTEX=y
    CONFIG_HAS_HW_NRF_NFCT=y
    CONFIG_HAS_HW_NRF_NVMC_PE=y
    CONFIG_HAS_HW_NRF_OSCILLATORS=y
    CONFIG_HAS_HW_NRF_POWER=y
    CONFIG_HAS_HW_NRF_PWM0=y
    CONFIG_HAS_HW_NRF_QSPI=y
    CONFIG_HAS_HW_NRF_REGULATORS=y
    CONFIG_HAS_HW_NRF_RESET=y
    CONFIG_HAS_HW_NRF_SAADC=y
    CONFIG_HAS_HW_NRF_SPIM2=y
    CONFIG_HAS_HW_NRF_SPIM3=y
    CONFIG_HAS_HW_NRF_SPIM4=y
    CONFIG_HAS_HW_NRF_SPU=y
    CONFIG_HAS_HW_NRF_TWIM1=y
    CONFIG_HAS_HW_NRF_UARTE0=y
    CONFIG_HAS_HW_NRF_USBD=y
    CONFIG_HAS_HW_NRF_USBREG=y
    CONFIG_HAS_HW_NRF_VMC=y
    CONFIG_HAS_HW_NRF_WDT0=y
    CONFIG_SOC_NRF5340_CPUAPP=y
    CONFIG_SOC_NRF5340_CPUAPP_QKAA=y
    # CONFIG_SOC_NRF5340_CPUNET_QKAA is not set
    CONFIG_SOC_NRF53_ANOMALY_160_WORKAROUND_NEEDED=y
    CONFIG_SOC_NRF53_ANOMALY_160_WORKAROUND=y
    CONFIG_SOC_DCDC_NRF53X_APP=y
    CONFIG_SOC_DCDC_NRF53X_NET=y
    CONFIG_SOC_NRF_GPIO_FORWARDER_FOR_NRF5340=y
    CONFIG_SOC_ENABLE_LFXO=y
    # CONFIG_SOC_LFXO_CAP_EXTERNAL is not set
    # CONFIG_SOC_LFXO_CAP_INT_6PF is not set
    CONFIG_SOC_LFXO_CAP_INT_7PF=y
    # CONFIG_SOC_LFXO_CAP_INT_9PF is not set
    # CONFIG_SOC_HFXO_CAP_DEFAULT is not set
    # CONFIG_SOC_HFXO_CAP_EXTERNAL is not set
    CONFIG_SOC_HFXO_CAP_INTERNAL=y
    CONFIG_SOC_HFXO_CAP_INT_VALUE_X2=27
    CONFIG_NRF_ENABLE_CACHE=y
    CONFIG_NRF53_SYNC_RTC=y
    # CONFIG_SYNC_RTC_LOG_LEVEL_OFF is not set
    # CONFIG_SYNC_RTC_LOG_LEVEL_ERR is not set
    # CONFIG_SYNC_RTC_LOG_LEVEL_WRN is not set
    # CONFIG_SYNC_RTC_LOG_LEVEL_INF is not set
    # CONFIG_SYNC_RTC_LOG_LEVEL_DBG is not set
    CONFIG_SYNC_RTC_LOG_LEVEL_DEFAULT=y
    CONFIG_SYNC_RTC_LOG_LEVEL=3
    CONFIG_NRF53_SYNC_RTC_INIT_PRIORITY=90
    CONFIG_NRF_RTC_TIMER_USER_CHAN_COUNT=1
    CONFIG_NRF53_SYNC_RTC_LOG_TIMESTAMP=y
    CONFIG_NRF53_SYNC_RTC_IPM_OUT=7
    CONFIG_NRF53_SYNC_RTC_IPM_IN=8
    CONFIG_IPM_MSG_CH_8_ENABLE=y
    CONFIG_IPM_MSG_CH_8_RX=y
    CONFIG_NRF_SOC_SECURE_SUPPORTED=y
    # CONFIG_NFCT_PINS_AS_GPIOS is not set
    CONFIG_NRF_APPROTECT_USE_UICR=y
    # CONFIG_NRF_APPROTECT_LOCK is not set
    # CONFIG_NRF_APPROTECT_USER_HANDLING is not set
    CONFIG_NRF_SECURE_APPROTECT_USE_UICR=y
    # CONFIG_NRF_SECURE_APPROTECT_LOCK is not set
    # CONFIG_NRF_SECURE_APPROTECT_USER_HANDLING is not set
    # CONFIG_NRF_TRACE_PORT is not set
    # CONFIG_BUILD_OUTPUT_INFO_HEADER is not set
    # CONFIG_SOC_LOG_LEVEL_OFF is not set
    # CONFIG_SOC_LOG_LEVEL_ERR is not set
    # CONFIG_SOC_LOG_LEVEL_WRN is not set
    # CONFIG_SOC_LOG_LEVEL_INF is not set
    # CONFIG_SOC_LOG_LEVEL_DBG is not set
    CONFIG_SOC_LOG_LEVEL_DEFAULT=y
    CONFIG_SOC_LOG_LEVEL=3
    # end of Hardware Configuration
    
    CONFIG_SOC_COMPATIBLE_NRF=y
    
    #
    # ARM Options
    #
    CONFIG_ARCH="arm"
    CONFIG_CPU_CORTEX=y
    # CONFIG_CODE_DATA_RELOCATION_SRAM is not set
    CONFIG_ARM_ON_ENTER_CPU_IDLE_HOOK=y
    CONFIG_CPU_CORTEX_M=y
    # CONFIG_ARM_ZIMAGE_HEADER is not set
    CONFIG_ISA_THUMB2=y
    CONFIG_ASSEMBLER_ISA_THUMB2=y
    CONFIG_COMPILER_ISA_THUMB2=y
    CONFIG_STACK_ALIGN_DOUBLE_WORD=y
    # CONFIG_RUNTIME_NMI is not set
    CONFIG_FAULT_DUMP=2
    CONFIG_BUILTIN_STACK_GUARD=y
    CONFIG_ARM_STACK_PROTECTION=y
    CONFIG_CPU_CORTEX_M33=y
    CONFIG_CPU_CORTEX_M_HAS_SYSTICK=y
    CONFIG_CPU_CORTEX_M_HAS_DWT=y
    CONFIG_CPU_CORTEX_M_HAS_BASEPRI=y
    CONFIG_CPU_CORTEX_M_HAS_VTOR=y
    CONFIG_CPU_CORTEX_M_HAS_SPLIM=y
    CONFIG_CPU_CORTEX_M_HAS_PROGRAMMABLE_FAULT_PRIOS=y
    CONFIG_CPU_CORTEX_M_HAS_CMSE=y
    CONFIG_ARMV7_M_ARMV8_M_MAINLINE=y
    CONFIG_ARMV8_M_MAINLINE=y
    CONFIG_ARMV8_M_SE=y
    CONFIG_ARMV7_M_ARMV8_M_FP=y
    CONFIG_ARMV8_M_DSP=y
    
    #
    # ARM Cortex-M0/M0+/M1/M3/M4/M7/M23/M33 options
    #
    CONFIG_GEN_ISR_TABLES=y
    # CONFIG_ZERO_LATENCY_IRQS is not set
    # CONFIG_SW_VECTOR_RELAY is not set
    # CONFIG_CORTEX_M_DWT is not set
    # CONFIG_CORTEX_M_DEBUG_MONITOR_HOOK is not set
    # CONFIG_TRAP_UNALIGNED_ACCESS is not set
    # end of ARM Cortex-M0/M0+/M1/M3/M4/M7/M23/M33 options
    
    CONFIG_NULL_POINTER_EXCEPTION_DETECTION_NONE=y
    # CONFIG_NULL_POINTER_EXCEPTION_DETECTION_DWT is not set
    # CONFIG_NULL_POINTER_EXCEPTION_DETECTION_MPU is not set
    CONFIG_ARM_TRUSTZONE_M=y
    CONFIG_GEN_IRQ_VECTOR_TABLE=y
    CONFIG_ARM_MPU=y
    CONFIG_ARM_MPU_REGION_MIN_ALIGN_AND_SIZE=32
    # CONFIG_MPU_STACK_GUARD is not set
    # CONFIG_MPU_ALLOW_FLASH_WRITE is not set
    # CONFIG_MPU_DISABLE_BACKGROUND_MAP is not set
    # CONFIG_CUSTOM_SECTION_ALIGN is not set
    CONFIG_CUSTOM_SECTION_MIN_ALIGN_SIZE=32
    # end of ARM Options
    
    CONFIG_ARM=y
    CONFIG_ARCH_IS_SET=y
    
    #
    # General Architecture Options
    #
    # CONFIG_SEMIHOST is not set
    # CONFIG_ARCH_LOG_LEVEL_OFF is not set
    # CONFIG_ARCH_LOG_LEVEL_ERR is not set
    # CONFIG_ARCH_LOG_LEVEL_WRN is not set
    # CONFIG_ARCH_LOG_LEVEL_INF is not set
    # CONFIG_ARCH_LOG_LEVEL_DBG is not set
    CONFIG_ARCH_LOG_LEVEL_DEFAULT=y
    CONFIG_ARCH_LOG_LEVEL=3
    CONFIG_LITTLE_ENDIAN=y
    # CONFIG_TRUSTED_EXECUTION_SECURE is not set
    # CONFIG_TRUSTED_EXECUTION_NONSECURE is not set
    CONFIG_HW_STACK_PROTECTION=y
    # CONFIG_USERSPACE is not set
    CONFIG_KOBJECT_TEXT_AREA=256
    CONFIG_KOBJECT_DATA_AREA_RESERVE_EXTRA_PERCENT=100
    CONFIG_KOBJECT_RODATA_AREA_EXTRA_BYTES=16
    CONFIG_GEN_PRIV_STACKS=y
    # CONFIG_STACK_GROWS_UP is not set
    
    #
    # Interrupt Configuration
    #
    # CONFIG_DYNAMIC_INTERRUPTS is not set
    CONFIG_ARCH_IRQ_VECTOR_TABLE_ALIGN=4
    CONFIG_IRQ_VECTOR_TABLE_JUMP_BY_ADDRESS=y
    # CONFIG_IRQ_VECTOR_TABLE_JUMP_BY_CODE is not set
    CONFIG_GEN_SW_ISR_TABLE=y
    CONFIG_ARCH_SW_ISR_TABLE_ALIGN=4
    CONFIG_GEN_IRQ_START_VECTOR=0
    # CONFIG_EXTRA_EXCEPTION_INFO is not set
    # CONFIG_SIMPLIFIED_EXCEPTION_CODES is not set
    # end of Interrupt Configuration
    # end of General Architecture Options
    
    CONFIG_ARCH_HAS_SINGLE_THREAD_SUPPORT=y
    CONFIG_ARCH_HAS_TIMING_FUNCTIONS=y
    CONFIG_ARCH_HAS_TRUSTED_EXECUTION=y
    CONFIG_ARCH_HAS_STACK_PROTECTION=y
    CONFIG_ARCH_HAS_USERSPACE=y
    CONFIG_ARCH_HAS_EXECUTABLE_PAGE_BIT=y
    CONFIG_ARCH_HAS_RAMFUNC_SUPPORT=y
    CONFIG_ARCH_HAS_NESTED_EXCEPTION_DETECTION=y
    CONFIG_ARCH_SUPPORTS_COREDUMP=y
    CONFIG_ARCH_SUPPORTS_ARCH_HW_INIT=y
    CONFIG_ARCH_HAS_EXTRA_EXCEPTION_INFO=y
    CONFIG_ARCH_HAS_THREAD_LOCAL_STORAGE=y
    CONFIG_ARCH_HAS_SUSPEND_TO_RAM=y
    CONFIG_ARCH_HAS_THREAD_ABORT=y
    CONFIG_ARCH_HAS_CODE_DATA_RELOCATION=y
    CONFIG_CPU_HAS_TEE=y
    CONFIG_CPU_HAS_FPU=y
    CONFIG_CPU_HAS_MPU=y
    CONFIG_MPU=y
    # CONFIG_MPU_LOG_LEVEL_OFF is not set
    # CONFIG_MPU_LOG_LEVEL_ERR is not set
    # CONFIG_MPU_LOG_LEVEL_WRN is not set
    # CONFIG_MPU_LOG_LEVEL_INF is not set
    # CONFIG_MPU_LOG_LEVEL_DBG is not set
    CONFIG_MPU_LOG_LEVEL_DEFAULT=y
    CONFIG_MPU_LOG_LEVEL=3
    CONFIG_MPU_REQUIRES_NON_OVERLAPPING_REGIONS=y
    CONFIG_MPU_GAP_FILLING=y
    CONFIG_SRAM_REGION_PERMISSIONS=y
    
    #
    # Floating Point Options
    #
    # end of Floating Point Options
    
    #
    # Cache Options
    #
    # end of Cache Options
    
    CONFIG_TOOLCHAIN_HAS_BUILTIN_FFS=y
    
    #
    # General Kernel Options
    #
    # CONFIG_KERNEL_LOG_LEVEL_OFF is not set
    # CONFIG_KERNEL_LOG_LEVEL_ERR is not set
    # CONFIG_KERNEL_LOG_LEVEL_WRN is not set
    # CONFIG_KERNEL_LOG_LEVEL_INF is not set
    # CONFIG_KERNEL_LOG_LEVEL_DBG is not set
    CONFIG_KERNEL_LOG_LEVEL_DEFAULT=y
    CONFIG_KERNEL_LOG_LEVEL=3
    CONFIG_MULTITHREADING=y
    CONFIG_NUM_COOP_PRIORITIES=16
    CONFIG_NUM_PREEMPT_PRIORITIES=15
    CONFIG_MAIN_THREAD_PRIORITY=0
    CONFIG_COOP_ENABLED=y
    CONFIG_PREEMPT_ENABLED=y
    CONFIG_PRIORITY_CEILING=-127
    # CONFIG_SCHED_DEADLINE is not set
    # CONFIG_SCHED_CPU_MASK is not set
    CONFIG_IDLE_STACK_SIZE=512
    CONFIG_ISR_STACK_SIZE=2048
    CONFIG_THREAD_STACK_INFO=y
    # CONFIG_THREAD_CUSTOM_DATA is not set
    CONFIG_ERRNO=y
    CONFIG_SCHED_DUMB=y
    # CONFIG_SCHED_SCALABLE is not set
    # CONFIG_SCHED_MULTIQ is not set
    # CONFIG_WAITQ_SCALABLE is not set
    CONFIG_WAITQ_DUMB=y
    
    #
    # Kernel Debugging and Metrics
    #
    CONFIG_BOOT_BANNER=y
    CONFIG_BOOT_DELAY=0
    CONFIG_THREAD_MONITOR=y
    CONFIG_THREAD_NAME=y
    CONFIG_THREAD_MAX_NAME_LEN=32
    CONFIG_INSTRUMENT_THREAD_SWITCHING=y
    CONFIG_THREAD_RUNTIME_STATS=y
    # CONFIG_THREAD_RUNTIME_STATS_USE_TIMING_FUNCTIONS is not set
    CONFIG_SCHED_THREAD_USAGE=y
    # CONFIG_SCHED_THREAD_USAGE_ANALYSIS is not set
    CONFIG_SCHED_THREAD_USAGE_ALL=y
    CONFIG_SCHED_THREAD_USAGE_AUTO_ENABLE=y
    # end of Kernel Debugging and Metrics
    
    #
    # Work Queue Options
    #
    CONFIG_SYSTEM_WORKQUEUE_PRIORITY=-1
    # CONFIG_SYSTEM_WORKQUEUE_NO_YIELD is not set
    # end of Work Queue Options
    
    #
    # Atomic Operations
    #
    CONFIG_ATOMIC_OPERATIONS_BUILTIN=y
    # end of Atomic Operations
    
    #
    # Timer API Options
    #
    CONFIG_TIMESLICING=y
    CONFIG_TIMESLICE_SIZE=0
    CONFIG_TIMESLICE_PRIORITY=0
    # CONFIG_TIMESLICE_PER_THREAD is not set
    CONFIG_POLL=y
    # end of Timer API Options
    
    #
    # Other Kernel Object Options
    #
    # CONFIG_MEM_SLAB_TRACE_MAX_UTILIZATION is not set
    CONFIG_NUM_MBOX_ASYNC_MSGS=10
    # CONFIG_EVENTS is not set
    # CONFIG_PIPES is not set
    CONFIG_KERNEL_MEM_POOL=y
    # end of Other Kernel Object Options
    
    CONFIG_ARCH_HAS_CUSTOM_SWAP_TO_MAIN=y
    CONFIG_SWAP_NONATOMIC=y
    CONFIG_SYS_CLOCK_EXISTS=y
    CONFIG_TIMEOUT_64BIT=y
    CONFIG_SYS_CLOCK_MAX_TIMEOUT_DAYS=365
    CONFIG_XIP=y
    
    #
    # Initialization Priorities
    #
    CONFIG_KERNEL_INIT_PRIORITY_OBJECTS=30
    CONFIG_KERNEL_INIT_PRIORITY_DEFAULT=40
    CONFIG_KERNEL_INIT_PRIORITY_DEVICE=50
    CONFIG_APPLICATION_INIT_PRIORITY=90
    # end of Initialization Priorities
    
    #
    # Security Options
    #
    # end of Security Options
    
    #
    # SMP Options
    #
    CONFIG_MP_NUM_CPUS=1
    # end of SMP Options
    
    CONFIG_TICKLESS_KERNEL=y
    CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE=y
    # CONFIG_THREAD_LOCAL_STORAGE is not set
    # end of General Kernel Options
    
    #
    # Device Options
    #
    # end of Device Options
    
    #
    # Virtual Memory Support
    #
    # end of Virtual Memory Support
    
    #
    # Device Drivers
    #
    # CONFIG_ADC is not set
    # CONFIG_AUDIO is not set
    # CONFIG_BBRAM is not set
    
    #
    # Bluetooth HCI Driver Options
    #
    # CONFIG_BT_H4 is not set
    # CONFIG_BT_H5 is not set
    CONFIG_BT_RPMSG=y
    # CONFIG_BT_STM32_IPM is not set
    # CONFIG_BT_ESP32 is not set
    # CONFIG_BT_B91 is not set
    # CONFIG_BT_NO_DRIVER is not set
    CONFIG_BT_DRV_TX_STACK_SIZE=256
    CONFIG_BT_DRV_RX_STACK_SIZE=2048
    # CONFIG_CACHE is not set
    # CONFIG_CAN is not set
    # CONFIG_CLOCK_CONTROL_LOG_LEVEL_OFF is not set
    # CONFIG_CLOCK_CONTROL_LOG_LEVEL_ERR is not set
    # CONFIG_CLOCK_CONTROL_LOG_LEVEL_WRN is not set
    # CONFIG_CLOCK_CONTROL_LOG_LEVEL_INF is not set
    # CONFIG_CLOCK_CONTROL_LOG_LEVEL_DBG is not set
    CONFIG_CLOCK_CONTROL_LOG_LEVEL_DEFAULT=y
    CONFIG_CLOCK_CONTROL_LOG_LEVEL=3
    CONFIG_CLOCK_CONTROL_NRF=y
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_RC is not set
    CONFIG_CLOCK_CONTROL_NRF_K32SRC_XTAL=y
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_SYNTH is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_500PPM is not set
    CONFIG_CLOCK_CONTROL_NRF_K32SRC_250PPM=y
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_150PPM is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_100PPM is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_75PPM is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_50PPM is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_30PPM is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_20PPM is not set
    CONFIG_CLOCK_CONTROL_NRF_ACCURACY=250
    CONFIG_CONSOLE=y
    CONFIG_CONSOLE_INPUT_MAX_LINE_LEN=128
    CONFIG_CONSOLE_HAS_DRIVER=y
    # CONFIG_CONSOLE_HANDLER is not set
    CONFIG_CONSOLE_INIT_PRIORITY=60
    CONFIG_UART_CONSOLE=y
    # CONFIG_UART_CONSOLE_DEBUG_SERVER_HOOKS is not set
    # CONFIG_UART_CONSOLE_MCUMGR is not set
    CONFIG_UART_CONSOLE_INPUT_EXPIRED=y
    CONFIG_UART_CONSOLE_INPUT_EXPIRED_TIMEOUT=15000
    # CONFIG_RAM_CONSOLE is not set
    # CONFIG_IPM_CONSOLE_SENDER is not set
    # CONFIG_IPM_CONSOLE_RECEIVER is not set
    # CONFIG_UART_MCUMGR is not set
    # CONFIG_UART_CONSOLE_LOG_LEVEL_OFF is not set
    # CONFIG_UART_CONSOLE_LOG_LEVEL_ERR is not set
    # CONFIG_UART_CONSOLE_LOG_LEVEL_WRN is not set
    # CONFIG_UART_CONSOLE_LOG_LEVEL_INF is not set
    # CONFIG_UART_CONSOLE_LOG_LEVEL_DBG is not set
    CONFIG_UART_CONSOLE_LOG_LEVEL_DEFAULT=y
    CONFIG_UART_CONSOLE_LOG_LEVEL=3
    # CONFIG_GSM_MUX is not set
    # CONFIG_EFI_CONSOLE is not set
    # CONFIG_COREDUMP_DEVICE is not set
    # CONFIG_COUNTER is not set
    # CONFIG_CRYPTO is not set
    # CONFIG_DAC is not set
    # CONFIG_DAI is not set
    # CONFIG_DISK_DRIVERS is not set
    # CONFIG_DMA is not set
    # CONFIG_EDAC is not set
    # CONFIG_EEPROM is not set
    # CONFIG_ESPI is not set
    # CONFIG_FLASH is not set
    # CONFIG_FPGA is not set
    # CONFIG_FUEL_GAUGE is not set
    # CONFIG_GPIO_LOG_LEVEL_OFF is not set
    # CONFIG_GPIO_LOG_LEVEL_ERR is not set
    # CONFIG_GPIO_LOG_LEVEL_WRN is not set
    # CONFIG_GPIO_LOG_LEVEL_INF is not set
    # CONFIG_GPIO_LOG_LEVEL_DBG is not set
    CONFIG_GPIO_LOG_LEVEL_DEFAULT=y
    CONFIG_GPIO_LOG_LEVEL=3
    # CONFIG_GPIO_GET_DIRECTION is not set
    # CONFIG_GPIO_GET_CONFIG is not set
    # CONFIG_GPIO_HOGS is not set
    # CONFIG_GPIO_ENABLE_DISABLE_INTERRUPT is not set
    CONFIG_GPIO_NRFX=y
    # CONFIG_FXL6408_LOG_LEVEL_OFF is not set
    # CONFIG_FXL6408_LOG_LEVEL_ERR is not set
    # CONFIG_FXL6408_LOG_LEVEL_WRN is not set
    # CONFIG_FXL6408_LOG_LEVEL_INF is not set
    # CONFIG_FXL6408_LOG_LEVEL_DBG is not set
    CONFIG_FXL6408_LOG_LEVEL_DEFAULT=y
    CONFIG_FXL6408_LOG_LEVEL=3
    CONFIG_HWINFO=y
    # CONFIG_HWINFO_LOG_LEVEL_OFF is not set
    # CONFIG_HWINFO_LOG_LEVEL_ERR is not set
    # CONFIG_HWINFO_LOG_LEVEL_WRN is not set
    # CONFIG_HWINFO_LOG_LEVEL_INF is not set
    # CONFIG_HWINFO_LOG_LEVEL_DBG is not set
    CONFIG_HWINFO_LOG_LEVEL_DEFAULT=y
    CONFIG_HWINFO_LOG_LEVEL=3
    CONFIG_HWINFO_NRF=y
    # CONFIG_I2C_DUMP_MESSAGES is not set
    # CONFIG_I2C_CALLBACK is not set
    # CONFIG_I2C_TARGET is not set
    CONFIG_I2C_NRFX=y
    CONFIG_I2C_NRFX_TRANSFER_TIMEOUT=500
    CONFIG_I2C_1_NRF_TWIM=y
    CONFIG_I2C_INIT_PRIORITY=50
    # CONFIG_I2C_LOG_LEVEL_OFF is not set
    # CONFIG_I2C_LOG_LEVEL_ERR is not set
    # CONFIG_I2C_LOG_LEVEL_WRN is not set
    # CONFIG_I2C_LOG_LEVEL_INF is not set
    # CONFIG_I2C_LOG_LEVEL_DBG is not set
    CONFIG_I2C_LOG_LEVEL_DEFAULT=y
    CONFIG_I2C_LOG_LEVEL=3
    # CONFIG_I2S is not set
    # CONFIG_I3C is not set
    # CONFIG_SMBUS is not set
    
    #
    # Interrupt controller drivers
    #
    CONFIG_INTC_INIT_PRIORITY=40
    # CONFIG_INTC_LOG_LEVEL_OFF is not set
    # CONFIG_INTC_LOG_LEVEL_ERR is not set
    # CONFIG_INTC_LOG_LEVEL_WRN is not set
    # CONFIG_INTC_LOG_LEVEL_INF is not set
    # CONFIG_INTC_LOG_LEVEL_DBG is not set
    CONFIG_INTC_LOG_LEVEL_DEFAULT=y
    CONFIG_INTC_LOG_LEVEL=3
    # CONFIG_MULTI_LEVEL_INTERRUPTS is not set
    # CONFIG_INTC_ESP32 is not set
    # end of Interrupt controller drivers
    
    # CONFIG_IPM is not set
    # CONFIG_LED is not set
    # CONFIG_LED_STRIP is not set
    # CONFIG_LORA is not set
    CONFIG_MBOX=y
    CONFIG_MBOX_INIT_PRIORITY=50
    # CONFIG_MBOX_LOG_LEVEL_OFF is not set
    # CONFIG_MBOX_LOG_LEVEL_ERR is not set
    # CONFIG_MBOX_LOG_LEVEL_WRN is not set
    # CONFIG_MBOX_LOG_LEVEL_INF is not set
    # CONFIG_MBOX_LOG_LEVEL_DBG is not set
    CONFIG_MBOX_LOG_LEVEL_DEFAULT=y
    CONFIG_MBOX_LOG_LEVEL=3
    # CONFIG_MDIO is not set
    # CONFIG_MIPI_DSI is not set
    
    #
    # Miscellaneous Drivers
    #
    # CONFIG_GROVE_LCD_RGB is not set
    # end of Miscellaneous Drivers
    
    # CONFIG_MM_DRV is not set
    # CONFIG_NEURAL_NET_ACCEL is not set
    # CONFIG_PCIE is not set
    # CONFIG_PCIE_ENDPOINT is not set
    # CONFIG_PECI is not set
    # CONFIG_PINCTRL_LOG_LEVEL_OFF is not set
    # CONFIG_PINCTRL_LOG_LEVEL_ERR is not set
    # CONFIG_PINCTRL_LOG_LEVEL_WRN is not set
    # CONFIG_PINCTRL_LOG_LEVEL_INF is not set
    # CONFIG_PINCTRL_LOG_LEVEL_DBG is not set
    CONFIG_PINCTRL_LOG_LEVEL_DEFAULT=y
    CONFIG_PINCTRL_LOG_LEVEL=3
    CONFIG_PINCTRL_STORE_REG=y
    # CONFIG_PINCTRL_DYNAMIC is not set
    CONFIG_PINCTRL_NRF=y
    # CONFIG_PM_CPU_OPS is not set
    # CONFIG_POWER_DOMAIN is not set
    # CONFIG_PS2 is not set
    # CONFIG_PTP_CLOCK is not set
    # CONFIG_PWM is not set
    # CONFIG_RETAINED_MEM is not set
    # CONFIG_RTC is not set
    # CONFIG_SDHC is not set
    
    #
    # Capabilities
    #
    CONFIG_SERIAL_HAS_DRIVER=y
    CONFIG_SERIAL_SUPPORT_ASYNC=y
    CONFIG_SERIAL_SUPPORT_INTERRUPT=y
    # CONFIG_UART_LOG_LEVEL_OFF is not set
    # CONFIG_UART_LOG_LEVEL_ERR is not set
    # CONFIG_UART_LOG_LEVEL_WRN is not set
    # CONFIG_UART_LOG_LEVEL_INF is not set
    # CONFIG_UART_LOG_LEVEL_DBG is not set
    CONFIG_UART_LOG_LEVEL_DEFAULT=y
    CONFIG_UART_LOG_LEVEL=3
    CONFIG_UART_USE_RUNTIME_CONFIGURE=y
    # CONFIG_UART_ASYNC_API is not set
    # CONFIG_UART_LINE_CTRL is not set
    # CONFIG_UART_DRV_CMD is not set
    # CONFIG_UART_WIDE_DATA is not set
    # CONFIG_UART_PIPE is not set
    
    #
    # Serial Drivers
    #
    CONFIG_UART_NRFX=y
    CONFIG_UART_0_NRF_UARTE=y
    CONFIG_UART_0_ENHANCED_POLL_OUT=y
    CONFIG_UART_0_INTERRUPT_DRIVEN=y
    # CONFIG_UART_0_NRF_PARITY_BIT is not set
    CONFIG_UART_0_NRF_TX_BUFFER_SIZE=32
    CONFIG_UART_ENHANCED_POLL_OUT=y
    CONFIG_NRF_UARTE_PERIPHERAL=y
    # CONFIG_SYSCON is not set
    
    #
    # Timer drivers
    #
    # CONFIG_TIMER_READS_ITS_FREQUENCY_AT_RUNTIME is not set
    # CONFIG_SYSTEM_CLOCK_SLOPPY_IDLE is not set
    CONFIG_SYSTEM_CLOCK_INIT_PRIORITY=0
    CONFIG_TICKLESS_CAPABLE=y
    CONFIG_SYSTEM_TIMER_HAS_DISABLE_SUPPORT=y
    # CONFIG_NRF_RTC_TIMER_TRIGGER_OVERFLOW is not set
    # CONFIG_SYSTEM_CLOCK_NO_WAIT is not set
    # CONFIG_SYSTEM_CLOCK_WAIT_FOR_AVAILABILITY is not set
    CONFIG_SYSTEM_CLOCK_WAIT_FOR_STABILITY=y
    # end of Timer drivers
    
    # CONFIG_USB_BC12 is not set
    # CONFIG_UDC_DRIVER is not set
    # CONFIG_UVB is not set
    CONFIG_USB_DEVICE_DRIVER=y
    # CONFIG_USB_DC_HAS_HS_SUPPORT is not set
    CONFIG_USB_DEVICE_REMOTE_WAKEUP=y
    CONFIG_USB_NRFX=y
    CONFIG_USB_NRFX_EVT_QUEUE_SIZE=32
    CONFIG_USB_NRFX_WORK_QUEUE_STACK_SIZE=1024
    CONFIG_USB_NRFX_ATTACHED_EVENT_DELAY=0
    # CONFIG_USB_NATIVE_POSIX is not set
    # CONFIG_USB_DRIVER_LOG_LEVEL_OFF is not set
    # CONFIG_USB_DRIVER_LOG_LEVEL_ERR is not set
    # CONFIG_USB_DRIVER_LOG_LEVEL_WRN is not set
    CONFIG_USB_DRIVER_LOG_LEVEL_INF=y
    # CONFIG_USB_DRIVER_LOG_LEVEL_DBG is not set
    # CONFIG_USB_DRIVER_LOG_LEVEL_DEFAULT is not set
    CONFIG_USB_DRIVER_LOG_LEVEL=3
    # CONFIG_USBC_TCPC_DRIVER is not set
    # CONFIG_USBC_LOG_LEVEL_OFF is not set
    # CONFIG_USBC_LOG_LEVEL_ERR is not set
    # CONFIG_USBC_LOG_LEVEL_WRN is not set
    # CONFIG_USBC_LOG_LEVEL_INF is not set
    # CONFIG_USBC_LOG_LEVEL_DBG is not set
    CONFIG_USBC_LOG_LEVEL_DEFAULT=y
    CONFIG_USBC_LOG_LEVEL=3
    # CONFIG_USBC_VBUS_DRIVER is not set
    # CONFIG_VIDEO is not set
    # CONFIG_VIRTUALIZATION is not set
    # CONFIG_W1 is not set
    # end of Device Drivers
    
    #
    # C Library
    #
    CONFIG_SUPPORT_MINIMAL_LIBC=y
    CONFIG_PICOLIBC_SUPPORTED=y
    CONFIG_MINIMAL_LIBC=y
    # CONFIG_PICOLIBC is not set
    # CONFIG_NEWLIB_LIBC is not set
    # CONFIG_EXTERNAL_LIBC is not set
    CONFIG_HAS_NEWLIB_LIBC_NANO=y
    CONFIG_MINIMAL_LIBC_NON_REENTRANT_FUNCTIONS=y
    CONFIG_MINIMAL_LIBC_MALLOC=y
    CONFIG_MINIMAL_LIBC_MALLOC_ARENA_SIZE=0
    CONFIG_MINIMAL_LIBC_CALLOC=y
    CONFIG_MINIMAL_LIBC_REALLOCARRAY=y
    # CONFIG_MINIMAL_LIBC_LL_PRINTF is not set
    CONFIG_MINIMAL_LIBC_OPTIMIZE_STRING_FOR_SIZE=y
    # CONFIG_MINIMAL_LIBC_RAND is not set
    CONFIG_MINIMAL_LIBC_TIME=y
    # CONFIG_MINIMAL_LIBC_STRING_ERROR_TABLE is not set
    CONFIG_STDOUT_CONSOLE=y
    CONFIG_NEED_LIBC_MEM_PARTITION=y
    # end of C Library
    
    #
    # C++ Language Support
    #
    # CONFIG_CPP is not set
    
    #
    # Deprecated
    #
    # CONFIG_CPLUSPLUS is not set
    # CONFIG_LIB_CPLUSPLUS is not set
    # end of Deprecated
    # end of C++ Language Support
    
    #
    # Additional libraries
    #
    
    #
    # Hash Function Support
    #
    # CONFIG_SYS_HASH_FUNC32 is not set
    # end of Hash Function Support
    
    #
    # Hashmap (Hash Table) Support
    #
    # CONFIG_SYS_HASH_MAP is not set
    # end of Hashmap (Hash Table) Support
    
    #
    # OS Support Library
    #
    # CONFIG_JSON_LIBRARY is not set
    CONFIG_RING_BUFFER=y
    CONFIG_NOTIFY=y
    # CONFIG_BASE64 is not set
    CONFIG_CRC=y
    # CONFIG_PRINTK_SYNC is not set
    CONFIG_MPSC_PBUF=y
    CONFIG_ONOFF=y
    # CONFIG_SPSC_PBUF is not set
    # CONFIG_SHARED_MULTI_HEAP is not set
    # CONFIG_WINSTREAM is not set
    # CONFIG_MPSC_CLEAR_ALLOCATED is not set
    CONFIG_REBOOT=y
    # CONFIG_UTF8 is not set
    CONFIG_CBPRINTF_COMPLETE=y
    # CONFIG_CBPRINTF_NANO is not set
    CONFIG_CBPRINTF_FULL_INTEGRAL=y
    # CONFIG_CBPRINTF_REDUCED_INTEGRAL is not set
    # CONFIG_CBPRINTF_FP_SUPPORT is not set
    # CONFIG_CBPRINTF_FP_A_SUPPORT is not set
    # CONFIG_CBPRINTF_FP_ALWAYS_A is not set
    CONFIG_CBPRINTF_N_SPECIFIER=y
    # CONFIG_CBPRINTF_LIBC_SUBSTS is not set
    # CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_OFF is not set
    # CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_ERR is not set
    # CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_WRN is not set
    # CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_INF is not set
    # CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_DBG is not set
    CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_DEFAULT=y
    CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL=3
    # CONFIG_CBPRINTF_PACKAGE_LONGDOUBLE is not set
    
    #
    # Heap and Memory Allocation
    #
    # CONFIG_SYS_HEAP_VALIDATE is not set
    CONFIG_SYS_HEAP_ALLOC_LOOPS=3
    # CONFIG_SYS_HEAP_RUNTIME_STATS is not set
    # CONFIG_SYS_HEAP_LISTENER is not set
    # CONFIG_SYS_HEAP_SMALL_ONLY is not set
    # CONFIG_SYS_HEAP_BIG_ONLY is not set
    CONFIG_SYS_HEAP_AUTO=y
    # CONFIG_SYS_MEM_BLOCKS is not set
    # end of Heap and Memory Allocation
    # end of OS Support Library
    
    # CONFIG_POSIX_API is not set
    # CONFIG_POSIX_CLOCK is not set
    CONFIG_MAX_TIMER_COUNT=5
    CONFIG_TIMER_CREATE_WAIT=100
    # CONFIG_POSIX_MQUEUE is not set
    # CONFIG_EVENTFD is not set
    # CONFIG_FNMATCH is not set
    # CONFIG_OPENAMP_RSC_TABLE is not set
    # CONFIG_SMF is not set
    # end of Additional libraries
    
    #
    # Subsystems and OS Services
    #
    CONFIG_BT=y
    CONFIG_BT_HCI=y
    # CONFIG_BT_CUSTOM is not set
    CONFIG_BT_HCI_RAW=y
    CONFIG_BT_HCI_RAW_H4=y
    CONFIG_BT_HCI_RAW_H4_ENABLE=y
    CONFIG_BT_HCI_RAW_RESERVE=1
    # CONFIG_BT_HCI_RAW_CMD_EXT is not set
    CONFIG_BT_CONN_TX=y
    # CONFIG_BT_SCA_UPDATE is not set
    # CONFIG_BT_ISO_PERIPHERAL is not set
    # CONFIG_BT_ISO_CENTRAL is not set
    # CONFIG_BT_ISO_BROADCASTER is not set
    # CONFIG_BT_ISO_SYNC_RECEIVER is not set
    
    #
    # Bluetooth buffer configuration
    #
    # end of Bluetooth buffer configuration
    
    #
    # Bluetooth Host
    #
    # end of Bluetooth Host
    
    # CONFIG_BT_SHELL is not set
    # CONFIG_BT_EAD is not set
    CONFIG_BT_LOG=y
    
    #
    # Bluetooth logging
    #
    CONFIG_BT_LOG_LEGACY=y
    
    #
    # Bluetooth legacy logging options
    #
    # CONFIG_BT_DEBUG_HCI_DRIVER is not set
    
    #
    # [DEPRECATED] Audio
    #
    # CONFIG_BT_DEBUG_AICS is not set
    # CONFIG_BT_DEBUG_AICS_CLIENT is not set
    # CONFIG_BT_DEBUG_CSIP_SET_MEMBER is not set
    # CONFIG_BT_DEBUG_CSIP_SET_COORDINATOR is not set
    # CONFIG_BT_DEBUG_HAS is not set
    # CONFIG_BT_DEBUG_MCS is not set
    # CONFIG_BT_DEBUG_MCC is not set
    # CONFIG_MCTL_DEBUG is not set
    # CONFIG_BT_DEBUG_MICP_MIC_DEV is not set
    # CONFIG_BT_DEBUG_MICP_MIC_CTLR is not set
    # CONFIG_BT_DEBUG_MPL is not set
    # CONFIG_BT_DEBUG_TBS is not set
    # CONFIG_BT_DEBUG_TBS_CLIENT is not set
    # CONFIG_BT_DEBUG_VCP_VOL_REND is not set
    # CONFIG_BT_DEBUG_VCP_VOL_CTLR is not set
    # CONFIG_BT_DEBUG_VOCS is not set
    # CONFIG_BT_DEBUG_VOCS_CLIENT is not set
    # end of [DEPRECATED] Audio
    
    #
    # [DEPRECATED] Others
    #
    # CONFIG_BT_DEBUG_ATT is not set
    # CONFIG_BT_DEBUG_GATT is not set
    # CONFIG_BT_DEBUG_L2CAP is not set
    # CONFIG_BT_DEBUG_DF is not set
    # CONFIG_BT_DEBUG_HCI_CORE is not set
    # CONFIG_BT_DEBUG_CONN is not set
    # CONFIG_BT_DEBUG_ISO is not set
    # CONFIG_BT_DEBUG_SERVICE is not set
    # end of [DEPRECATED] Others
    
    #
    # [DEPRECATED] BR/EDR
    #
    # end of [DEPRECATED] BR/EDR
    
    #
    # [DEPRECATED] Mesh
    #
    # CONFIG_BT_MESH_DEBUG is not set
    # CONFIG_BT_MESH_DEBUG_NET is not set
    # CONFIG_BT_MESH_DEBUG_RPL is not set
    # CONFIG_BT_MESH_DEBUG_TRANS is not set
    # CONFIG_BT_MESH_DEBUG_BEACON is not set
    # CONFIG_BT_MESH_DEBUG_CRYPTO is not set
    # CONFIG_BT_MESH_DEBUG_KEYS is not set
    # CONFIG_BT_MESH_DEBUG_PROV is not set
    # CONFIG_BT_MESH_DEBUG_PROVISIONER is not set
    # CONFIG_BT_MESH_DEBUG_PROV_DEVICE is not set
    # CONFIG_BT_MESH_DEBUG_ACCESS is not set
    # CONFIG_BT_MESH_DEBUG_MODEL is not set
    # CONFIG_BT_MESH_DEBUG_ADV is not set
    # CONFIG_BT_MESH_DEBUG_LOW_POWER is not set
    # CONFIG_BT_MESH_DEBUG_FRIEND is not set
    # CONFIG_BT_MESH_DEBUG_CFG is not set
    # end of [DEPRECATED] Mesh
    
    #
    # [DEPRECATED] Services
    #
    # CONFIG_BT_DEBUG_OTS_CLIENT is not set
    # end of [DEPRECATED] Services
    # end of Bluetooth legacy logging options
    
    # CONFIG_BT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_LOG_LEVEL_INF is not set
    # CONFIG_BT_LOG_LEVEL_DBG is not set
    CONFIG_BT_LOG_LEVEL_DEFAULT=y
    CONFIG_BT_LOG_LEVEL=3
    CONFIG_BT_HCI_DRIVER_LOG_LEVEL=4
    # CONFIG_BT_HCI_DRIVER_LOG_LEVEL_INHERIT is not set
    # CONFIG_BT_HCI_DRIVER_LOG_LEVEL_OFF is not set
    # CONFIG_BT_HCI_DRIVER_LOG_LEVEL_ERR is not set
    # CONFIG_BT_HCI_DRIVER_LOG_LEVEL_WRN is not set
    # CONFIG_BT_HCI_DRIVER_LOG_LEVEL_INF is not set
    CONFIG_BT_HCI_DRIVER_LOG_LEVEL_DBG=y
    # CONFIG_BT_HCI_DRIVER_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_RPA_LOG_LEVEL=3
    CONFIG_BT_RPA_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_RPA_LOG_LEVEL_OFF is not set
    # CONFIG_BT_RPA_LOG_LEVEL_ERR is not set
    # CONFIG_BT_RPA_LOG_LEVEL_WRN is not set
    # CONFIG_BT_RPA_LOG_LEVEL_INF is not set
    # CONFIG_BT_RPA_LOG_LEVEL_DBG is not set
    # CONFIG_BT_RPA_LOG_LEVEL_DEFAULT is not set
    
    #
    # Audio
    #
    CONFIG_BT_AICS_LOG_LEVEL=3
    CONFIG_BT_AICS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_AICS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_AICS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_AICS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_AICS_LOG_LEVEL_INF is not set
    # CONFIG_BT_AICS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_AICS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_AICS_CLIENT_LOG_LEVEL=3
    CONFIG_BT_AICS_CLIENT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_AICS_CLIENT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_AICS_CLIENT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_AICS_CLIENT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_AICS_CLIENT_LOG_LEVEL_INF is not set
    # CONFIG_BT_AICS_CLIENT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_AICS_CLIENT_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_BAP_STREAM_LOG_LEVEL=3
    CONFIG_BT_BAP_STREAM_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_BAP_STREAM_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAP_STREAM_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAP_STREAM_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAP_STREAM_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAP_STREAM_LOG_LEVEL_DBG is not set
    # CONFIG_BT_BAP_STREAM_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_AUDIO_CODEC_LOG_LEVEL_INHERIT=y
    CONFIG_BT_AUDIO_CODEC_LOG_LEVEL=3
    # CONFIG_BT_AUDIO_CODEC_LOG_LEVEL_OFF is not set
    # CONFIG_BT_AUDIO_CODEC_LOG_LEVEL_ERR is not set
    # CONFIG_BT_AUDIO_CODEC_LOG_LEVEL_WRN is not set
    # CONFIG_BT_AUDIO_CODEC_LOG_LEVEL_INF is not set
    # CONFIG_BT_AUDIO_CODEC_LOG_LEVEL_DBG is not set
    # CONFIG_BT_AUDIO_CODEC_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_ASCS_LOG_LEVEL=3
    CONFIG_BT_ASCS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_ASCS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_ASCS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_ASCS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_ASCS_LOG_LEVEL_INF is not set
    # CONFIG_BT_ASCS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_ASCS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_BAP_UNICAST_SERVER_LOG_LEVEL=3
    CONFIG_BT_BAP_UNICAST_SERVER_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_BAP_UNICAST_SERVER_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAP_UNICAST_SERVER_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAP_UNICAST_SERVER_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAP_UNICAST_SERVER_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAP_UNICAST_SERVER_LOG_LEVEL_DBG is not set
    # CONFIG_BT_BAP_UNICAST_SERVER_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_BAP_UNICAST_CLIENT_LOG_LEVEL=3
    CONFIG_BT_BAP_UNICAST_CLIENT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_BAP_UNICAST_CLIENT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAP_UNICAST_CLIENT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAP_UNICAST_CLIENT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAP_UNICAST_CLIENT_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAP_UNICAST_CLIENT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_BAP_UNICAST_CLIENT_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_BAP_BROADCAST_SOURCE_LOG_LEVEL=3
    CONFIG_BT_BAP_BROADCAST_SOURCE_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_BAP_BROADCAST_SOURCE_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAP_BROADCAST_SOURCE_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAP_BROADCAST_SOURCE_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAP_BROADCAST_SOURCE_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAP_BROADCAST_SOURCE_LOG_LEVEL_DBG is not set
    # CONFIG_BT_BAP_BROADCAST_SOURCE_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_BAP_BROADCAST_SINK_LOG_LEVEL=3
    CONFIG_BT_BAP_BROADCAST_SINK_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_BAP_BROADCAST_SINK_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAP_BROADCAST_SINK_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAP_BROADCAST_SINK_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAP_BROADCAST_SINK_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAP_BROADCAST_SINK_LOG_LEVEL_DBG is not set
    # CONFIG_BT_BAP_BROADCAST_SINK_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_BAP_SCAN_DELEGATOR_LOG_LEVEL=3
    CONFIG_BT_BAP_SCAN_DELEGATOR_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_BAP_SCAN_DELEGATOR_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAP_SCAN_DELEGATOR_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAP_SCAN_DELEGATOR_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAP_SCAN_DELEGATOR_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAP_SCAN_DELEGATOR_LOG_LEVEL_DBG is not set
    # CONFIG_BT_BAP_SCAN_DELEGATOR_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_BAP_BROADCAST_ASSISTANT_LOG_LEVEL=3
    CONFIG_BT_BAP_BROADCAST_ASSISTANT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_BAP_BROADCAST_ASSISTANT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAP_BROADCAST_ASSISTANT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAP_BROADCAST_ASSISTANT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAP_BROADCAST_ASSISTANT_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAP_BROADCAST_ASSISTANT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_BAP_BROADCAST_ASSISTANT_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_BAP_ISO_LOG_LEVEL_INHERIT=y
    CONFIG_BT_BAP_ISO_LOG_LEVEL=3
    # CONFIG_BT_BAP_ISO_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAP_ISO_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAP_ISO_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAP_ISO_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAP_ISO_LOG_LEVEL_DBG is not set
    # CONFIG_BT_BAP_ISO_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_CAP_ACCEPTOR_LOG_LEVEL=3
    CONFIG_BT_CAP_ACCEPTOR_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_CAP_ACCEPTOR_LOG_LEVEL_OFF is not set
    # CONFIG_BT_CAP_ACCEPTOR_LOG_LEVEL_ERR is not set
    # CONFIG_BT_CAP_ACCEPTOR_LOG_LEVEL_WRN is not set
    # CONFIG_BT_CAP_ACCEPTOR_LOG_LEVEL_INF is not set
    # CONFIG_BT_CAP_ACCEPTOR_LOG_LEVEL_DBG is not set
    # CONFIG_BT_CAP_ACCEPTOR_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_CAP_INITIATOR_LOG_LEVEL=3
    CONFIG_BT_CAP_INITIATOR_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_CAP_INITIATOR_LOG_LEVEL_OFF is not set
    # CONFIG_BT_CAP_INITIATOR_LOG_LEVEL_ERR is not set
    # CONFIG_BT_CAP_INITIATOR_LOG_LEVEL_WRN is not set
    # CONFIG_BT_CAP_INITIATOR_LOG_LEVEL_INF is not set
    # CONFIG_BT_CAP_INITIATOR_LOG_LEVEL_DBG is not set
    # CONFIG_BT_CAP_INITIATOR_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_CAP_STREAM_LOG_LEVEL_INHERIT=y
    CONFIG_BT_CAP_STREAM_LOG_LEVEL=3
    # CONFIG_BT_CAP_STREAM_LOG_LEVEL_OFF is not set
    # CONFIG_BT_CAP_STREAM_LOG_LEVEL_ERR is not set
    # CONFIG_BT_CAP_STREAM_LOG_LEVEL_WRN is not set
    # CONFIG_BT_CAP_STREAM_LOG_LEVEL_INF is not set
    # CONFIG_BT_CAP_STREAM_LOG_LEVEL_DBG is not set
    # CONFIG_BT_CAP_STREAM_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_CSIP_SET_MEMBER_LOG_LEVEL=3
    CONFIG_BT_CSIP_SET_MEMBER_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_CSIP_SET_MEMBER_LOG_LEVEL_OFF is not set
    # CONFIG_BT_CSIP_SET_MEMBER_LOG_LEVEL_ERR is not set
    # CONFIG_BT_CSIP_SET_MEMBER_LOG_LEVEL_WRN is not set
    # CONFIG_BT_CSIP_SET_MEMBER_LOG_LEVEL_INF is not set
    # CONFIG_BT_CSIP_SET_MEMBER_LOG_LEVEL_DBG is not set
    # CONFIG_BT_CSIP_SET_MEMBER_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_CSIP_SET_COORDINATOR_LOG_LEVEL=3
    CONFIG_BT_CSIP_SET_COORDINATOR_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_CSIP_SET_COORDINATOR_LOG_LEVEL_OFF is not set
    # CONFIG_BT_CSIP_SET_COORDINATOR_LOG_LEVEL_ERR is not set
    # CONFIG_BT_CSIP_SET_COORDINATOR_LOG_LEVEL_WRN is not set
    # CONFIG_BT_CSIP_SET_COORDINATOR_LOG_LEVEL_INF is not set
    # CONFIG_BT_CSIP_SET_COORDINATOR_LOG_LEVEL_DBG is not set
    # CONFIG_BT_CSIP_SET_COORDINATOR_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_CSIP_SET_MEMBER_CRYPTO_LOG_LEVEL=3
    CONFIG_BT_CSIP_SET_MEMBER_CRYPTO_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_CSIP_SET_MEMBER_CRYPTO_LOG_LEVEL_OFF is not set
    # CONFIG_BT_CSIP_SET_MEMBER_CRYPTO_LOG_LEVEL_ERR is not set
    # CONFIG_BT_CSIP_SET_MEMBER_CRYPTO_LOG_LEVEL_WRN is not set
    # CONFIG_BT_CSIP_SET_MEMBER_CRYPTO_LOG_LEVEL_INF is not set
    # CONFIG_BT_CSIP_SET_MEMBER_CRYPTO_LOG_LEVEL_DBG is not set
    # CONFIG_BT_CSIP_SET_MEMBER_CRYPTO_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_HAS_LOG_LEVEL=3
    CONFIG_BT_HAS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_HAS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_HAS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_HAS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_HAS_LOG_LEVEL_INF is not set
    # CONFIG_BT_HAS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_HAS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_HAS_CLIENT_LOG_LEVEL=3
    CONFIG_BT_HAS_CLIENT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_HAS_CLIENT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_HAS_CLIENT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_HAS_CLIENT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_HAS_CLIENT_LOG_LEVEL_INF is not set
    # CONFIG_BT_HAS_CLIENT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_HAS_CLIENT_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MCS_LOG_LEVEL=3
    CONFIG_BT_MCS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MCS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MCS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MCS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MCS_LOG_LEVEL_INF is not set
    # CONFIG_BT_MCS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MCS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MCC_LOG_LEVEL=3
    CONFIG_BT_MCC_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MCC_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MCC_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MCC_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MCC_LOG_LEVEL_INF is not set
    # CONFIG_BT_MCC_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MCC_LOG_LEVEL_DEFAULT is not set
    CONFIG_MCTL_LOG_LEVEL=3
    CONFIG_MCTL_LOG_LEVEL_INHERIT=y
    # CONFIG_MCTL_LOG_LEVEL_OFF is not set
    # CONFIG_MCTL_LOG_LEVEL_ERR is not set
    # CONFIG_MCTL_LOG_LEVEL_WRN is not set
    # CONFIG_MCTL_LOG_LEVEL_INF is not set
    # CONFIG_MCTL_LOG_LEVEL_DBG is not set
    # CONFIG_MCTL_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MICP_MIC_DEV_LOG_LEVEL=3
    CONFIG_BT_MICP_MIC_DEV_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MICP_MIC_DEV_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MICP_MIC_DEV_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MICP_MIC_DEV_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MICP_MIC_DEV_LOG_LEVEL_INF is not set
    # CONFIG_BT_MICP_MIC_DEV_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MICP_MIC_DEV_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MICP_MIC_CTLR_LOG_LEVEL=3
    CONFIG_BT_MICP_MIC_CTLR_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MICP_MIC_CTLR_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MICP_MIC_CTLR_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MICP_MIC_CTLR_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MICP_MIC_CTLR_LOG_LEVEL_INF is not set
    # CONFIG_BT_MICP_MIC_CTLR_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MICP_MIC_CTLR_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MPL_LOG_LEVEL=3
    CONFIG_BT_MPL_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MPL_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MPL_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MPL_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MPL_LOG_LEVEL_INF is not set
    # CONFIG_BT_MPL_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MPL_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_PACS_LOG_LEVEL=3
    CONFIG_BT_PACS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_PACS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_PACS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_PACS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_PACS_LOG_LEVEL_INF is not set
    # CONFIG_BT_PACS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_PACS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_TBS_LOG_LEVEL=3
    CONFIG_BT_TBS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_TBS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_TBS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_TBS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_TBS_LOG_LEVEL_INF is not set
    # CONFIG_BT_TBS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_TBS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_TBS_CLIENT_LOG_LEVEL=3
    CONFIG_BT_TBS_CLIENT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_TBS_CLIENT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_TBS_CLIENT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_TBS_CLIENT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_TBS_CLIENT_LOG_LEVEL_INF is not set
    # CONFIG_BT_TBS_CLIENT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_TBS_CLIENT_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_VCP_VOL_REND_LOG_LEVEL=3
    CONFIG_BT_VCP_VOL_REND_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_VCP_VOL_REND_LOG_LEVEL_OFF is not set
    # CONFIG_BT_VCP_VOL_REND_LOG_LEVEL_ERR is not set
    # CONFIG_BT_VCP_VOL_REND_LOG_LEVEL_WRN is not set
    # CONFIG_BT_VCP_VOL_REND_LOG_LEVEL_INF is not set
    # CONFIG_BT_VCP_VOL_REND_LOG_LEVEL_DBG is not set
    # CONFIG_BT_VCP_VOL_REND_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_VCP_VOL_CTLR_LOG_LEVEL=3
    CONFIG_BT_VCP_VOL_CTLR_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_VCP_VOL_CTLR_LOG_LEVEL_OFF is not set
    # CONFIG_BT_VCP_VOL_CTLR_LOG_LEVEL_ERR is not set
    # CONFIG_BT_VCP_VOL_CTLR_LOG_LEVEL_WRN is not set
    # CONFIG_BT_VCP_VOL_CTLR_LOG_LEVEL_INF is not set
    # CONFIG_BT_VCP_VOL_CTLR_LOG_LEVEL_DBG is not set
    # CONFIG_BT_VCP_VOL_CTLR_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_VOCS_LOG_LEVEL=3
    CONFIG_BT_VOCS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_VOCS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_VOCS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_VOCS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_VOCS_LOG_LEVEL_INF is not set
    # CONFIG_BT_VOCS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_VOCS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_VOCS_CLIENT_LOG_LEVEL=3
    CONFIG_BT_VOCS_CLIENT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_VOCS_CLIENT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_VOCS_CLIENT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_VOCS_CLIENT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_VOCS_CLIENT_LOG_LEVEL_INF is not set
    # CONFIG_BT_VOCS_CLIENT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_VOCS_CLIENT_LOG_LEVEL_DEFAULT is not set
    # end of Audio
    
    #
    # Others
    #
    CONFIG_BT_CRYPTO_LOG_LEVEL=3
    CONFIG_BT_CRYPTO_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_CRYPTO_LOG_LEVEL_OFF is not set
    # CONFIG_BT_CRYPTO_LOG_LEVEL_ERR is not set
    # CONFIG_BT_CRYPTO_LOG_LEVEL_WRN is not set
    # CONFIG_BT_CRYPTO_LOG_LEVEL_INF is not set
    # CONFIG_BT_CRYPTO_LOG_LEVEL_DBG is not set
    # CONFIG_BT_CRYPTO_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_ATT_LOG_LEVEL=3
    CONFIG_BT_ATT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_ATT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_ATT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_ATT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_ATT_LOG_LEVEL_INF is not set
    # CONFIG_BT_ATT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_ATT_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_GATT_LOG_LEVEL=3
    CONFIG_BT_GATT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_GATT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_GATT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_GATT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_GATT_LOG_LEVEL_INF is not set
    # CONFIG_BT_GATT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_GATT_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_L2CAP_LOG_LEVEL=3
    CONFIG_BT_L2CAP_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_L2CAP_LOG_LEVEL_OFF is not set
    # CONFIG_BT_L2CAP_LOG_LEVEL_ERR is not set
    # CONFIG_BT_L2CAP_LOG_LEVEL_WRN is not set
    # CONFIG_BT_L2CAP_LOG_LEVEL_INF is not set
    # CONFIG_BT_L2CAP_LOG_LEVEL_DBG is not set
    # CONFIG_BT_L2CAP_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_EAD_LOG_LEVEL_INHERIT=y
    CONFIG_BT_EAD_LOG_LEVEL=3
    # CONFIG_BT_EAD_LOG_LEVEL_OFF is not set
    # CONFIG_BT_EAD_LOG_LEVEL_ERR is not set
    # CONFIG_BT_EAD_LOG_LEVEL_WRN is not set
    # CONFIG_BT_EAD_LOG_LEVEL_INF is not set
    # CONFIG_BT_EAD_LOG_LEVEL_DBG is not set
    # CONFIG_BT_EAD_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_DF_LOG_LEVEL=3
    CONFIG_BT_DF_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_DF_LOG_LEVEL_OFF is not set
    # CONFIG_BT_DF_LOG_LEVEL_ERR is not set
    # CONFIG_BT_DF_LOG_LEVEL_WRN is not set
    # CONFIG_BT_DF_LOG_LEVEL_INF is not set
    # CONFIG_BT_DF_LOG_LEVEL_DBG is not set
    # CONFIG_BT_DF_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_SETTINGS_LOG_LEVEL=3
    CONFIG_BT_SETTINGS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_SETTINGS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_SETTINGS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_SETTINGS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_SETTINGS_LOG_LEVEL_INF is not set
    # CONFIG_BT_SETTINGS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_SETTINGS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_HCI_CORE_LOG_LEVEL=4
    # CONFIG_BT_HCI_CORE_LOG_LEVEL_INHERIT is not set
    # CONFIG_BT_HCI_CORE_LOG_LEVEL_OFF is not set
    # CONFIG_BT_HCI_CORE_LOG_LEVEL_ERR is not set
    # CONFIG_BT_HCI_CORE_LOG_LEVEL_WRN is not set
    # CONFIG_BT_HCI_CORE_LOG_LEVEL_INF is not set
    CONFIG_BT_HCI_CORE_LOG_LEVEL_DBG=y
    # CONFIG_BT_HCI_CORE_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_CONN_LOG_LEVEL=3
    CONFIG_BT_CONN_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_CONN_LOG_LEVEL_OFF is not set
    # CONFIG_BT_CONN_LOG_LEVEL_ERR is not set
    # CONFIG_BT_CONN_LOG_LEVEL_WRN is not set
    # CONFIG_BT_CONN_LOG_LEVEL_INF is not set
    # CONFIG_BT_CONN_LOG_LEVEL_DBG is not set
    # CONFIG_BT_CONN_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_ISO_LOG_LEVEL=3
    CONFIG_BT_ISO_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_ISO_LOG_LEVEL_OFF is not set
    # CONFIG_BT_ISO_LOG_LEVEL_ERR is not set
    # CONFIG_BT_ISO_LOG_LEVEL_WRN is not set
    # CONFIG_BT_ISO_LOG_LEVEL_INF is not set
    # CONFIG_BT_ISO_LOG_LEVEL_DBG is not set
    # CONFIG_BT_ISO_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_KEYS_LOG_LEVEL=3
    CONFIG_BT_KEYS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_KEYS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_KEYS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_KEYS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_KEYS_LOG_LEVEL_INF is not set
    # CONFIG_BT_KEYS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_KEYS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_SMP_LOG_LEVEL=3
    CONFIG_BT_SMP_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_SMP_LOG_LEVEL_OFF is not set
    # CONFIG_BT_SMP_LOG_LEVEL_ERR is not set
    # CONFIG_BT_SMP_LOG_LEVEL_WRN is not set
    # CONFIG_BT_SMP_LOG_LEVEL_INF is not set
    # CONFIG_BT_SMP_LOG_LEVEL_DBG is not set
    # CONFIG_BT_SMP_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_SERVICE_LOG_LEVEL=3
    CONFIG_BT_SERVICE_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_SERVICE_LOG_LEVEL_OFF is not set
    # CONFIG_BT_SERVICE_LOG_LEVEL_ERR is not set
    # CONFIG_BT_SERVICE_LOG_LEVEL_WRN is not set
    # CONFIG_BT_SERVICE_LOG_LEVEL_INF is not set
    # CONFIG_BT_SERVICE_LOG_LEVEL_DBG is not set
    # CONFIG_BT_SERVICE_LOG_LEVEL_DEFAULT is not set
    # end of Others
    
    #
    # BR/EDR
    #
    CONFIG_BT_RFCOMM_LOG_LEVEL=3
    CONFIG_BT_RFCOMM_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_RFCOMM_LOG_LEVEL_OFF is not set
    # CONFIG_BT_RFCOMM_LOG_LEVEL_ERR is not set
    # CONFIG_BT_RFCOMM_LOG_LEVEL_WRN is not set
    # CONFIG_BT_RFCOMM_LOG_LEVEL_INF is not set
    # CONFIG_BT_RFCOMM_LOG_LEVEL_DBG is not set
    # CONFIG_BT_RFCOMM_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_HFP_HF_LOG_LEVEL=3
    CONFIG_BT_HFP_HF_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_HFP_HF_LOG_LEVEL_OFF is not set
    # CONFIG_BT_HFP_HF_LOG_LEVEL_ERR is not set
    # CONFIG_BT_HFP_HF_LOG_LEVEL_WRN is not set
    # CONFIG_BT_HFP_HF_LOG_LEVEL_INF is not set
    # CONFIG_BT_HFP_HF_LOG_LEVEL_DBG is not set
    # CONFIG_BT_HFP_HF_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_AVDTP_LOG_LEVEL=3
    CONFIG_BT_AVDTP_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_AVDTP_LOG_LEVEL_OFF is not set
    # CONFIG_BT_AVDTP_LOG_LEVEL_ERR is not set
    # CONFIG_BT_AVDTP_LOG_LEVEL_WRN is not set
    # CONFIG_BT_AVDTP_LOG_LEVEL_INF is not set
    # CONFIG_BT_AVDTP_LOG_LEVEL_DBG is not set
    # CONFIG_BT_AVDTP_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_A2DP_LOG_LEVEL=3
    CONFIG_BT_A2DP_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_A2DP_LOG_LEVEL_OFF is not set
    # CONFIG_BT_A2DP_LOG_LEVEL_ERR is not set
    # CONFIG_BT_A2DP_LOG_LEVEL_WRN is not set
    # CONFIG_BT_A2DP_LOG_LEVEL_INF is not set
    # CONFIG_BT_A2DP_LOG_LEVEL_DBG is not set
    # CONFIG_BT_A2DP_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_SDP_LOG_LEVEL=3
    CONFIG_BT_SDP_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_SDP_LOG_LEVEL_OFF is not set
    # CONFIG_BT_SDP_LOG_LEVEL_ERR is not set
    # CONFIG_BT_SDP_LOG_LEVEL_WRN is not set
    # CONFIG_BT_SDP_LOG_LEVEL_INF is not set
    # CONFIG_BT_SDP_LOG_LEVEL_DBG is not set
    # CONFIG_BT_SDP_LOG_LEVEL_DEFAULT is not set
    # end of BR/EDR
    
    #
    # Mesh
    #
    CONFIG_BT_MESH_LOG_LEVEL=3
    CONFIG_BT_MESH_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_NET_LOG_LEVEL=3
    CONFIG_BT_MESH_NET_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_NET_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_NET_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_NET_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_NET_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_NET_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_NET_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_RPL_LOG_LEVEL=3
    CONFIG_BT_MESH_RPL_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_RPL_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_RPL_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_RPL_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_RPL_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_RPL_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_RPL_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_TRANS_LOG_LEVEL=3
    CONFIG_BT_MESH_TRANS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_TRANS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_TRANS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_TRANS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_TRANS_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_TRANS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_TRANS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_BEACON_LOG_LEVEL=3
    CONFIG_BT_MESH_BEACON_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_BEACON_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_BEACON_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_BEACON_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_BEACON_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_BEACON_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_BEACON_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_CRYPTO_LOG_LEVEL=3
    CONFIG_BT_MESH_CRYPTO_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_CRYPTO_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_CRYPTO_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_CRYPTO_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_CRYPTO_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_CRYPTO_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_CRYPTO_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_KEYS_LOG_LEVEL=3
    CONFIG_BT_MESH_KEYS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_KEYS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_KEYS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_KEYS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_KEYS_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_KEYS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_KEYS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_PROV_LOG_LEVEL=3
    CONFIG_BT_MESH_PROV_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_PROV_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_PROV_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_PROV_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_PROV_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_PROV_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_PROV_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_PROVISIONER_LOG_LEVEL=3
    CONFIG_BT_MESH_PROVISIONER_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_PROVISIONER_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_PROVISIONER_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_PROVISIONER_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_PROVISIONER_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_PROVISIONER_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_PROVISIONER_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_PROV_DEVICE_LOG_LEVEL=3
    CONFIG_BT_MESH_PROV_DEVICE_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_PROV_DEVICE_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_PROV_DEVICE_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_PROV_DEVICE_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_PROV_DEVICE_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_PROV_DEVICE_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_PROV_DEVICE_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_ACCESS_LOG_LEVEL=3
    CONFIG_BT_MESH_ACCESS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_ACCESS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_ACCESS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_ACCESS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_ACCESS_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_ACCESS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_ACCESS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_MODEL_LOG_LEVEL=3
    CONFIG_BT_MESH_MODEL_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_MODEL_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_MODEL_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_MODEL_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_MODEL_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_MODEL_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_MODEL_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_DFU_LOG_LEVEL=3
    CONFIG_BT_MESH_DFU_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_DFU_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_DFU_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_DFU_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_DFU_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_DFU_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_DFU_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_ADV_LOG_LEVEL=3
    CONFIG_BT_MESH_ADV_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_ADV_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_ADV_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_ADV_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_ADV_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_ADV_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_ADV_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_LOW_POWER_LOG_LEVEL=3
    CONFIG_BT_MESH_LOW_POWER_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_LOW_POWER_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_LOW_POWER_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_LOW_POWER_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_LOW_POWER_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_LOW_POWER_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_LOW_POWER_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_FRIEND_LOG_LEVEL=3
    CONFIG_BT_MESH_FRIEND_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_FRIEND_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_FRIEND_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_FRIEND_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_FRIEND_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_FRIEND_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_FRIEND_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_PROXY_LOG_LEVEL=3
    CONFIG_BT_MESH_PROXY_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_PROXY_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_PROXY_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_PROXY_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_PROXY_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_PROXY_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_PROXY_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_SETTINGS_LOG_LEVEL=3
    CONFIG_BT_MESH_SETTINGS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_SETTINGS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_SETTINGS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_SETTINGS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_SETTINGS_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_SETTINGS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_SETTINGS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_CDB_LOG_LEVEL=3
    CONFIG_BT_MESH_CDB_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_CDB_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_CDB_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_CDB_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_CDB_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_CDB_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_CDB_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_CFG_LOG_LEVEL=3
    CONFIG_BT_MESH_CFG_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_CFG_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_CFG_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_CFG_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_CFG_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_CFG_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_CFG_LOG_LEVEL_DEFAULT is not set
    # end of Mesh
    
    #
    # Services
    #
    # CONFIG_BT_BAS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAS_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAS_LOG_LEVEL_DBG is not set
    CONFIG_BT_BAS_LOG_LEVEL_DEFAULT=y
    CONFIG_BT_BAS_LOG_LEVEL=3
    # CONFIG_BT_HRS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_HRS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_HRS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_HRS_LOG_LEVEL_INF is not set
    # CONFIG_BT_HRS_LOG_LEVEL_DBG is not set
    CONFIG_BT_HRS_LOG_LEVEL_DEFAULT=y
    CONFIG_BT_HRS_LOG_LEVEL=3
    # CONFIG_BT_TPS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_TPS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_TPS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_TPS_LOG_LEVEL_INF is not set
    # CONFIG_BT_TPS_LOG_LEVEL_DBG is not set
    CONFIG_BT_TPS_LOG_LEVEL_DEFAULT=y
    CONFIG_BT_TPS_LOG_LEVEL=3
    CONFIG_BT_IAS_CLIENT_LOG_LEVEL=3
    CONFIG_BT_IAS_CLIENT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_IAS_CLIENT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_IAS_CLIENT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_IAS_CLIENT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_IAS_CLIENT_LOG_LEVEL_INF is not set
    # CONFIG_BT_IAS_CLIENT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_IAS_CLIENT_LOG_LEVEL_DEFAULT is not set
    # CONFIG_BT_IAS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_IAS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_IAS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_IAS_LOG_LEVEL_INF is not set
    # CONFIG_BT_IAS_LOG_LEVEL_DBG is not set
    CONFIG_BT_IAS_LOG_LEVEL_DEFAULT=y
    CONFIG_BT_IAS_LOG_LEVEL=3
    CONFIG_BT_OTS_CLIENT_LOG_LEVEL=3
    CONFIG_BT_OTS_CLIENT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_OTS_CLIENT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_OTS_CLIENT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_OTS_CLIENT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_OTS_CLIENT_LOG_LEVEL_INF is not set
    # CONFIG_BT_OTS_CLIENT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_OTS_CLIENT_LOG_LEVEL_DEFAULT is not set
    # CONFIG_BT_OTS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_OTS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_OTS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_OTS_LOG_LEVEL_INF is not set
    # CONFIG_BT_OTS_LOG_LEVEL_DBG is not set
    CONFIG_BT_OTS_LOG_LEVEL_DEFAULT=y
    CONFIG_BT_OTS_LOG_LEVEL=3
    # end of Services
    # end of Bluetooth logging
    
    CONFIG_BT_COMPANY_ID=0x05F1
    
    #
    # Controller Area Network (CAN) bus subsystem
    #
    # CONFIG_ISOTP is not set
    # end of Controller Area Network (CAN) bus subsystem
    
    # CONFIG_CONSOLE_SUBSYS is not set
    
    #
    # System Monitoring Options
    #
    CONFIG_THREAD_ANALYZER=y
    # CONFIG_THREAD_ANALYZER_LOG_LEVEL_OFF is not set
    # CONFIG_THREAD_ANALYZER_LOG_LEVEL_ERR is not set
    # CONFIG_THREAD_ANALYZER_LOG_LEVEL_WRN is not set
    # CONFIG_THREAD_ANALYZER_LOG_LEVEL_INF is not set
    # CONFIG_THREAD_ANALYZER_LOG_LEVEL_DBG is not set
    CONFIG_THREAD_ANALYZER_LOG_LEVEL_DEFAULT=y
    CONFIG_THREAD_ANALYZER_LOG_LEVEL=3
    CONFIG_THREAD_ANALYZER_USE_LOG=y
    # CONFIG_THREAD_ANALYZER_USE_PRINTK is not set
    CONFIG_THREAD_ANALYZER_ISR_STACK_USAGE=y
    CONFIG_THREAD_ANALYZER_RUN_UNLOCKED=y
    CONFIG_THREAD_ANALYZER_AUTO=y
    CONFIG_THREAD_ANALYZER_AUTO_INTERVAL=60
    CONFIG_THREAD_ANALYZER_AUTO_STACK_SIZE=1024
    # end of System Monitoring Options
    
    #
    # Debugging Options
    #
    # CONFIG_DEBUG is not set
    # CONFIG_STACK_USAGE is not set
    # CONFIG_STACK_SENTINEL is not set
    CONFIG_PRINTK=y
    CONFIG_EARLY_CONSOLE=y
    # CONFIG_ASSERT is not set
    # CONFIG_FORCE_NO_ASSERT is not set
    CONFIG_ASSERT_VERBOSE=y
    # CONFIG_ASSERT_NO_FILE_INFO is not set
    # CONFIG_ASSERT_NO_COND_INFO is not set
    # CONFIG_ASSERT_NO_MSG_INFO is not set
    # CONFIG_ASSERT_TEST is not set
    # CONFIG_OVERRIDE_FRAME_POINTER_DEFAULT is not set
    # CONFIG_DEBUG_INFO is not set
    # CONFIG_DEBUG_THREAD_INFO is not set
    # CONFIG_DEBUG_COREDUMP is not set
    # end of Debugging Options
    
    # CONFIG_DISK_ACCESS is not set
    # CONFIG_DSP is not set
    # CONFIG_EMUL is not set
    # CONFIG_CHARACTER_FRAMEBUFFER is not set
    
    #
    # File Systems
    #
    # CONFIG_FILE_SYSTEM is not set
    # CONFIG_NVS is not set
    # end of File Systems
    
    #
    # Inter Processor Communication
    #
    # CONFIG_RPMSG_SERVICE is not set
    CONFIG_IPC_SERVICE=y
    CONFIG_IPC_SERVICE_REG_BACKEND_PRIORITY=46
    CONFIG_IPC_SERVICE_BACKEND_RPMSG=y
    CONFIG_IPC_SERVICE_BACKEND_RPMSG_WQ_STACK_SIZE=1024
    CONFIG_IPC_SERVICE_BACKEND_RPMSG_NUM_ENDPOINTS_PER_INSTANCE=2
    CONFIG_IPC_SERVICE_RPMSG=y
    CONFIG_IPC_SERVICE_STATIC_VRINGS=y
    CONFIG_IPC_SERVICE_STATIC_VRINGS_ALIGNMENT=4
    # CONFIG_IPC_SERVICE_ICMSG is not set
    # CONFIG_IPC_SERVICE_ICMSG_ME is not set
    # CONFIG_IPC_SERVICE_LOG_LEVEL_OFF is not set
    # CONFIG_IPC_SERVICE_LOG_LEVEL_ERR is not set
    # CONFIG_IPC_SERVICE_LOG_LEVEL_WRN is not set
    # CONFIG_IPC_SERVICE_LOG_LEVEL_INF is not set
    # CONFIG_IPC_SERVICE_LOG_LEVEL_DBG is not set
    CONFIG_IPC_SERVICE_LOG_LEVEL_DEFAULT=y
    CONFIG_IPC_SERVICE_LOG_LEVEL=3
    # end of Inter Processor Communication
    
    # CONFIG_JWT is not set
    
    #
    # Logging
    #
    CONFIG_LOG=y
    CONFIG_LOG_CORE_INIT_PRIORITY=0
    CONFIG_LOG_MODE_DEFERRED=y
    # CONFIG_LOG_MODE_IMMEDIATE is not set
    # CONFIG_LOG_MODE_MINIMAL is not set
    # CONFIG_LOG_FRONTEND is not set
    # CONFIG_LOG_CUSTOM_HEADER is not set
    # CONFIG_LOG_MULTIDOMAIN is not set
    
    #
    # Logging levels filtering
    #
    # CONFIG_LOG_RUNTIME_FILTERING is not set
    CONFIG_LOG_DEFAULT_LEVEL=3
    CONFIG_LOG_OVERRIDE_LEVEL=0
    CONFIG_LOG_MAX_LEVEL=4
    # end of Logging levels filtering
    
    #
    # Processing
    #
    CONFIG_LOG_PRINTK=y
    CONFIG_LOG_MODE_OVERFLOW=y
    # CONFIG_LOG_BLOCK_IN_THREAD is not set
    CONFIG_LOG_PROCESS_TRIGGER_THRESHOLD=10
    CONFIG_LOG_PROCESS_THREAD=y
    CONFIG_LOG_PROCESS_THREAD_STARTUP_DELAY_MS=0
    CONFIG_LOG_PROCESS_THREAD_SLEEP_MS=1000
    CONFIG_LOG_PROCESS_THREAD_STACK_SIZE=768
    # CONFIG_LOG_PROCESS_THREAD_CUSTOM_PRIORITY is not set
    CONFIG_LOG_TRACE_SHORT_TIMESTAMP=y
    # CONFIG_LOG_TIMESTAMP_64BIT is not set
    # CONFIG_LOG_SPEED is not set
    # end of Processing
    
    #
    # Output Formatting
    #
    
    #
    # Prepend non-hexdump log message with function name
    #
    CONFIG_LOG_FUNC_NAME_PREFIX_ERR=y
    CONFIG_LOG_FUNC_NAME_PREFIX_WRN=y
    CONFIG_LOG_FUNC_NAME_PREFIX_INF=y
    CONFIG_LOG_FUNC_NAME_PREFIX_DBG=y
    # end of Prepend non-hexdump log message with function name
    
    # CONFIG_LOG_MIPI_SYST_ENABLE is not set
    # CONFIG_LOG_CUSTOM_FORMAT_SUPPORT is not set
    CONFIG_LOG_BACKEND_SHOW_COLOR=y
    # CONFIG_LOG_INFO_COLOR_GREEN is not set
    CONFIG_LOG_TAG_MAX_LEN=0
    CONFIG_LOG_BACKEND_FORMAT_TIMESTAMP=y
    # CONFIG_LOG_OUTPUT_FORMAT_LINUX_TIMESTAMP is not set
    # CONFIG_LOG_OUTPUT_FORMAT_CUSTOM_TIMESTAMP is not set
    # end of Output Formatting
    
    #
    # Backends
    #
    # CONFIG_LOG_BACKEND_SWO is not set
    CONFIG_LOG_BACKEND_UART=y
    CONFIG_LOG_BACKEND_UART_BUFFER_SIZE=1
    CONFIG_LOG_BACKEND_UART_AUTOSTART=y
    CONFIG_LOG_BACKEND_UART_OUTPUT_TEXT=y
    # CONFIG_LOG_BACKEND_UART_OUTPUT_DICTIONARY is not set
    # CONFIG_LOG_BACKEND_UART_OUTPUT_CUSTOM is not set
    CONFIG_LOG_BACKEND_UART_OUTPUT_DEFAULT=0
    # CONFIG_LOG_BACKEND_IPC_SERVICE is not set
    # end of Backends
    
    #
    # Misc
    #
    CONFIG_LOG_DOMAIN_ID=0
    CONFIG_LOG_USE_VLA=y
    # CONFIG_LOG_ALWAYS_RUNTIME is not set
    # CONFIG_LOG_FMT_SECTION is not set
    # CONFIG_LOG_USE_TAGGED_ARGUMENTS is not set
    # CONFIG_LOG_MEM_UTILIZATION is not set
    CONFIG_LOG_FAILURE_REPORT_PERIOD=1000
    # end of Misc
    
    CONFIG_LOG_OUTPUT=y
    # end of Logging
    
    #
    # Device Management
    #
    
    #
    # Host command handler subsystem
    #
    # CONFIG_EC_HOST_CMD is not set
    # CONFIG_EC_HOST_CMD_BACKEND_SHI is not set
    # end of Host command handler subsystem
    
    # CONFIG_OSDP is not set
    # end of Device Management
    
    # CONFIG_MODBUS is not set
    
    #
    # Networking
    #
    CONFIG_NET_BUF=y
    # CONFIG_NET_BUF_LOG is not set
    # CONFIG_NET_BUF_LOG_LEVEL_OFF is not set
    # CONFIG_NET_BUF_LOG_LEVEL_ERR is not set
    # CONFIG_NET_BUF_LOG_LEVEL_WRN is not set
    # CONFIG_NET_BUF_LOG_LEVEL_INF is not set
    # CONFIG_NET_BUF_LOG_LEVEL_DBG is not set
    CONFIG_NET_BUF_LOG_LEVEL_DEFAULT=y
    CONFIG_NET_BUF_LOG_LEVEL=3
    # CONFIG_NET_BUF_POOL_USAGE is not set
    # CONFIG_NETWORKING is not set
    # end of Networking
    
    #
    # Power Management
    #
    # CONFIG_PM_LOG_LEVEL_OFF is not set
    # CONFIG_PM_LOG_LEVEL_ERR is not set
    # CONFIG_PM_LOG_LEVEL_WRN is not set
    # CONFIG_PM_LOG_LEVEL_INF is not set
    # CONFIG_PM_LOG_LEVEL_DBG is not set
    CONFIG_PM_LOG_LEVEL_DEFAULT=y
    CONFIG_PM_LOG_LEVEL=3
    # CONFIG_PM_S2RAM is not set
    CONFIG_PM_POLICY_DEFAULT=y
    # CONFIG_PM_POLICY_CUSTOM is not set
    # end of Power Management
    
    #
    # Portability
    #
    # end of Portability
    
    #
    # Random Number Generators
    #
    # CONFIG_TEST_RANDOM_GENERATOR is not set
    # end of Random Number Generators
    
    # CONFIG_RTIO is not set
    
    #
    # SD
    #
    # CONFIG_MMC_STACK is not set
    # CONFIG_SDMMC_STACK is not set
    # CONFIG_SDIO_STACK is not set
    # end of SD
    
    # CONFIG_SETTINGS is not set
    # CONFIG_SHELL is not set
    # CONFIG_STATS is not set
    
    #
    # Storage
    #
    # CONFIG_STREAM_FLASH is not set
    # end of Storage
    
    # CONFIG_TASK_WDT is not set
    
    #
    # Testing
    #
    # CONFIG_ZTEST is not set
    # CONFIG_ZTEST_MOCKING is not set
    # CONFIG_ZTRESS is not set
    # CONFIG_TEST is not set
    CONFIG_COVERAGE_GCOV_HEAP_SIZE=16384
    # CONFIG_TEST_USERSPACE is not set
    # end of Testing
    
    # CONFIG_TIMING_FUNCTIONS is not set
    # CONFIG_TRACING is not set
    CONFIG_USB_DEVICE_STACK=y
    # CONFIG_USB_DEVICE_LOG_LEVEL_OFF is not set
    # CONFIG_USB_DEVICE_LOG_LEVEL_ERR is not set
    # CONFIG_USB_DEVICE_LOG_LEVEL_WRN is not set
    CONFIG_USB_DEVICE_LOG_LEVEL_INF=y
    # CONFIG_USB_DEVICE_LOG_LEVEL_DBG is not set
    # CONFIG_USB_DEVICE_LOG_LEVEL_DEFAULT is not set
    CONFIG_USB_DEVICE_LOG_LEVEL=3
    CONFIG_USB_DEVICE_VID=0x2FE3
    CONFIG_USB_DEVICE_PID=0x0100
    CONFIG_USB_DEVICE_MANUFACTURER="ZEPHYR"
    CONFIG_USB_DEVICE_PRODUCT="Zephyr HCI UART sample"
    CONFIG_USB_DEVICE_SN="0123456789ABCDEF"
    # CONFIG_USB_COMPOSITE_DEVICE is not set
    CONFIG_USB_MAX_NUM_TRANSFERS=4
    CONFIG_USB_DEVICE_BLUETOOTH_BIG_BUF=y
    CONFIG_USB_REQUEST_BUFFER_SIZE=128
    CONFIG_USB_MAX_ALT_SETTING=8
    CONFIG_USB_NUMOF_EP_WRITE_RETRIES=3
    # CONFIG_USB_DEVICE_SOF is not set
    # CONFIG_USB_DEVICE_BOS is not set
    # CONFIG_USB_DEVICE_OS_DESC is not set
    CONFIG_USB_SELF_POWERED=y
    CONFIG_USB_MAX_POWER=50
    CONFIG_USB_WORKQUEUE=y
    CONFIG_USB_WORKQUEUE_STACK_SIZE=1024
    CONFIG_USB_WORKQUEUE_PRIORITY=-1
    # CONFIG_USB_DEVICE_INITIALIZE_AT_BOOT is not set
    
    #
    # USB CDC ACM Class support
    #
    CONFIG_USB_CDC_ACM=y
    CONFIG_USB_CDC_ACM_RINGBUF_SIZE=1024
    CONFIG_CDC_ACM_INTERRUPT_EP_MPS=16
    CONFIG_CDC_ACM_BULK_EP_MPS=64
    CONFIG_CDC_ACM_IAD=y
    # CONFIG_CDC_ACM_DTE_RATE_CALLBACK_SUPPORT is not set
    # CONFIG_USB_CDC_ACM_LOG_LEVEL_OFF is not set
    # CONFIG_USB_CDC_ACM_LOG_LEVEL_ERR is not set
    # CONFIG_USB_CDC_ACM_LOG_LEVEL_WRN is not set
    # CONFIG_USB_CDC_ACM_LOG_LEVEL_INF is not set
    # CONFIG_USB_CDC_ACM_LOG_LEVEL_DBG is not set
    CONFIG_USB_CDC_ACM_LOG_LEVEL_DEFAULT=y
    CONFIG_USB_CDC_ACM_LOG_LEVEL=3
    # end of USB CDC ACM Class support
    
    # CONFIG_USB_MASS_STORAGE is not set
    # CONFIG_USB_DEVICE_BLUETOOTH is not set
    # CONFIG_USB_DEVICE_BT_H4 is not set
    # CONFIG_USB_DEVICE_LOOPBACK is not set
    
    #
    # USB Device Networking support
    #
    # CONFIG_USB_DEVICE_NETWORK_ECM is not set
    # CONFIG_USB_DEVICE_NETWORK_EEM is not set
    # CONFIG_USB_DEVICE_NETWORK_RNDIS is not set
    # end of USB Device Networking support
    
    # CONFIG_USB_DEVICE_HID is not set
    # CONFIG_USB_DEVICE_AUDIO is not set
    # CONFIG_USB_DEVICE_STACK_NEXT is not set
    # CONFIG_USB_HOST_STACK is not set
    # CONFIG_USBC_STACK is not set
    # CONFIG_ZBUS is not set
    # end of Subsystems and OS Services
    
    CONFIG_TOOLCHAIN_ZEPHYR_0_16=y
    CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_THREAD_LOCAL_STORAGE=y
    
    #
    # Build and Link Features
    #
    
    #
    # Linker Options
    #
    # CONFIG_LINKER_ORPHAN_SECTION_PLACE is not set
    CONFIG_LINKER_ORPHAN_SECTION_WARN=y
    # CONFIG_LINKER_ORPHAN_SECTION_ERROR is not set
    CONFIG_HAS_FLASH_LOAD_OFFSET=y
    # CONFIG_USE_DT_CODE_PARTITION is not set
    CONFIG_LD_LINKER_SCRIPT_SUPPORTED=y
    CONFIG_LD_LINKER_TEMPLATE=y
    # CONFIG_CMAKE_LINKER_GENERATOR is not set
    # CONFIG_HAVE_CUSTOM_LINKER_SCRIPT is not set
    CONFIG_KERNEL_ENTRY="__start"
    CONFIG_LINKER_SORT_BY_ALIGNMENT=y
    CONFIG_SRAM_OFFSET=0
    
    #
    # Linker Sections
    #
    # CONFIG_LINKER_USE_BOOT_SECTION is not set
    # CONFIG_LINKER_USE_PINNED_SECTION is not set
    CONFIG_LINKER_GENERIC_SECTIONS_PRESENT_AT_BOOT=y
    CONFIG_LINKER_LAST_SECTION_ID=y
    CONFIG_LINKER_LAST_SECTION_ID_PATTERN=0xE015E015
    CONFIG_LINKER_USE_RELAX=y
    # end of Linker Sections
    # end of Linker Options
    
    #
    # Compiler Options
    #
    # CONFIG_CODING_GUIDELINE_CHECK is not set
    # CONFIG_NATIVE_APPLICATION is not set
    CONFIG_COMPILER_FREESTANDING=y
    CONFIG_SIZE_OPTIMIZATIONS=y
    # CONFIG_SPEED_OPTIMIZATIONS is not set
    # CONFIG_DEBUG_OPTIMIZATIONS is not set
    # CONFIG_NO_OPTIMIZATIONS is not set
    # CONFIG_COMPILER_WARNINGS_AS_ERRORS is not set
    # CONFIG_COMPILER_SAVE_TEMPS is not set
    CONFIG_COMPILER_COLOR_DIAGNOSTICS=y
    CONFIG_FORTIFY_SOURCE_NONE=y
    # CONFIG_FORTIFY_SOURCE_COMPILE_TIME is not set
    # CONFIG_FORTIFY_SOURCE_RUN_TIME is not set
    CONFIG_COMPILER_OPT=""
    # CONFIG_MISRA_SANE is not set
    # end of Compiler Options
    
    # CONFIG_ASSERT_ON_ERRORS is not set
    # CONFIG_NO_RUNTIME_CHECKS is not set
    CONFIG_RUNTIME_ERROR_CHECKS=y
    
    #
    # Build Options
    #
    CONFIG_KERNEL_BIN_NAME="zephyr"
    CONFIG_OUTPUT_STAT=y
    # CONFIG_OUTPUT_SYMBOLS is not set
    CONFIG_OUTPUT_DISASSEMBLY=y
    # CONFIG_OUTPUT_DISASSEMBLE_ALL is not set
    CONFIG_OUTPUT_PRINT_MEMORY_USAGE=y
    # CONFIG_CLEANUP_INTERMEDIATE_FILES is not set
    # CONFIG_BUILD_NO_GAP_FILL is not set
    CONFIG_BUILD_OUTPUT_BIN=y
    # CONFIG_BUILD_OUTPUT_EXE is not set
    # CONFIG_BUILD_OUTPUT_S19 is not set
    # CONFIG_BUILD_OUTPUT_UF2 is not set
    # CONFIG_BUILD_OUTPUT_STRIPPED is not set
    # CONFIG_APPLICATION_DEFINED_SYSCALL is not set
    # CONFIG_MAKEFILE_EXPORTS is not set
    # CONFIG_BUILD_OUTPUT_META is not set
    CONFIG_BUILD_OUTPUT_STRIP_PATHS=y
    # end of Build Options
    
    CONFIG_DEPRECATED=y
    CONFIG_WARN_DEPRECATED=y
    CONFIG_ENFORCE_ZEPHYR_STDINT=y
    # end of Build and Link Features
    
    #
    # Boot Options
    #
    # CONFIG_IS_BOOTLOADER is not set
    # CONFIG_BOOTLOADER_BOSSA is not set
    # end of Boot Options
    
    #
    # Compatibility
    #
    CONFIG_COMPAT_INCLUDES=y
    # end of Compatibility
    

    build/hci_rpmsg/zephyr/.config
    
    CONFIG_GPIO=y
    # CONFIG_KSCAN is not set
    # CONFIG_INPUT is not set
    # CONFIG_WIFI is not set
    CONFIG_SPI=y
    CONFIG_GPIO_INIT_PRIORITY=40
    # CONFIG_UHC_DRIVER is not set
    # CONFIG_REGULATOR is not set
    # CONFIG_SENSOR is not set
    # CONFIG_WATCHDOG is not set
    # CONFIG_MODEM is not set
    # CONFIG_DISPLAY is not set
    # CONFIG_I2C is not set
    CONFIG_BT_HCI_ACL_FLOW_CONTROL=y
    CONFIG_BT_HCI_VS_EXT=y
    CONFIG_BOARD="bl5340pa_dvk_cpunet"
    CONFIG_FLASH_LOAD_SIZE=0
    CONFIG_SRAM_SIZE=64
    CONFIG_FLASH_LOAD_OFFSET=0
    CONFIG_MBOX_NRFX_IPC=y
    CONFIG_HEAP_MEM_POOL_SIZE=8192
    CONFIG_BT_HCI_VS=y
    CONFIG_BT_CTLR=y
    CONFIG_BT_ECC=y
    CONFIG_MPSL_FEM_NRF21540_TX_GAIN_DB=20
    CONFIG_BT_CTLR_TX_PWR_ANTENNA=20
    CONFIG_MAIN_STACK_SIZE=2048
    CONFIG_SOC="nRF5340_CPUNET_QKAA"
    CONFIG_SOC_SERIES="nrf53"
    CONFIG_NUM_IRQS=30
    CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=32768
    CONFIG_CLOCK_CONTROL_INIT_PRIORITY=30
    CONFIG_FLASH_SIZE=256
    CONFIG_FLASH_BASE_ADDRESS=0x1000000
    CONFIG_ICACHE_LINE_SIZE=32
    CONFIG_DCACHE_LINE_SIZE=32
    CONFIG_ROM_START_OFFSET=0
    CONFIG_PINCTRL=y
    CONFIG_CLOCK_CONTROL=y
    # CONFIG_RESET is not set
    CONFIG_SOC_HAS_TIMING_FUNCTIONS=y
    CONFIG_ARCH_HAS_CUSTOM_BUSY_WAIT=y
    # CONFIG_PM_DEVICE is not set
    # CONFIG_IPC_SERVICE_BACKEND_RPMSG_SHMEM_RESET is not set
    CONFIG_LOG_DOMAIN_NAME="net"
    CONFIG_NRF_RTC_TIMER=y
    CONFIG_SYS_CLOCK_TICKS_PER_SEC=32768
    CONFIG_BUILD_OUTPUT_HEX=y
    CONFIG_SERIAL_INIT_PRIORITY=55
    # CONFIG_MBEDTLS is not set
    # CONFIG_MEMC is not set
    # CONFIG_CODE_DATA_RELOCATION is not set
    # CONFIG_CPU_HAS_CUSTOM_FIXED_SOC_MPU_REGIONS is not set
    CONFIG_TINYCRYPT=y
    CONFIG_SERIAL=y
    # CONFIG_SRAM_VECTOR_TABLE is not set
    CONFIG_MP_MAX_NUM_CPUS=1
    CONFIG_PLATFORM_SPECIFIC_INIT=y
    CONFIG_HAS_DTS=y
    
    #
    # Devicetree Info
    #
    CONFIG_DT_HAS_ARM_ARMV8M_MPU_ENABLED=y
    CONFIG_DT_HAS_ARM_CORTEX_M33_ENABLED=y
    CONFIG_DT_HAS_ARM_V8M_NVIC_ENABLED=y
    CONFIG_DT_HAS_FIXED_PARTITIONS_ENABLED=y
    CONFIG_DT_HAS_LAIRDCONNECT_NRF21540_LCZ_FEM_ENABLED=y
    CONFIG_DT_HAS_MMIO_SRAM_ENABLED=y
    CONFIG_DT_HAS_NORDIC_MBOX_NRF_IPC_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_ACL_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_CCM_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_CLOCK_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_DPPIC_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_ECB_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_EGU_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_FICR_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_GPIO_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_GPIOTE_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_GPREGRET_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_IPC_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_PINCTRL_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_POWER_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_RADIO_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_RNG_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_SPIM_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_SWI_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_TEMP_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_TIMER_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_UICR_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_VMC_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_WDT_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF21540_FEM_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF21540_FEM_SPI_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF53_FLASH_CONTROLLER_ENABLED=y
    CONFIG_DT_HAS_SOC_NV_FLASH_ENABLED=y
    CONFIG_DT_HAS_ZEPHYR_BT_HCI_ENTROPY_ENABLED=y
    CONFIG_DT_HAS_ZEPHYR_IPC_OPENAMP_STATIC_VRINGS_ENABLED=y
    CONFIG_DT_HAS_ZEPHYR_MEMORY_REGION_ENABLED=y
    # end of Devicetree Info
    
    #
    # Modules
    #
    
    #
    # Available modules.
    #
    
    #
    # nrf (C:/Code/test/UA_ZEPHYR_V2/nrf)
    #
    CONFIG_NUM_METAIRQ_PRIORITIES=0
    CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=512
    CONFIG_LOG_BUFFER_SIZE=1024
    # CONFIG_INIT_STACKS is not set
    
    #
    # Nordic nRF Connect
    #
    CONFIG_WARN_EXPERIMENTAL=y
    CONFIG_PRIVILEGED_STACK_SIZE=1024
    CONFIG_BT_BUF_CMD_TX_COUNT=10
    CONFIG_ENTROPY_GENERATOR=y
    CONFIG_INIT_ARCH_HW_AT_BOOT=y
    CONFIG_NORDIC_QSPI_NOR_FLASH_LAYOUT_PAGE_SIZE=2048
    # CONFIG_GETOPT is not set
    # CONFIG_NCS_SAMPLES_DEFAULTS is not set
    # CONFIG_NCS_SAMPLE_EMPTY_APP_CORE_CHILD_IMAGE is not set
    
    #
    # Image build variants
    #
    # CONFIG_NCS_MCUBOOT_IN_BUILD is not set
    # end of Image build variants
    
    # CONFIG_NCS_SAMPLE_MCUMGR_BT_OTA_DFU_SPEEDUP is not set
    CONFIG_BT_BUF_ACL_TX_SIZE=251
    CONFIG_BT_BUF_ACL_RX_SIZE=255
    CONFIG_BT_CTLR_DATA_LENGTH_MAX=27
    
    #
    # Bootloader
    #
    # CONFIG_BUILD_S1_VARIANT is not set
    # CONFIG_SECURE_BOOT is not set
    CONFIG_PM_PARTITION_SIZE_PROVISION=0x280
    # CONFIG_B0_MIN_PARTITION_SIZE is not set
    CONFIG_PM_PARTITION_SIZE_B0_IMAGE=0x7800
    # CONFIG_SECURE_BOOT_CRYPTO is not set
    
    #
    # Secure Boot firmware validation
    #
    CONFIG_SB_VALIDATION_INFO_MAGIC=0x86518483
    CONFIG_SB_VALIDATION_POINTER_MAGIC=0x6919b47e
    CONFIG_SB_VALIDATION_INFO_CRYPTO_ID=1
    CONFIG_SB_VALIDATION_INFO_VERSION=2
    CONFIG_SB_VALIDATION_METADATA_OFFSET=0
    CONFIG_SB_VALIDATE_FW_HASH=y
    # end of Secure Boot firmware validation
    # end of Bootloader
    
    #
    # Bluetooth Low Energy
    #
    CONFIG_BT_MAX_CONN=16
    CONFIG_BT_LL_SOFTDEVICE=y
    
    #
    # SoftDevice Controller
    #
    CONFIG_BT_LL_SOFTDEVICE_BUILD_TYPE_LIB=y
    CONFIG_BT_HCI_TX_STACK_SIZE=1536
    CONFIG_BT_RX_STACK_SIZE=2048
    CONFIG_BT_CTLR_SDC_PERIPHERAL_COUNT=1
    CONFIG_BT_CTLR_SDC_MAX_CONN_EVENT_LEN_DEFAULT=7500
    CONFIG_BT_CTLR_SDC_TX_PACKET_COUNT=3
    CONFIG_BT_CTLR_SDC_RX_PACKET_COUNT=2
    CONFIG_BT_CTLR_SDC_SCAN_BUFFER_COUNT=3
    CONFIG_BT_CTLR_SDC_PERIODIC_SYNC_BUFFER_COUNT=2
    CONFIG_BT_CTLR_SDC_RX_PRIO=6
    # CONFIG_BT_CTLR_DF is not set
    CONFIG_BT_LL_SOFTDEVICE_MULTIROLE=y
    CONFIG_BT_SDC_ADDITIONAL_MEMORY=0
    CONFIG_BT_CTLR_FAL_SIZE=8
    CONFIG_BT_CTLR_ECDH_LIB_OBERON=y
    # CONFIG_BT_CTLR_ECDH_LIB_TINYCRYPT is not set
    CONFIG_BT_CTLR_ECDH_STACK_SIZE=900
    # CONFIG_BT_CTLR_ECDH_IN_MPSL_WORK is not set
    # CONFIG_BT_CTLR_LE_POWER_CONTROL is not set
    # end of SoftDevice Controller
    
    #
    # BLE Libraries
    #
    # CONFIG_BT_GATT_POOL is not set
    # CONFIG_BT_GATT_DM is not set
    # CONFIG_BT_ADV_PROV is not set
    # CONFIG_BT_SCAN is not set
    # CONFIG_BT_CONN_CTX is not set
    
    #
    # Bluetooth Services
    #
    # CONFIG_BT_AMS_CLIENT is not set
    # CONFIG_BT_ANCS_CLIENT is not set
    # CONFIG_BT_BAS_CLIENT is not set
    # CONFIG_BT_BMS is not set
    # CONFIG_BT_CTS_CLIENT is not set
    # CONFIG_BT_DFU_SMP is not set
    # CONFIG_BT_GATTP is not set
    # CONFIG_BT_HIDS is not set
    # CONFIG_BT_HOGP is not set
    # CONFIG_BT_LBS is not set
    # CONFIG_BT_NSMS is not set
    # CONFIG_BT_NUS is not set
    # CONFIG_BT_NUS_CLIENT is not set
    # CONFIG_BT_RSCS is not set
    # CONFIG_BT_THROUGHPUT is not set
    # CONFIG_BT_LATENCY is not set
    # CONFIG_BT_LATENCY_CLIENT is not set
    # CONFIG_BT_HRS_CLIENT is not set
    # CONFIG_BT_DDFS is not set
    # CONFIG_BT_MDS is not set
    # CONFIG_BT_CGMS is not set
    # CONFIG_BT_FAST_PAIR is not set
    # end of Bluetooth Services
    
    #
    # BLE over nRF RPC
    #
    # CONFIG_BT_RPC_STACK is not set
    CONFIG_BT_CENTRAL=y
    CONFIG_BT_PERIPHERAL=y
    CONFIG_BT_OBSERVER=y
    CONFIG_BT_BROADCASTER=y
    CONFIG_BT_CONN=y
    CONFIG_BT_REMOTE_VERSION=y
    # CONFIG_BT_PHY_UPDATE is not set
    CONFIG_BT_DATA_LEN_UPDATE=y
    # CONFIG_BT_EXT_ADV is not set
    CONFIG_BT_BUF_ACL_TX_COUNT=7
    CONFIG_BT_BUF_ACL_RX_COUNT=6
    CONFIG_BT_BUF_EVT_RX_SIZE=255
    CONFIG_BT_BUF_EVT_RX_COUNT=16
    CONFIG_BT_BUF_EVT_DISCARDABLE_SIZE=43
    CONFIG_BT_BUF_CMD_TX_SIZE=255
    CONFIG_BT_HAS_HCI_VS=y
    # CONFIG_BT_HCI_VS_EVT is not set
    # CONFIG_BT_HCI_VS_FATAL_ERROR is not set
    # CONFIG_BT_HCI_MESH_EXT is not set
    # CONFIG_BT_WAIT_NOP is not set
    CONFIG_BT_RPA=y
    CONFIG_BT_ASSERT=y
    CONFIG_BT_ASSERT_VERBOSE=y
    # CONFIG_BT_ASSERT_PANIC is not set
    # CONFIG_BT_DEBUG_NONE is not set
    CONFIG_BT_DEBUG_LOG=y
    # CONFIG_BT_DEBUG_MONITOR_UART is not set
    # CONFIG_BT_DEBUG_MONITOR_RTT is not set
    # CONFIG_BT_LONG_WQ is not set
    # CONFIG_BT_HCI_TX_STACK_SIZE_WITH_PROMPT is not set
    CONFIG_BT_HCI_TX_PRIO=7
    CONFIG_BT_HCI_RESERVE=0
    # CONFIG_BT_RECV_BLOCKING is not set
    # CONFIG_BT_RECV_WORKQ_SYS is not set
    CONFIG_BT_RECV_WORKQ_BT=y
    CONFIG_BT_RX_PRIO=8
    CONFIG_BT_DRIVER_RX_HIGH_PRIO=6
    # CONFIG_BT_TINYCRYPT_ECC is not set
    # CONFIG_BT_HOST_CCM is not set
    # CONFIG_BT_LOG_SNIFFER_INFO is not set
    # CONFIG_BT_TESTING is not set
    # CONFIG_BT_HCI_VS_EVT_USER is not set
    # end of BLE over nRF RPC
    # end of Bluetooth Low Energy
    
    #
    # DFU
    #
    # CONFIG_DFU_MULTI_IMAGE is not set
    # CONFIG_DFU_TARGET is not set
    # end of DFU
    
    # CONFIG_ESB is not set
    # CONFIG_ESB_LOG_LEVEL_OFF is not set
    # CONFIG_ESB_LOG_LEVEL_ERR is not set
    # CONFIG_ESB_LOG_LEVEL_WRN is not set
    # CONFIG_ESB_LOG_LEVEL_INF is not set
    # CONFIG_ESB_LOG_LEVEL_DBG is not set
    CONFIG_ESB_LOG_LEVEL_DEFAULT=y
    CONFIG_ESB_LOG_LEVEL=3
    
    #
    # Peripheral CPU DFU (PCD)
    #
    # CONFIG_PCD is not set
    # CONFIG_PCD_APP is not set
    # CONFIG_PCD_NET is not set
    # end of Peripheral CPU DFU (PCD)
    
    #
    # Networking
    #
    
    #
    # Application protocols
    #
    
    #
    # nRF Cloud
    #
    
    #
    # Client ID (nRF Cloud Device ID)
    #
    CONFIG_NRF_CLOUD_CLIENT_ID_SRC_COMPILE_TIME=y
    CONFIG_NRF_CLOUD_CLIENT_ID="my-client-id"
    # end of Client ID (nRF Cloud Device ID)
    
    # CONFIG_NRF_CLOUD_MQTT is not set
    # CONFIG_NRF_CLOUD_FOTA is not set
    # CONFIG_NRF_CLOUD_FOTA_FULL_MODEM_UPDATE is not set
    # CONFIG_NRF_CLOUD_REST is not set
    # CONFIG_NRF_CLOUD_ALERT is not set
    # CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL_OFF is not set
    # CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL_ERR is not set
    # CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL_WRN is not set
    # CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL_INF is not set
    # CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL_DBG is not set
    CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL_DEFAULT=y
    CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL=3
    CONFIG_NRF_CLOUD_LOG_OUTPUT_LEVEL=1
    CONFIG_NRF_CLOUD_LOG_BUF_SIZE=256
    # CONFIG_NRF_CLOUD_LOG_LOG_LEVEL_OFF is not set
    # CONFIG_NRF_CLOUD_LOG_LOG_LEVEL_ERR is not set
    # CONFIG_NRF_CLOUD_LOG_LOG_LEVEL_WRN is not set
    # CONFIG_NRF_CLOUD_LOG_LOG_LEVEL_INF is not set
    # CONFIG_NRF_CLOUD_LOG_LOG_LEVEL_DBG is not set
    CONFIG_NRF_CLOUD_LOG_LOG_LEVEL_DEFAULT=y
    CONFIG_NRF_CLOUD_LOG_LOG_LEVEL=3
    # CONFIG_NRF_CLOUD_GATEWAY is not set
    # CONFIG_NRF_CLOUD_LOG_LEVEL_OFF is not set
    # CONFIG_NRF_CLOUD_LOG_LEVEL_ERR is not set
    # CONFIG_NRF_CLOUD_LOG_LEVEL_WRN is not set
    # CONFIG_NRF_CLOUD_LOG_LEVEL_INF is not set
    # CONFIG_NRF_CLOUD_LOG_LEVEL_DBG is not set
    CONFIG_NRF_CLOUD_LOG_LEVEL_DEFAULT=y
    CONFIG_NRF_CLOUD_LOG_LEVEL=3
    # end of nRF Cloud
    
    # CONFIG_REST_CLIENT is not set
    # CONFIG_DOWNLOAD_CLIENT is not set
    # CONFIG_AWS_IOT is not set
    # CONFIG_AWS_JOBS is not set
    # CONFIG_AZURE_IOT_HUB is not set
    
    #
    # Self-Registration (Zi ZHu Ce)
    #
    # end of Self-Registration (Zi ZHu Ce)
    
    # CONFIG_ICAL_PARSER is not set
    # CONFIG_FTP_CLIENT is not set
    # CONFIG_LWM2M_CLIENT_UTILS is not set
    # CONFIG_WIFI_CREDENTIALS is not set
    # CONFIG_WIFI_CREDENTIALS_STATIC is not set
    # CONFIG_MQTT_HELPER is not set
    # end of Application protocols
    # end of Networking
    
    #
    # NFC
    #
    # CONFIG_NFC_NDEF is not set
    # CONFIG_NFC_NDEF_PARSER is not set
    # CONFIG_NFC_NDEF_PAYLOAD_TYPE_COMMON is not set
    # CONFIG_NFC_T2T_PARSER is not set
    # CONFIG_NFC_T4T_NDEF_FILE is not set
    # CONFIG_NFC_T4T_ISODEP is not set
    # CONFIG_NFC_T4T_APDU is not set
    # CONFIG_NFC_T4T_CC_FILE is not set
    # CONFIG_NFC_T4T_HL_PROCEDURE is not set
    # CONFIG_NFC_PLATFORM is not set
    # CONFIG_NFC_TNEP_TAG is not set
    # CONFIG_NFC_TNEP_POLLER is not set
    # CONFIG_NFC_TNEP_CH is not set
    # end of NFC
    
    # CONFIG_APP_EVENT_MANAGER is not set
    # CONFIG_NRF_PROFILER is not set
    # CONFIG_FW_INFO is not set
    
    #
    # Debug
    #
    # CONFIG_CPU_LOAD is not set
    # CONFIG_PPI_TRACE is not set
    # end of Debug
    
    # CONFIG_SHELL_BT_NUS is not set
    # CONFIG_SHELL_IPC is not set
    # CONFIG_MPSL_FEM_ONLY is not set
    CONFIG_MPSL_FEM_ANY_SUPPORT=y
    CONFIG_MPSL_FEM_NRF21540_GPIO_SUPPORT=y
    CONFIG_MPSL_FEM_NRF21540_GPIO_SPI_SUPPORT=y
    CONFIG_MPSL_FEM_NCS_SUPPORTED_FEM_USED=y
    CONFIG_MPSL_FEM_API_AVAILABLE=y
    CONFIG_MPSL_FEM=y
    # CONFIG_MPSL_FEM_NRF21540_GPIO is not set
    CONFIG_MPSL_FEM_NRF21540_GPIO_SPI=y
    CONFIG_MPSL_FEM_NRF21540_TX_GAIN_DB_POUTA=20
    CONFIG_MPSL_FEM_NRF21540_TX_GAIN_DB_POUTB=10
    CONFIG_MPSL_FEM_NRF21540_RX_GAIN_DB=13
    # CONFIG_MPSL_FEM_NRF21540_RUNTIME_PA_GAIN_CONTROL is not set
    CONFIG_MPSL_FEM_POWER_MODEL=y
    # CONFIG_MPSL_FEM_POWER_MODEL_NRF21540_USE_BUILTIN is not set
    CONFIG_MPSL_FEM_POWER_MODEL_NRF21540_LAIRD_CONNECTIVITY=y
    CONFIG_MPSL_FEM_DEVICE_CONFIG_254=y
    # CONFIG_MPSL_FEM_LOG_LEVEL_OFF is not set
    # CONFIG_MPSL_FEM_LOG_LEVEL_ERR is not set
    # CONFIG_MPSL_FEM_LOG_LEVEL_WRN is not set
    # CONFIG_MPSL_FEM_LOG_LEVEL_INF is not set
    # CONFIG_MPSL_FEM_LOG_LEVEL_DBG is not set
    CONFIG_MPSL_FEM_LOG_LEVEL_DEFAULT=y
    CONFIG_MPSL_FEM_LOG_LEVEL=3
    CONFIG_MPSL_THREAD_COOP_PRIO=6
    CONFIG_MPSL_WORK_STACK_SIZE=1024
    CONFIG_MPSL_TIMESLOT_SESSION_COUNT=0
    # CONFIG_MPSL_ASSERT_HANDLER is not set
    # CONFIG_MPSL_LOG_LEVEL_OFF is not set
    # CONFIG_MPSL_LOG_LEVEL_ERR is not set
    # CONFIG_MPSL_LOG_LEVEL_WRN is not set
    # CONFIG_MPSL_LOG_LEVEL_INF is not set
    CONFIG_MPSL_LOG_LEVEL_DBG=y
    # CONFIG_MPSL_LOG_LEVEL_DEFAULT is not set
    CONFIG_MPSL_LOG_LEVEL=4
    
    #
    # Partition Manager
    #
    CONFIG_PARTITION_MANAGER_ENABLED=y
    CONFIG_FLASH_MAP_CUSTOM=y
    CONFIG_SRAM_BASE_ADDRESS=0x21000000
    
    #
    # Zephyr subsystem configurations
    #
    # end of Zephyr subsystem configurations
    
    #
    # NCS subsystem configurations
    #
    # CONFIG_PM_SINGLE_IMAGE is not set
    CONFIG_PM_EXTERNAL_FLASH_BASE=0
    # CONFIG_PM_OVERRIDE_EXTERNAL_DRIVER_CHECK is not set
    CONFIG_PM_SRAM_BASE=0x21000000
    CONFIG_PM_SRAM_SIZE=0x10000
    # end of Partition Manager
    
    #
    # nRF RPC (Remote Procedure Call) library
    #
    # end of nRF RPC (Remote Procedure Call) library
    
    #
    # Full Modem Firmware Update Management(FMFU)
    #
    # CONFIG_MGMT_FMFU_LOG_LEVEL_OFF is not set
    # CONFIG_MGMT_FMFU_LOG_LEVEL_ERR is not set
    # CONFIG_MGMT_FMFU_LOG_LEVEL_WRN is not set
    # CONFIG_MGMT_FMFU_LOG_LEVEL_INF is not set
    # CONFIG_MGMT_FMFU_LOG_LEVEL_DBG is not set
    CONFIG_MGMT_FMFU_LOG_LEVEL_DEFAULT=y
    CONFIG_MGMT_FMFU_LOG_LEVEL=3
    # end of Full Modem Firmware Update Management(FMFU)
    
    # CONFIG_CAF is not set
    
    #
    # Nordic IEEE 802.15.4
    #
    # end of Nordic IEEE 802.15.4
    
    # CONFIG_DM_MODULE is not set
    
    #
    # TF-M SPM component configs
    #
    CONFIG_TFM_CONN_HANDLE_MAX_NUM=8
    # end of TF-M SPM component configs
    
    #
    # Libraries
    #
    
    #
    # Binary libraries
    #
    # CONFIG_BT_LL_ACS_NRF53 is not set
    # end of Binary libraries
    
    # CONFIG_ADP536X is not set
    # CONFIG_AT_MONITOR is not set
    # CONFIG_LTE_LINK_CONTROL is not set
    CONFIG_NRF_ACL_FLASH_REGION_SIZE=0x800
    CONFIG_FPROTECT_BLOCK_SIZE=0x800
    # CONFIG_FPROTECT is not set
    # CONFIG_AT_CMD_CUSTOM is not set
    # CONFIG_DK_LIBRARY is not set
    # CONFIG_MODEM_INFO is not set
    CONFIG_MULTITHREADING_LOCK=y
    CONFIG_RESET_ON_FATAL_ERROR=y
    # CONFIG_FATAL_ERROR_LOG_LEVEL_OFF is not set
    # CONFIG_FATAL_ERROR_LOG_LEVEL_ERR is not set
    # CONFIG_FATAL_ERROR_LOG_LEVEL_WRN is not set
    # CONFIG_FATAL_ERROR_LOG_LEVEL_INF is not set
    # CONFIG_FATAL_ERROR_LOG_LEVEL_DBG is not set
    CONFIG_FATAL_ERROR_LOG_LEVEL_DEFAULT=y
    CONFIG_FATAL_ERROR_LOG_LEVEL=3
    # CONFIG_SMS is not set
    # CONFIG_SUPL_CLIENT_LIB is not set
    # CONFIG_DATE_TIME is not set
    # CONFIG_HW_ID_LIBRARY is not set
    # CONFIG_WAVE_GEN_LIB is not set
    CONFIG_HW_UNIQUE_KEY_PARTITION_SIZE=0x800
    # CONFIG_MODEM_JWT is not set
    # CONFIG_QOS is not set
    # CONFIG_SFLOAT is not set
    # CONFIG_CONTIN_ARRAY is not set
    # CONFIG_PCM_MIX is not set
    # CONFIG_TONE is not set
    # CONFIG_PSCM is not set
    # CONFIG_DATA_FIFO is not set
    # CONFIG_FEM_AL_LIB is not set
    # end of Libraries
    
    #
    # Device Drivers
    #
    # CONFIG_BT_DRIVER_QUIRK_NO_AUTO_DLE is not set
    CONFIG_LCZ_FEM=y
    # CONFIG_LCZ_FEM_LOG_LEVEL_OFF is not set
    # CONFIG_LCZ_FEM_LOG_LEVEL_ERR is not set
    # CONFIG_LCZ_FEM_LOG_LEVEL_WRN is not set
    # CONFIG_LCZ_FEM_LOG_LEVEL_INF is not set
    # CONFIG_LCZ_FEM_LOG_LEVEL_DBG is not set
    CONFIG_LCZ_FEM_LOG_LEVEL_DEFAULT=y
    CONFIG_LCZ_FEM_LOG_LEVEL=3
    # CONFIG_LCZ_FEM_INTERNAL_ANTENNA is not set
    CONFIG_LCZ_FEM_REGION=0
    CONFIG_LCZ_FEM_ERRATA_FEB2023=y
    CONFIG_LCZ_FEM_POWER_MODEL=y
    # CONFIG_LCZ_FEM_DEBUG_POWER_ADJUST is not set
    # CONFIG_LCZ_FEM_DEBUG_POWER_SPLIT is not set
    # CONFIG_LCZ_FEM_DEBUG_MODEL_TIMING is not set
    # CONFIG_ETH_RTT is not set
    # CONFIG_NRF_SW_LPUART is not set
    CONFIG_NRFX_GPIOTE_NUM_OF_EVT_HANDLERS=1
    # CONFIG_IPC_UART is not set
    CONFIG_CLOCK_CONTROL_MPSL=y
    CONFIG_SOC_FLASH_NRF_RADIO_SYNC_MPSL_TIMESLOT_SESSION_COUNT=0
    # end of Device Drivers
    
    #
    # External libraries
    #
    # end of External libraries
    
    #
    # Test
    #
    CONFIG_ZTEST_MULTICORE_DEFAULT_SETTINGS=y
    # CONFIG_UNITY is not set
    
    #
    # Mocks
    #
    # CONFIG_MOCK_NRF_MODEM_AT is not set
    # end of Mocks
    # end of Test
    # end of Nordic nRF Connect
    
    CONFIG_ZEPHYR_NRF_MODULE=y
    # end of nrf (C:/Code/test/UA_ZEPHYR_V2/nrf)
    
    #
    # hostap (C:/Code/test/UA_ZEPHYR_V2/modules/lib/hostap)
    #
    CONFIG_POSIX_MAX_FDS=4
    CONFIG_ZEPHYR_HOSTAP_MODULE=y
    # end of hostap (C:/Code/test/UA_ZEPHYR_V2/modules/lib/hostap)
    
    #
    # mcuboot (C:/Code/test/UA_ZEPHYR_V2/bootloader/mcuboot)
    #
    
    #
    # MCUboot
    #
    CONFIG_BOOT_SIGNATURE_KEY_FILE=""
    CONFIG_DT_FLASH_WRITE_BLOCK_SIZE=4
    # end of MCUboot
    
    CONFIG_ZEPHYR_MCUBOOT_MODULE=y
    # end of mcuboot (C:/Code/test/UA_ZEPHYR_V2/bootloader/mcuboot)
    
    #
    # mbedtls (C:/Code/test/UA_ZEPHYR_V2/modules/crypto/mbedtls)
    #
    CONFIG_ZEPHYR_MBEDTLS_MODULE=y
    CONFIG_MBEDTLS_BUILTIN=y
    # CONFIG_MBEDTLS_LIBRARY is not set
    # end of mbedtls (C:/Code/test/UA_ZEPHYR_V2/modules/crypto/mbedtls)
    
    #
    # trusted-firmware-m (C:/Code/test/UA_ZEPHYR_V2/modules/tee/tf-m/trusted-firmware-m)
    #
    # CONFIG_BOOTLOADER_MCUBOOT is not set
    CONFIG_ZEPHYR_TRUSTED_FIRMWARE_M_MODULE=y
    # end of trusted-firmware-m (C:/Code/test/UA_ZEPHYR_V2/modules/tee/tf-m/trusted-firmware-m)
    
    #
    # cjson (C:/Code/test/UA_ZEPHYR_V2/modules/lib/cjson)
    #
    CONFIG_ZEPHYR_CJSON_MODULE=y
    # end of cjson (C:/Code/test/UA_ZEPHYR_V2/modules/lib/cjson)
    
    #
    # azure-sdk-for-c (C:/Code/test/UA_ZEPHYR_V2/modules/lib/azure-sdk-for-c)
    #
    # CONFIG_AZURE_SDK is not set
    CONFIG_ZEPHYR_AZURE_SDK_FOR_C_MODULE=y
    # end of azure-sdk-for-c (C:/Code/test/UA_ZEPHYR_V2/modules/lib/azure-sdk-for-c)
    
    #
    # cirrus-logic (C:/Code/test/UA_ZEPHYR_V2/modules/hal/cirrus-logic)
    #
    # CONFIG_HW_CODEC_CIRRUS_LOGIC is not set
    CONFIG_ZEPHYR_CIRRUS_LOGIC_MODULE=y
    # end of cirrus-logic (C:/Code/test/UA_ZEPHYR_V2/modules/hal/cirrus-logic)
    
    #
    # openthread (C:/Code/test/UA_ZEPHYR_V2/modules/lib/openthread)
    #
    # CONFIG_OPENTHREAD is not set
    CONFIG_ZEPHYR_OPENTHREAD_MODULE=y
    # end of openthread (C:/Code/test/UA_ZEPHYR_V2/modules/lib/openthread)
    
    #
    # memfault-firmware-sdk (C:/Code/test/UA_ZEPHYR_V2/modules/lib/memfault-firmware-sdk)
    #
    # CONFIG_MEMFAULT is not set
    CONFIG_ZEPHYR_MEMFAULT_FIRMWARE_SDK_MODULE=y
    # end of memfault-firmware-sdk (C:/Code/test/UA_ZEPHYR_V2/modules/lib/memfault-firmware-sdk)
    
    #
    # canopennode (C:/Code/test/UA_ZEPHYR_V2/modules/lib/canopennode)
    #
    CONFIG_ZEPHYR_CANOPENNODE_MODULE=y
    # end of canopennode (C:/Code/test/UA_ZEPHYR_V2/modules/lib/canopennode)
    
    #
    # chre (C:/Code/test/UA_ZEPHYR_V2/modules/lib/chre)
    #
    CONFIG_ZEPHYR_CHRE_MODULE=y
    # CONFIG_CHRE is not set
    # end of chre (C:/Code/test/UA_ZEPHYR_V2/modules/lib/chre)
    
    #
    # fatfs (C:/Code/test/UA_ZEPHYR_V2/modules/fs/fatfs)
    #
    CONFIG_ZEPHYR_FATFS_MODULE=y
    # end of fatfs (C:/Code/test/UA_ZEPHYR_V2/modules/fs/fatfs)
    
    #
    # hal_nordic (C:/Code/test/UA_ZEPHYR_V2/modules/hal/nordic)
    #
    CONFIG_ZEPHYR_HAL_NORDIC_MODULE=y
    CONFIG_HAS_NORDIC_DRIVERS=y
    
    #
    # Nordic drivers
    #
    # CONFIG_NRF_802154_SOURCE_HAL_NORDIC is not set
    # CONFIG_NRF_802154_SER_RADIO is not set
    # end of Nordic drivers
    
    CONFIG_HAS_NRFX=y
    
    #
    # nrfx drivers
    #
    # CONFIG_NRFX_CLOCK is not set
    CONFIG_NRFX_DPPI=y
    # CONFIG_NRFX_EGU0 is not set
    CONFIG_NRFX_GPIOTE=y
    CONFIG_NRFX_IPC=y
    # CONFIG_NRFX_NVMC is not set
    # CONFIG_NRFX_POWER is not set
    # CONFIG_NRFX_RNG is not set
    # CONFIG_NRFX_RTC0 is not set
    # CONFIG_NRFX_RTC1 is not set
    CONFIG_NRFX_SPIM=y
    CONFIG_NRFX_SPIM0=y
    # CONFIG_NRFX_SYSTICK is not set
    # CONFIG_NRFX_TEMP is not set
    # CONFIG_NRFX_TIMER0 is not set
    # CONFIG_NRFX_TIMER1 is not set
    # CONFIG_NRFX_TIMER2 is not set
    # CONFIG_NRFX_TWIM0 is not set
    # CONFIG_NRFX_UARTE0 is not set
    # CONFIG_NRFX_WDT0 is not set
    
    #
    # Peripheral Resource Sharing module
    #
    # CONFIG_NRFX_PRS_BOX_0 is not set
    # CONFIG_NRFX_PRS_BOX_1 is not set
    # CONFIG_NRFX_PRS_BOX_2 is not set
    # CONFIG_NRFX_PRS_BOX_3 is not set
    # CONFIG_NRFX_PRS_BOX_4 is not set
    # end of Peripheral Resource Sharing module
    # end of nrfx drivers
    # end of hal_nordic (C:/Code/test/UA_ZEPHYR_V2/modules/hal/nordic)
    
    #
    # liblc3 (C:/Code/test/UA_ZEPHYR_V2/modules/lib/liblc3)
    #
    CONFIG_ZEPHYR_LIBLC3_MODULE=y
    # end of liblc3 (C:/Code/test/UA_ZEPHYR_V2/modules/lib/liblc3)
    
    #
    # littlefs (C:/Code/test/UA_ZEPHYR_V2/modules/fs/littlefs)
    #
    CONFIG_ZEPHYR_LITTLEFS_MODULE=y
    # end of littlefs (C:/Code/test/UA_ZEPHYR_V2/modules/fs/littlefs)
    
    #
    # loramac-node (C:/Code/test/UA_ZEPHYR_V2/modules/lib/loramac-node)
    #
    CONFIG_ZEPHYR_LORAMAC_NODE_MODULE=y
    # CONFIG_HAS_SEMTECH_RADIO_DRIVERS is not set
    # end of loramac-node (C:/Code/test/UA_ZEPHYR_V2/modules/lib/loramac-node)
    
    #
    # lvgl (C:/Code/test/UA_ZEPHYR_V2/modules/lib/gui/lvgl)
    #
    CONFIG_ZEPHYR_LVGL_MODULE=y
    # end of lvgl (C:/Code/test/UA_ZEPHYR_V2/modules/lib/gui/lvgl)
    
    #
    # lz4 (C:/Code/test/UA_ZEPHYR_V2/modules/lib/lz4)
    #
    CONFIG_ZEPHYR_LZ4_MODULE=y
    # CONFIG_LZ4 is not set
    # end of lz4 (C:/Code/test/UA_ZEPHYR_V2/modules/lib/lz4)
    
    #
    # nanopb (C:/Code/test/UA_ZEPHYR_V2/modules/lib/nanopb)
    #
    CONFIG_ZEPHYR_NANOPB_MODULE=y
    # CONFIG_NANOPB is not set
    # end of nanopb (C:/Code/test/UA_ZEPHYR_V2/modules/lib/nanopb)
    
    #
    # picolibc (C:/Code/test/UA_ZEPHYR_V2/modules/lib/picolibc)
    #
    # CONFIG_PICOLIBC_MODULE is not set
    CONFIG_ZEPHYR_PICOLIBC_MODULE=y
    # end of picolibc (C:/Code/test/UA_ZEPHYR_V2/modules/lib/picolibc)
    
    #
    # segger (C:/Code/test/UA_ZEPHYR_V2/modules/debug/segger)
    #
    CONFIG_ZEPHYR_SEGGER_MODULE=y
    CONFIG_HAS_SEGGER_RTT=y
    CONFIG_USE_SEGGER_RTT=y
    CONFIG_SEGGER_RTT_CUSTOM_LOCKING=y
    CONFIG_SEGGER_RTT_MAX_NUM_UP_BUFFERS=3
    CONFIG_SEGGER_RTT_MAX_NUM_DOWN_BUFFERS=3
    CONFIG_SEGGER_RTT_BUFFER_SIZE_UP=1024
    CONFIG_SEGGER_RTT_BUFFER_SIZE_DOWN=16
    CONFIG_SEGGER_RTT_PRINTF_BUFFER_SIZE=64
    CONFIG_SEGGER_RTT_MODE_NO_BLOCK_SKIP=y
    # CONFIG_SEGGER_RTT_MODE_NO_BLOCK_TRIM is not set
    # CONFIG_SEGGER_RTT_MODE_BLOCK_IF_FIFO_FULL is not set
    CONFIG_SEGGER_RTT_MODE=0
    # CONFIG_SEGGER_RTT_MEMCPY_USE_BYTELOOP is not set
    CONFIG_SEGGER_RTT_SECTION_NONE=y
    # CONFIG_SEGGER_RTT_SECTION_DTCM is not set
    # end of segger (C:/Code/test/UA_ZEPHYR_V2/modules/debug/segger)
    
    #
    # TraceRecorder (C:/Code/test/UA_ZEPHYR_V2/modules/debug/TraceRecorder)
    #
    CONFIG_ZEPHYR_TRACERECORDER_MODULE=y
    # end of TraceRecorder (C:/Code/test/UA_ZEPHYR_V2/modules/debug/TraceRecorder)
    
    #
    # uoscore-uedhoc (C:/Code/test/UA_ZEPHYR_V2/modules/lib/uoscore-uedhoc)
    #
    CONFIG_ZEPHYR_UOSCORE_UEDHOC_MODULE=y
    # end of uoscore-uedhoc (C:/Code/test/UA_ZEPHYR_V2/modules/lib/uoscore-uedhoc)
    
    #
    # zcbor (C:/Code/test/UA_ZEPHYR_V2/modules/lib/zcbor)
    #
    CONFIG_ZEPHYR_ZCBOR_MODULE=y
    # CONFIG_ZCBOR is not set
    # end of zcbor (C:/Code/test/UA_ZEPHYR_V2/modules/lib/zcbor)
    
    #
    # zscilib (C:/Code/test/UA_ZEPHYR_V2/modules/lib/zscilib)
    #
    # CONFIG_ZSL is not set
    CONFIG_ZEPHYR_ZSCILIB_MODULE=y
    # end of zscilib (C:/Code/test/UA_ZEPHYR_V2/modules/lib/zscilib)
    
    #
    # nrfxlib (C:/Code/test/UA_ZEPHYR_V2/nrfxlib)
    #
    
    #
    # Nordic nrfxlib
    #
    CONFIG_NRF_MODEM_SHMEM_CTRL_SIZE=0x4e8
    # CONFIG_NFC_T2T_NRFXLIB is not set
    # CONFIG_NFC_T4T_NRFXLIB is not set
    CONFIG_MPSL=y
    CONFIG_MPSL_BUILD_TYPE_LIB=y
    
    #
    # Crypto libraries for nRF5x SOCs.
    #
    CONFIG_NRFXLIB_CRYPTO=y
    CONFIG_NRF_OBERON=y
    # CONFIG_NRF_CC310_BL is not set
    # end of Crypto libraries for nRF5x SOCs.
    
    #
    # nrf_security module
    #
    # CONFIG_NORDIC_SECURITY_BACKEND is not set
    # CONFIG_NRF_SECURITY is not set
    # end of nrf_security module
    
    # CONFIG_NRF_RPC is not set
    CONFIG_NRF_802154_SOURCE_NRFXLIB=y
    # CONFIG_GZLL is not set
    # CONFIG_NRF_DM is not set
    # CONFIG_LC3_PLC_DISABLED is not set
    CONFIG_LC3_ENC_CHAN_MAX=1
    CONFIG_LC3_DEC_CHAN_MAX=1
    
    #
    # Encoder sample rates
    #
    CONFIG_LC3_ENC_SAMPLE_RATE_8KHZ_SUPPORT=y
    CONFIG_LC3_ENC_SAMPLE_RATE_16KHZ_SUPPORT=y
    CONFIG_LC3_ENC_SAMPLE_RATE_24KHZ_SUPPORT=y
    CONFIG_LC3_ENC_SAMPLE_RATE_32KHZ_SUPPORT=y
    CONFIG_LC3_ENC_SAMPLE_RATE_441KHZ_SUPPORT=y
    CONFIG_LC3_ENC_SAMPLE_RATE_48KHZ_SUPPORT=y
    # end of Encoder sample rates
    
    #
    # Decoder sample rates
    #
    CONFIG_LC3_DEC_SAMPLE_RATE_8KHZ_SUPPORT=y
    CONFIG_LC3_DEC_SAMPLE_RATE_16KHZ_SUPPORT=y
    CONFIG_LC3_DEC_SAMPLE_RATE_24KHZ_SUPPORT=y
    CONFIG_LC3_DEC_SAMPLE_RATE_32KHZ_SUPPORT=y
    CONFIG_LC3_DEC_SAMPLE_RATE_441KHZ_SUPPORT=y
    CONFIG_LC3_DEC_SAMPLE_RATE_48KHZ_SUPPORT=y
    # end of Decoder sample rates
    
    # CONFIG_NRF_FUEL_GAUGE is not set
    # end of Nordic nrfxlib
    
    CONFIG_ZEPHYR_NRFXLIB_MODULE=y
    # end of nrfxlib (C:/Code/test/UA_ZEPHYR_V2/nrfxlib)
    
    #
    # connectedhomeip (C:/Code/test/UA_ZEPHYR_V2/modules/lib/matter)
    #
    # CONFIG_CHIP is not set
    # CONFIG_CHIP_LOG_SIZE_OPTIMIZATION is not set
    CONFIG_ZEPHYR_CONNECTEDHOMEIP_MODULE=y
    # end of connectedhomeip (C:/Code/test/UA_ZEPHYR_V2/modules/lib/matter)
    
    #
    # Optional modules. Make sure they're installed, via the project manifest.
    #
    CONFIG_HAS_CMSIS_CORE=y
    CONFIG_HAS_CMSIS_CORE_M=y
    # CONFIG_CMSIS_DSP is not set
    # CONFIG_CMSIS_NN is not set
    CONFIG_LIBMETAL=y
    CONFIG_LIBMETAL_SRC_PATH="libmetal"
    # CONFIG_LVGL is not set
    # CONFIG_HAS_MEC_HAL is not set
    # CONFIG_HAS_MPFS_HAL is not set
    CONFIG_OPENAMP=y
    CONFIG_OPENAMP_SRC_PATH="open-amp"
    CONFIG_OPENAMP_MASTER=y
    CONFIG_OPENAMP_SLAVE=y
    # CONFIG_SOF is not set
    # CONFIG_MIPI_SYST_LIB is not set
    # CONFIG_HAS_TELINK_DRIVERS is not set
    # CONFIG_TINYCRYPT_CTR_PRNG is not set
    # CONFIG_TINYCRYPT_SHA256 is not set
    # CONFIG_TINYCRYPT_ECC_DH is not set
    # CONFIG_TINYCRYPT_ECC_DSA is not set
    CONFIG_TINYCRYPT_AES=y
    # CONFIG_TINYCRYPT_AES_CBC is not set
    # CONFIG_TINYCRYPT_AES_CTR is not set
    # CONFIG_TINYCRYPT_AES_CCM is not set
    # CONFIG_TINYCRYPT_AES_CMAC is not set
    # CONFIG_MCUBOOT_BOOTUTIL_LIB is not set
    
    #
    # Unavailable modules, please install those via the project manifest.
    #
    
    #
    # hal_gigadevice module not available.
    #
    
    #
    # Trusted-firmware-a module not available.
    #
    
    #
    # THRIFT module not available.
    #
    # end of Modules
    
    CONFIG_BOARD_REVISION="$BOARD_REVISION"
    # CONFIG_NET_DRIVERS is not set
    # CONFIG_BOARD_BL5340_DVK_CPUNET is not set
    CONFIG_BOARD_BL5340PA_DVK_CPUNET=y
    
    #
    # Board Options
    #
    CONFIG_DOMAIN_CPUAPP_BOARD="bl5340pa_dvk_cpuapp"
    # end of Board Options
    
    # CONFIG_SOC_SERIES_BEETLE is not set
    # CONFIG_SOC_SERIES_ARM_DESIGNSTART is not set
    # CONFIG_SOC_SERIES_FVP_AEMV8R_AARCH32 is not set
    # CONFIG_SOC_SERIES_MPS2 is not set
    # CONFIG_SOC_SERIES_MPS3 is not set
    # CONFIG_SOC_SERIES_MUSCA_B1 is not set
    # CONFIG_SOC_SERIES_MUSCA_S1 is not set
    # CONFIG_SOC_SERIES_AST10X0 is not set
    # CONFIG_SOC_SERIES_SAMC20 is not set
    # CONFIG_SOC_SERIES_SAMC21 is not set
    # CONFIG_SOC_SERIES_SAMD20 is not set
    # CONFIG_SOC_SERIES_SAMD21 is not set
    # CONFIG_SOC_SERIES_SAMD51 is not set
    # CONFIG_SOC_SERIES_SAME51 is not set
    # CONFIG_SOC_SERIES_SAME53 is not set
    # CONFIG_SOC_SERIES_SAME54 is not set
    # CONFIG_SOC_SERIES_SAML21 is not set
    # CONFIG_SOC_SERIES_SAMR21 is not set
    # CONFIG_SOC_SERIES_SAMR34 is not set
    # CONFIG_SOC_SERIES_SAMR35 is not set
    # CONFIG_SOC_SERIES_SAM3X is not set
    # CONFIG_SOC_SERIES_SAM4E is not set
    # CONFIG_SOC_SERIES_SAM4L is not set
    # CONFIG_SOC_SERIES_SAM4S is not set
    # CONFIG_SOC_SERIES_SAME70 is not set
    # CONFIG_SOC_SERIES_SAMV71 is not set
    # CONFIG_SOC_SERIES_VALKYRIE is not set
    # CONFIG_SOC_SERIES_VIPER is not set
    # CONFIG_SOC_SERIES_PSOC62 is not set
    # CONFIG_SOC_SERIES_PSOC63 is not set
    # CONFIG_SOC_SERIES_GD32A50X is not set
    # CONFIG_SOC_SERIES_GD32E10X is not set
    # CONFIG_SOC_SERIES_GD32E50X is not set
    # CONFIG_SOC_SERIES_GD32F3X0 is not set
    # CONFIG_SOC_SERIES_GD32F403 is not set
    # CONFIG_SOC_SERIES_GD32F4XX is not set
    # CONFIG_SOC_SERIES_GD32L23X is not set
    # CONFIG_SOC_SERIES_PSOC_60 is not set
    # CONFIG_SOC_SERIES_PSOC_61 is not set
    # CONFIG_SOC_SERIES_PSOC_62 is not set
    # CONFIG_SOC_SERIES_PSOC_63 is not set
    # CONFIG_SOC_SERIES_PSOC_64 is not set
    # CONFIG_SOC_SERIES_XMC_4XXX is not set
    # CONFIG_SOC_SERIES_CYCLONE5 is not set
    # CONFIG_SOC_SERIES_MEC1501X is not set
    # CONFIG_SOC_SERIES_MEC1701X is not set
    # CONFIG_SOC_SERIES_MEC172X is not set
    # CONFIG_SOC_SERIES_NRF51X is not set
    # CONFIG_SOC_SERIES_NRF52X is not set
    CONFIG_SOC_SERIES_NRF53X=y
    # CONFIG_SOC_SERIES_NRF91X is not set
    # CONFIG_SOC_SERIES_NPCX7 is not set
    # CONFIG_SOC_SERIES_NPCX9 is not set
    # CONFIG_SOC_SERIES_M48X is not set
    # CONFIG_SOC_SERIES_IMX_6X_M4 is not set
    # CONFIG_SOC_SERIES_IMX7_M4 is not set
    # CONFIG_SOC_SERIES_IMX8ML_M7 is not set
    # CONFIG_SOC_SERIES_IMX8MM_M4 is not set
    # CONFIG_SOC_SERIES_IMX8MQ_M4 is not set
    # CONFIG_SOC_SERIES_IMX_RT5XX is not set
    # CONFIG_SOC_SERIES_IMX_RT6XX is not set
    # CONFIG_SOC_SERIES_IMX_RT is not set
    # CONFIG_SOC_SERIES_KINETIS_K2X is not set
    # CONFIG_SOC_SERIES_KINETIS_K6X is not set
    # CONFIG_SOC_SERIES_KINETIS_K8X is not set
    # CONFIG_SOC_SERIES_KINETIS_KE1XF is not set
    # CONFIG_SOC_SERIES_KINETIS_KL2X is not set
    # CONFIG_SOC_SERIES_KINETIS_KV5X is not set
    # CONFIG_SOC_SERIES_KINETIS_KWX is not set
    # CONFIG_SOC_SERIES_LPC11U6X is not set
    # CONFIG_SOC_SERIES_LPC51U68 is not set
    # CONFIG_SOC_SERIES_LPC54XXX is not set
    # CONFIG_SOC_SERIES_LPC55XXX is not set
    # CONFIG_SOC_SERIES_S32ZE_R52 is not set
    # CONFIG_SOC_EOS_S3 is not set
    # CONFIG_SOC_SERIES_RCAR_GEN3 is not set
    # CONFIG_SOC_SERIES_DA1469X is not set
    # CONFIG_SOC_SERIES_RP2XXX is not set
    # CONFIG_SOC_SERIES_EFM32GG11B is not set
    # CONFIG_SOC_SERIES_EFM32HG is not set
    # CONFIG_SOC_SERIES_EFM32JG12B is not set
    # CONFIG_SOC_SERIES_EFM32PG12B is not set
    # CONFIG_SOC_SERIES_EFM32PG1B is not set
    # CONFIG_SOC_SERIES_EFM32WG is not set
    # CONFIG_SOC_SERIES_EFR32BG13P is not set
    # CONFIG_SOC_SERIES_EFR32BG22 is not set
    # CONFIG_SOC_SERIES_EFR32FG13P is not set
    # CONFIG_SOC_SERIES_EFR32FG1P is not set
    # CONFIG_SOC_SERIES_EFR32MG12P is not set
    # CONFIG_SOC_SERIES_EFR32MG21 is not set
    # CONFIG_SOC_SERIES_EFR32MG24 is not set
    # CONFIG_SOC_SERIES_STM32C0X is not set
    # CONFIG_SOC_SERIES_STM32F0X is not set
    # CONFIG_SOC_SERIES_STM32F1X is not set
    # CONFIG_SOC_SERIES_STM32F2X is not set
    # CONFIG_SOC_SERIES_STM32F3X is not set
    # CONFIG_SOC_SERIES_STM32F4X is not set
    # CONFIG_SOC_SERIES_STM32F7X is not set
    # CONFIG_SOC_SERIES_STM32G0X is not set
    # CONFIG_SOC_SERIES_STM32G4X is not set
    # CONFIG_SOC_SERIES_STM32H5X is not set
    # CONFIG_SOC_SERIES_STM32H7X is not set
    # CONFIG_SOC_SERIES_STM32L0X is not set
    # CONFIG_SOC_SERIES_STM32L1X is not set
    # CONFIG_SOC_SERIES_STM32L4X is not set
    # CONFIG_SOC_SERIES_STM32L5X is not set
    # CONFIG_SOC_SERIES_STM32MP1X is not set
    # CONFIG_SOC_SERIES_STM32U5X is not set
    # CONFIG_SOC_SERIES_STM32WBX is not set
    # CONFIG_SOC_SERIES_STM32WLX is not set
    # CONFIG_SOC_TI_LM3S6965 is not set
    # CONFIG_SOC_SERIES_CC13X2_CC26X2 is not set
    # CONFIG_SOC_SERIES_CC13X2X7_CC26X2X7 is not set
    # CONFIG_SOC_SERIES_CC32XX is not set
    # CONFIG_SOC_SERIES_MSP432P4XX is not set
    # CONFIG_SOC_SERIES_XILINX_XC7ZXXX is not set
    # CONFIG_SOC_SERIES_XILINX_XC7ZXXXS is not set
    # CONFIG_SOC_XILINX_ZYNQMP_RPU is not set
    
    #
    # Hardware Configuration
    #
    CONFIG_CPU_HAS_ARM_MPU=y
    CONFIG_HAS_SWO=y
    CONFIG_SOC_FAMILY="nordic_nrf"
    CONFIG_SOC_FAMILY_NRF=y
    CONFIG_HAS_HW_NRF_ACL=y
    CONFIG_HAS_HW_NRF_CCM=y
    CONFIG_HAS_HW_NRF_CCM_LFLEN_8BIT=y
    CONFIG_HAS_HW_NRF_CLOCK=y
    CONFIG_HAS_HW_NRF_DPPIC=y
    CONFIG_HAS_HW_NRF_ECB=y
    CONFIG_HAS_HW_NRF_EGU0=y
    CONFIG_HAS_HW_NRF_GPIO0=y
    CONFIG_HAS_HW_NRF_GPIO1=y
    CONFIG_HAS_HW_NRF_GPIOTE=y
    CONFIG_HAS_HW_NRF_IPC=y
    CONFIG_HAS_HW_NRF_NVMC_PE=y
    CONFIG_HAS_HW_NRF_POWER=y
    CONFIG_HAS_HW_NRF_RADIO_BLE_2M=y
    CONFIG_HAS_HW_NRF_RADIO_BLE_CODED=y
    CONFIG_HAS_HW_NRF_RADIO_DFE=y
    CONFIG_HAS_HW_NRF_RADIO_IEEE802154=y
    CONFIG_HAS_HW_NRF_RNG=y
    CONFIG_HAS_HW_NRF_SPIM0=y
    CONFIG_HAS_HW_NRF_SWI0=y
    CONFIG_HAS_HW_NRF_SWI1=y
    CONFIG_HAS_HW_NRF_SWI2=y
    CONFIG_HAS_HW_NRF_SWI3=y
    CONFIG_HAS_HW_NRF_TEMP=y
    CONFIG_HAS_HW_NRF_TIMER0=y
    CONFIG_HAS_HW_NRF_TIMER1=y
    CONFIG_HAS_HW_NRF_TIMER2=y
    CONFIG_HAS_HW_NRF_VMC=y
    CONFIG_HAS_HW_NRF_WDT0=y
    CONFIG_SOC_NRF5340_CPUNET=y
    # CONFIG_SOC_NRF5340_CPUAPP_QKAA is not set
    CONFIG_SOC_NRF5340_CPUNET_QKAA=y
    CONFIG_SOC_NRF53_ANOMALY_160_WORKAROUND_NEEDED=y
    CONFIG_SOC_NRF53_ANOMALY_160_WORKAROUND=y
    CONFIG_NRF_ENABLE_CACHE=y
    CONFIG_NRF53_SYNC_RTC=y
    # CONFIG_SYNC_RTC_LOG_LEVEL_OFF is not set
    # CONFIG_SYNC_RTC_LOG_LEVEL_ERR is not set
    # CONFIG_SYNC_RTC_LOG_LEVEL_WRN is not set
    # CONFIG_SYNC_RTC_LOG_LEVEL_INF is not set
    # CONFIG_SYNC_RTC_LOG_LEVEL_DBG is not set
    CONFIG_SYNC_RTC_LOG_LEVEL_DEFAULT=y
    CONFIG_SYNC_RTC_LOG_LEVEL=3
    CONFIG_NRF53_SYNC_RTC_INIT_PRIORITY=90
    CONFIG_NRF_RTC_TIMER_USER_CHAN_COUNT=1
    CONFIG_NRF53_SYNC_RTC_LOG_TIMESTAMP=y
    CONFIG_NRF53_SYNC_RTC_IPM_OUT=8
    CONFIG_NRF53_SYNC_RTC_IPM_IN=7
    CONFIG_IPM_MSG_CH_7_ENABLE=y
    CONFIG_IPM_MSG_CH_7_RX=y
    CONFIG_NRF_SOC_SECURE_SUPPORTED=y
    CONFIG_NRF_APPROTECT_USE_UICR=y
    # CONFIG_NRF_APPROTECT_LOCK is not set
    # CONFIG_NRF_APPROTECT_USER_HANDLING is not set
    # CONFIG_NRF_TRACE_PORT is not set
    # CONFIG_BUILD_OUTPUT_INFO_HEADER is not set
    # CONFIG_SOC_LOG_LEVEL_OFF is not set
    # CONFIG_SOC_LOG_LEVEL_ERR is not set
    # CONFIG_SOC_LOG_LEVEL_WRN is not set
    # CONFIG_SOC_LOG_LEVEL_INF is not set
    # CONFIG_SOC_LOG_LEVEL_DBG is not set
    CONFIG_SOC_LOG_LEVEL_DEFAULT=y
    CONFIG_SOC_LOG_LEVEL=3
    # end of Hardware Configuration
    
    CONFIG_SOC_COMPATIBLE_NRF=y
    
    #
    # ARM Options
    #
    CONFIG_ARCH="arm"
    CONFIG_CPU_CORTEX=y
    # CONFIG_CODE_DATA_RELOCATION_SRAM is not set
    CONFIG_ARM_ON_ENTER_CPU_IDLE_HOOK=y
    CONFIG_ARM_ON_EXIT_CPU_IDLE=y
    CONFIG_CPU_CORTEX_M=y
    # CONFIG_ARM_ZIMAGE_HEADER is not set
    CONFIG_ISA_THUMB2=y
    CONFIG_ASSEMBLER_ISA_THUMB2=y
    CONFIG_COMPILER_ISA_THUMB2=y
    CONFIG_STACK_ALIGN_DOUBLE_WORD=y
    # CONFIG_RUNTIME_NMI is not set
    CONFIG_FAULT_DUMP=2
    CONFIG_BUILTIN_STACK_GUARD=y
    CONFIG_ARM_STACK_PROTECTION=y
    CONFIG_CPU_CORTEX_M33=y
    CONFIG_CPU_CORTEX_M_HAS_SYSTICK=y
    CONFIG_CPU_CORTEX_M_HAS_DWT=y
    CONFIG_CPU_CORTEX_M_HAS_BASEPRI=y
    CONFIG_CPU_CORTEX_M_HAS_VTOR=y
    CONFIG_CPU_CORTEX_M_HAS_SPLIM=y
    CONFIG_CPU_CORTEX_M_HAS_PROGRAMMABLE_FAULT_PRIOS=y
    CONFIG_CPU_CORTEX_M_HAS_CMSE=y
    CONFIG_ARMV7_M_ARMV8_M_MAINLINE=y
    CONFIG_ARMV8_M_MAINLINE=y
    
    #
    # ARM Cortex-M0/M0+/M1/M3/M4/M7/M23/M33 options
    #
    CONFIG_GEN_ISR_TABLES=y
    CONFIG_ZERO_LATENCY_IRQS=y
    CONFIG_ZERO_LATENCY_LEVELS=1
    # CONFIG_SW_VECTOR_RELAY is not set
    # CONFIG_CORTEX_M_DWT is not set
    # CONFIG_CORTEX_M_DEBUG_MONITOR_HOOK is not set
    # CONFIG_TRAP_UNALIGNED_ACCESS is not set
    # end of ARM Cortex-M0/M0+/M1/M3/M4/M7/M23/M33 options
    
    CONFIG_NULL_POINTER_EXCEPTION_DETECTION_NONE=y
    # CONFIG_NULL_POINTER_EXCEPTION_DETECTION_DWT is not set
    # CONFIG_NULL_POINTER_EXCEPTION_DETECTION_MPU is not set
    CONFIG_GEN_IRQ_VECTOR_TABLE=y
    CONFIG_ARM_MPU=y
    CONFIG_ARM_MPU_REGION_MIN_ALIGN_AND_SIZE=32
    CONFIG_MPU_STACK_GUARD=y
    # CONFIG_MPU_ALLOW_FLASH_WRITE is not set
    # CONFIG_MPU_DISABLE_BACKGROUND_MAP is not set
    # CONFIG_CUSTOM_SECTION_ALIGN is not set
    CONFIG_CUSTOM_SECTION_MIN_ALIGN_SIZE=32
    # end of ARM Options
    
    CONFIG_ARM=y
    CONFIG_ARCH_IS_SET=y
    
    #
    # General Architecture Options
    #
    # CONFIG_SEMIHOST is not set
    # CONFIG_ARCH_LOG_LEVEL_OFF is not set
    # CONFIG_ARCH_LOG_LEVEL_ERR is not set
    # CONFIG_ARCH_LOG_LEVEL_WRN is not set
    # CONFIG_ARCH_LOG_LEVEL_INF is not set
    # CONFIG_ARCH_LOG_LEVEL_DBG is not set
    CONFIG_ARCH_LOG_LEVEL_DEFAULT=y
    CONFIG_ARCH_LOG_LEVEL=3
    CONFIG_LITTLE_ENDIAN=y
    CONFIG_HW_STACK_PROTECTION=y
    # CONFIG_USERSPACE is not set
    CONFIG_KOBJECT_TEXT_AREA=256
    CONFIG_KOBJECT_DATA_AREA_RESERVE_EXTRA_PERCENT=100
    CONFIG_KOBJECT_RODATA_AREA_EXTRA_BYTES=16
    CONFIG_GEN_PRIV_STACKS=y
    # CONFIG_STACK_GROWS_UP is not set
    
    #
    # Interrupt Configuration
    #
    # CONFIG_DYNAMIC_INTERRUPTS is not set
    CONFIG_ARCH_IRQ_VECTOR_TABLE_ALIGN=4
    CONFIG_IRQ_VECTOR_TABLE_JUMP_BY_ADDRESS=y
    # CONFIG_IRQ_VECTOR_TABLE_JUMP_BY_CODE is not set
    CONFIG_GEN_SW_ISR_TABLE=y
    CONFIG_ARCH_SW_ISR_TABLE_ALIGN=4
    CONFIG_GEN_IRQ_START_VECTOR=0
    # CONFIG_EXTRA_EXCEPTION_INFO is not set
    # CONFIG_SIMPLIFIED_EXCEPTION_CODES is not set
    # end of Interrupt Configuration
    # end of General Architecture Options
    
    CONFIG_ARCH_HAS_SINGLE_THREAD_SUPPORT=y
    CONFIG_ARCH_HAS_TIMING_FUNCTIONS=y
    CONFIG_ARCH_HAS_STACK_PROTECTION=y
    CONFIG_ARCH_HAS_USERSPACE=y
    CONFIG_ARCH_HAS_EXECUTABLE_PAGE_BIT=y
    CONFIG_ARCH_HAS_RAMFUNC_SUPPORT=y
    CONFIG_ARCH_HAS_NESTED_EXCEPTION_DETECTION=y
    CONFIG_ARCH_SUPPORTS_COREDUMP=y
    CONFIG_ARCH_SUPPORTS_ARCH_HW_INIT=y
    CONFIG_ARCH_HAS_EXTRA_EXCEPTION_INFO=y
    CONFIG_ARCH_HAS_THREAD_LOCAL_STORAGE=y
    CONFIG_ARCH_HAS_SUSPEND_TO_RAM=y
    CONFIG_ARCH_HAS_THREAD_ABORT=y
    CONFIG_ARCH_HAS_CODE_DATA_RELOCATION=y
    CONFIG_CPU_HAS_MPU=y
    CONFIG_MPU=y
    # CONFIG_MPU_LOG_LEVEL_OFF is not set
    # CONFIG_MPU_LOG_LEVEL_ERR is not set
    # CONFIG_MPU_LOG_LEVEL_WRN is not set
    # CONFIG_MPU_LOG_LEVEL_INF is not set
    # CONFIG_MPU_LOG_LEVEL_DBG is not set
    CONFIG_MPU_LOG_LEVEL_DEFAULT=y
    CONFIG_MPU_LOG_LEVEL=3
    CONFIG_MPU_REQUIRES_NON_OVERLAPPING_REGIONS=y
    CONFIG_MPU_GAP_FILLING=y
    CONFIG_SRAM_REGION_PERMISSIONS=y
    
    #
    # Floating Point Options
    #
    # end of Floating Point Options
    
    #
    # Cache Options
    #
    # end of Cache Options
    
    CONFIG_TOOLCHAIN_HAS_BUILTIN_FFS=y
    
    #
    # General Kernel Options
    #
    # CONFIG_KERNEL_LOG_LEVEL_OFF is not set
    # CONFIG_KERNEL_LOG_LEVEL_ERR is not set
    # CONFIG_KERNEL_LOG_LEVEL_WRN is not set
    # CONFIG_KERNEL_LOG_LEVEL_INF is not set
    # CONFIG_KERNEL_LOG_LEVEL_DBG is not set
    CONFIG_KERNEL_LOG_LEVEL_DEFAULT=y
    CONFIG_KERNEL_LOG_LEVEL=3
    CONFIG_MULTITHREADING=y
    CONFIG_NUM_COOP_PRIORITIES=16
    CONFIG_NUM_PREEMPT_PRIORITIES=15
    CONFIG_MAIN_THREAD_PRIORITY=0
    CONFIG_COOP_ENABLED=y
    CONFIG_PREEMPT_ENABLED=y
    CONFIG_PRIORITY_CEILING=-127
    # CONFIG_SCHED_DEADLINE is not set
    # CONFIG_SCHED_CPU_MASK is not set
    CONFIG_IDLE_STACK_SIZE=512
    CONFIG_ISR_STACK_SIZE=2048
    CONFIG_THREAD_STACK_INFO=y
    # CONFIG_THREAD_CUSTOM_DATA is not set
    CONFIG_ERRNO=y
    CONFIG_SCHED_DUMB=y
    # CONFIG_SCHED_SCALABLE is not set
    # CONFIG_SCHED_MULTIQ is not set
    # CONFIG_WAITQ_SCALABLE is not set
    CONFIG_WAITQ_DUMB=y
    
    #
    # Kernel Debugging and Metrics
    #
    CONFIG_BOOT_BANNER=y
    CONFIG_BOOT_DELAY=0
    # CONFIG_THREAD_MONITOR is not set
    CONFIG_THREAD_NAME=y
    CONFIG_THREAD_MAX_NAME_LEN=32
    # CONFIG_THREAD_RUNTIME_STATS is not set
    # end of Kernel Debugging and Metrics
    
    #
    # Work Queue Options
    #
    CONFIG_SYSTEM_WORKQUEUE_PRIORITY=-1
    # CONFIG_SYSTEM_WORKQUEUE_NO_YIELD is not set
    # end of Work Queue Options
    
    #
    # Atomic Operations
    #
    CONFIG_ATOMIC_OPERATIONS_BUILTIN=y
    # end of Atomic Operations
    
    #
    # Timer API Options
    #
    CONFIG_TIMESLICING=y
    CONFIG_TIMESLICE_SIZE=0
    CONFIG_TIMESLICE_PRIORITY=0
    # CONFIG_TIMESLICE_PER_THREAD is not set
    CONFIG_POLL=y
    # end of Timer API Options
    
    #
    # Other Kernel Object Options
    #
    # CONFIG_MEM_SLAB_TRACE_MAX_UTILIZATION is not set
    CONFIG_NUM_MBOX_ASYNC_MSGS=10
    # CONFIG_EVENTS is not set
    # CONFIG_PIPES is not set
    CONFIG_KERNEL_MEM_POOL=y
    # end of Other Kernel Object Options
    
    CONFIG_ARCH_HAS_CUSTOM_SWAP_TO_MAIN=y
    CONFIG_SWAP_NONATOMIC=y
    CONFIG_SYS_CLOCK_EXISTS=y
    CONFIG_TIMEOUT_64BIT=y
    CONFIG_SYS_CLOCK_MAX_TIMEOUT_DAYS=365
    CONFIG_XIP=y
    
    #
    # Initialization Priorities
    #
    CONFIG_KERNEL_INIT_PRIORITY_OBJECTS=30
    CONFIG_KERNEL_INIT_PRIORITY_DEFAULT=40
    CONFIG_KERNEL_INIT_PRIORITY_DEVICE=50
    CONFIG_APPLICATION_INIT_PRIORITY=90
    # end of Initialization Priorities
    
    #
    # Security Options
    #
    # CONFIG_STACK_CANARIES is not set
    CONFIG_STACK_POINTER_RANDOM=0
    # end of Security Options
    
    #
    # SMP Options
    #
    CONFIG_MP_NUM_CPUS=1
    # end of SMP Options
    
    CONFIG_TICKLESS_KERNEL=y
    CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE=y
    # CONFIG_THREAD_LOCAL_STORAGE is not set
    # end of General Kernel Options
    
    #
    # Device Options
    #
    # end of Device Options
    
    #
    # Virtual Memory Support
    #
    # end of Virtual Memory Support
    
    #
    # Device Drivers
    #
    # CONFIG_ADC is not set
    # CONFIG_AUDIO is not set
    # CONFIG_BBRAM is not set
    # CONFIG_CACHE is not set
    # CONFIG_CAN is not set
    # CONFIG_CLOCK_CONTROL_LOG_LEVEL_OFF is not set
    # CONFIG_CLOCK_CONTROL_LOG_LEVEL_ERR is not set
    # CONFIG_CLOCK_CONTROL_LOG_LEVEL_WRN is not set
    # CONFIG_CLOCK_CONTROL_LOG_LEVEL_INF is not set
    # CONFIG_CLOCK_CONTROL_LOG_LEVEL_DBG is not set
    CONFIG_CLOCK_CONTROL_LOG_LEVEL_DEFAULT=y
    CONFIG_CLOCK_CONTROL_LOG_LEVEL=3
    CONFIG_CLOCK_CONTROL_NRF_FORCE_ALT=y
    CONFIG_CLOCK_CONTROL_NRF=y
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_RC is not set
    CONFIG_CLOCK_CONTROL_NRF_K32SRC_XTAL=y
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_SYNTH is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_500PPM is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_250PPM is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_150PPM is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_100PPM is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_75PPM is not set
    CONFIG_CLOCK_CONTROL_NRF_K32SRC_50PPM=y
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_30PPM is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_20PPM is not set
    CONFIG_CLOCK_CONTROL_NRF_ACCURACY=50
    CONFIG_CONSOLE=y
    CONFIG_CONSOLE_INPUT_MAX_LINE_LEN=128
    CONFIG_CONSOLE_HAS_DRIVER=y
    CONFIG_CONSOLE_INIT_PRIORITY=40
    # CONFIG_RAM_CONSOLE is not set
    CONFIG_RTT_CONSOLE=y
    CONFIG_RTT_TX_RETRY_CNT=2
    CONFIG_RTT_TX_RETRY_DELAY_MS=2
    # CONFIG_RTT_TX_RETRY_IN_INTERRUPT is not set
    # CONFIG_IPM_CONSOLE_SENDER is not set
    # CONFIG_IPM_CONSOLE_RECEIVER is not set
    # CONFIG_UART_MCUMGR is not set
    # CONFIG_UART_CONSOLE_LOG_LEVEL_OFF is not set
    # CONFIG_UART_CONSOLE_LOG_LEVEL_ERR is not set
    # CONFIG_UART_CONSOLE_LOG_LEVEL_WRN is not set
    # CONFIG_UART_CONSOLE_LOG_LEVEL_INF is not set
    # CONFIG_UART_CONSOLE_LOG_LEVEL_DBG is not set
    CONFIG_UART_CONSOLE_LOG_LEVEL_DEFAULT=y
    CONFIG_UART_CONSOLE_LOG_LEVEL=3
    # CONFIG_GSM_MUX is not set
    # CONFIG_EFI_CONSOLE is not set
    # CONFIG_COREDUMP_DEVICE is not set
    # CONFIG_COUNTER is not set
    # CONFIG_CRYPTO is not set
    # CONFIG_DAC is not set
    # CONFIG_DAI is not set
    # CONFIG_DISK_DRIVERS is not set
    # CONFIG_DMA is not set
    # CONFIG_EDAC is not set
    # CONFIG_EEPROM is not set
    # CONFIG_ENTROPY_LOG_LEVEL_OFF is not set
    # CONFIG_ENTROPY_LOG_LEVEL_ERR is not set
    # CONFIG_ENTROPY_LOG_LEVEL_WRN is not set
    # CONFIG_ENTROPY_LOG_LEVEL_INF is not set
    # CONFIG_ENTROPY_LOG_LEVEL_DBG is not set
    CONFIG_ENTROPY_LOG_LEVEL_DEFAULT=y
    CONFIG_ENTROPY_LOG_LEVEL=3
    CONFIG_ENTROPY_INIT_PRIORITY=50
    CONFIG_ENTROPY_NRF5_RNG=y
    # CONFIG_ENTROPY_NRF5_BIAS_CORRECTION is not set
    CONFIG_ENTROPY_NRF5_THR_POOL_SIZE=8
    CONFIG_ENTROPY_NRF5_THR_THRESHOLD=4
    CONFIG_ENTROPY_NRF5_ISR_POOL_SIZE=16
    CONFIG_ENTROPY_NRF5_ISR_THRESHOLD=12
    CONFIG_ENTROPY_HAS_DRIVER=y
    # CONFIG_ESPI is not set
    # CONFIG_FLASH is not set
    # CONFIG_FPGA is not set
    # CONFIG_FUEL_GAUGE is not set
    # CONFIG_GPIO_LOG_LEVEL_OFF is not set
    # CONFIG_GPIO_LOG_LEVEL_ERR is not set
    # CONFIG_GPIO_LOG_LEVEL_WRN is not set
    # CONFIG_GPIO_LOG_LEVEL_INF is not set
    # CONFIG_GPIO_LOG_LEVEL_DBG is not set
    CONFIG_GPIO_LOG_LEVEL_DEFAULT=y
    CONFIG_GPIO_LOG_LEVEL=3
    # CONFIG_GPIO_GET_DIRECTION is not set
    # CONFIG_GPIO_GET_CONFIG is not set
    # CONFIG_GPIO_HOGS is not set
    # CONFIG_GPIO_ENABLE_DISABLE_INTERRUPT is not set
    CONFIG_GPIO_NRFX=y
    # CONFIG_FXL6408_LOG_LEVEL_OFF is not set
    # CONFIG_FXL6408_LOG_LEVEL_ERR is not set
    # CONFIG_FXL6408_LOG_LEVEL_WRN is not set
    # CONFIG_FXL6408_LOG_LEVEL_INF is not set
    # CONFIG_FXL6408_LOG_LEVEL_DBG is not set
    CONFIG_FXL6408_LOG_LEVEL_DEFAULT=y
    CONFIG_FXL6408_LOG_LEVEL=3
    # CONFIG_HWINFO is not set
    # CONFIG_I2S is not set
    # CONFIG_I3C is not set
    # CONFIG_SMBUS is not set
    
    #
    # Interrupt controller drivers
    #
    CONFIG_INTC_INIT_PRIORITY=40
    # CONFIG_INTC_LOG_LEVEL_OFF is not set
    # CONFIG_INTC_LOG_LEVEL_ERR is not set
    # CONFIG_INTC_LOG_LEVEL_WRN is not set
    # CONFIG_INTC_LOG_LEVEL_INF is not set
    # CONFIG_INTC_LOG_LEVEL_DBG is not set
    CONFIG_INTC_LOG_LEVEL_DEFAULT=y
    CONFIG_INTC_LOG_LEVEL=3
    # CONFIG_MULTI_LEVEL_INTERRUPTS is not set
    # CONFIG_INTC_ESP32 is not set
    # end of Interrupt controller drivers
    
    # CONFIG_IPM is not set
    # CONFIG_LED is not set
    # CONFIG_LED_STRIP is not set
    # CONFIG_LORA is not set
    CONFIG_MBOX=y
    CONFIG_MBOX_INIT_PRIORITY=50
    # CONFIG_MBOX_LOG_LEVEL_OFF is not set
    # CONFIG_MBOX_LOG_LEVEL_ERR is not set
    # CONFIG_MBOX_LOG_LEVEL_WRN is not set
    # CONFIG_MBOX_LOG_LEVEL_INF is not set
    # CONFIG_MBOX_LOG_LEVEL_DBG is not set
    CONFIG_MBOX_LOG_LEVEL_DEFAULT=y
    CONFIG_MBOX_LOG_LEVEL=3
    # CONFIG_MDIO is not set
    # CONFIG_MIPI_DSI is not set
    
    #
    # Miscellaneous Drivers
    #
    # CONFIG_GROVE_LCD_RGB is not set
    # end of Miscellaneous Drivers
    
    # CONFIG_MM_DRV is not set
    # CONFIG_NEURAL_NET_ACCEL is not set
    # CONFIG_PCIE is not set
    # CONFIG_PCIE_ENDPOINT is not set
    # CONFIG_PECI is not set
    # CONFIG_PINCTRL_LOG_LEVEL_OFF is not set
    # CONFIG_PINCTRL_LOG_LEVEL_ERR is not set
    # CONFIG_PINCTRL_LOG_LEVEL_WRN is not set
    # CONFIG_PINCTRL_LOG_LEVEL_INF is not set
    # CONFIG_PINCTRL_LOG_LEVEL_DBG is not set
    CONFIG_PINCTRL_LOG_LEVEL_DEFAULT=y
    CONFIG_PINCTRL_LOG_LEVEL=3
    CONFIG_PINCTRL_STORE_REG=y
    # CONFIG_PINCTRL_DYNAMIC is not set
    CONFIG_PINCTRL_NRF=y
    # CONFIG_PM_CPU_OPS is not set
    # CONFIG_POWER_DOMAIN is not set
    # CONFIG_PS2 is not set
    # CONFIG_PTP_CLOCK is not set
    # CONFIG_PWM is not set
    # CONFIG_RETAINED_MEM is not set
    # CONFIG_RTC is not set
    # CONFIG_SDHC is not set
    
    #
    # Capabilities
    #
    # CONFIG_UART_LOG_LEVEL_OFF is not set
    # CONFIG_UART_LOG_LEVEL_ERR is not set
    # CONFIG_UART_LOG_LEVEL_WRN is not set
    # CONFIG_UART_LOG_LEVEL_INF is not set
    # CONFIG_UART_LOG_LEVEL_DBG is not set
    CONFIG_UART_LOG_LEVEL_DEFAULT=y
    CONFIG_UART_LOG_LEVEL=3
    CONFIG_UART_USE_RUNTIME_CONFIGURE=y
    # CONFIG_UART_LINE_CTRL is not set
    # CONFIG_UART_DRV_CMD is not set
    # CONFIG_UART_WIDE_DATA is not set
    # CONFIG_UART_PIPE is not set
    
    #
    # Serial Drivers
    #
    # CONFIG_SPI_ASYNC is not set
    # CONFIG_SPI_RTIO is not set
    # CONFIG_SPI_SLAVE is not set
    # CONFIG_SPI_EXTENDED_MODES is not set
    CONFIG_SPI_INIT_PRIORITY=70
    CONFIG_SPI_COMPLETION_TIMEOUT_TOLERANCE=200
    # CONFIG_SPI_LOG_LEVEL_OFF is not set
    # CONFIG_SPI_LOG_LEVEL_ERR is not set
    # CONFIG_SPI_LOG_LEVEL_WRN is not set
    # CONFIG_SPI_LOG_LEVEL_INF is not set
    CONFIG_SPI_LOG_LEVEL_DBG=y
    # CONFIG_SPI_LOG_LEVEL_DEFAULT is not set
    CONFIG_SPI_LOG_LEVEL=4
    CONFIG_SPI_NRFX=y
    CONFIG_SPI_0_NRF_SPIM=y
    CONFIG_SPI_NRFX_RAM_BUFFER_SIZE=8
    # CONFIG_SYSCON is not set
    
    #
    # Timer drivers
    #
    # CONFIG_TIMER_READS_ITS_FREQUENCY_AT_RUNTIME is not set
    # CONFIG_SYSTEM_CLOCK_SLOPPY_IDLE is not set
    CONFIG_SYSTEM_CLOCK_INIT_PRIORITY=0
    CONFIG_TICKLESS_CAPABLE=y
    CONFIG_SYSTEM_TIMER_HAS_DISABLE_SUPPORT=y
    CONFIG_NRF_RTC_TIMER_LOCK_ZERO_LATENCY_IRQS=y
    # CONFIG_NRF_RTC_TIMER_TRIGGER_OVERFLOW is not set
    # CONFIG_SYSTEM_CLOCK_NO_WAIT is not set
    # CONFIG_SYSTEM_CLOCK_WAIT_FOR_AVAILABILITY is not set
    CONFIG_SYSTEM_CLOCK_WAIT_FOR_STABILITY=y
    # end of Timer drivers
    
    # CONFIG_USB_BC12 is not set
    # CONFIG_UDC_DRIVER is not set
    # CONFIG_UVB is not set
    # CONFIG_USB_DEVICE_DRIVER is not set
    # CONFIG_USBC_TCPC_DRIVER is not set
    # CONFIG_USBC_LOG_LEVEL_OFF is not set
    # CONFIG_USBC_LOG_LEVEL_ERR is not set
    # CONFIG_USBC_LOG_LEVEL_WRN is not set
    # CONFIG_USBC_LOG_LEVEL_INF is not set
    # CONFIG_USBC_LOG_LEVEL_DBG is not set
    CONFIG_USBC_LOG_LEVEL_DEFAULT=y
    CONFIG_USBC_LOG_LEVEL=3
    # CONFIG_USBC_VBUS_DRIVER is not set
    # CONFIG_VIDEO is not set
    # CONFIG_VIRTUALIZATION is not set
    # CONFIG_W1 is not set
    # end of Device Drivers
    
    #
    # C Library
    #
    CONFIG_SUPPORT_MINIMAL_LIBC=y
    CONFIG_PICOLIBC_SUPPORTED=y
    CONFIG_MINIMAL_LIBC=y
    # CONFIG_PICOLIBC is not set
    # CONFIG_NEWLIB_LIBC is not set
    # CONFIG_EXTERNAL_LIBC is not set
    CONFIG_HAS_NEWLIB_LIBC_NANO=y
    CONFIG_MINIMAL_LIBC_NON_REENTRANT_FUNCTIONS=y
    CONFIG_MINIMAL_LIBC_MALLOC=y
    CONFIG_MINIMAL_LIBC_MALLOC_ARENA_SIZE=0
    CONFIG_MINIMAL_LIBC_CALLOC=y
    CONFIG_MINIMAL_LIBC_REALLOCARRAY=y
    # CONFIG_MINIMAL_LIBC_LL_PRINTF is not set
    CONFIG_MINIMAL_LIBC_OPTIMIZE_STRING_FOR_SIZE=y
    # CONFIG_MINIMAL_LIBC_RAND is not set
    CONFIG_MINIMAL_LIBC_TIME=y
    # CONFIG_MINIMAL_LIBC_STRING_ERROR_TABLE is not set
    CONFIG_STDOUT_CONSOLE=y
    CONFIG_NEED_LIBC_MEM_PARTITION=y
    # end of C Library
    
    #
    # C++ Language Support
    #
    # CONFIG_CPP is not set
    
    #
    # Deprecated
    #
    # CONFIG_CPLUSPLUS is not set
    # CONFIG_LIB_CPLUSPLUS is not set
    # end of Deprecated
    # end of C++ Language Support
    
    #
    # Additional libraries
    #
    
    #
    # Hash Function Support
    #
    # CONFIG_SYS_HASH_FUNC32 is not set
    # end of Hash Function Support
    
    #
    # Hashmap (Hash Table) Support
    #
    # CONFIG_SYS_HASH_MAP is not set
    # end of Hashmap (Hash Table) Support
    
    #
    # OS Support Library
    #
    # CONFIG_JSON_LIBRARY is not set
    # CONFIG_RING_BUFFER is not set
    CONFIG_NOTIFY=y
    # CONFIG_BASE64 is not set
    CONFIG_CRC=y
    # CONFIG_PRINTK_SYNC is not set
    CONFIG_MPSC_PBUF=y
    CONFIG_ONOFF=y
    # CONFIG_SPSC_PBUF is not set
    # CONFIG_SHARED_MULTI_HEAP is not set
    # CONFIG_WINSTREAM is not set
    # CONFIG_MPSC_CLEAR_ALLOCATED is not set
    CONFIG_REBOOT=y
    # CONFIG_UTF8 is not set
    CONFIG_CBPRINTF_COMPLETE=y
    # CONFIG_CBPRINTF_NANO is not set
    CONFIG_CBPRINTF_FULL_INTEGRAL=y
    # CONFIG_CBPRINTF_REDUCED_INTEGRAL is not set
    # CONFIG_CBPRINTF_FP_SUPPORT is not set
    # CONFIG_CBPRINTF_FP_A_SUPPORT is not set
    # CONFIG_CBPRINTF_FP_ALWAYS_A is not set
    CONFIG_CBPRINTF_N_SPECIFIER=y
    # CONFIG_CBPRINTF_LIBC_SUBSTS is not set
    # CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_OFF is not set
    # CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_ERR is not set
    # CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_WRN is not set
    # CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_INF is not set
    # CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_DBG is not set
    CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_DEFAULT=y
    CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL=3
    # CONFIG_CBPRINTF_PACKAGE_LONGDOUBLE is not set
    
    #
    # Heap and Memory Allocation
    #
    # CONFIG_SYS_HEAP_VALIDATE is not set
    CONFIG_SYS_HEAP_ALLOC_LOOPS=3
    # CONFIG_SYS_HEAP_RUNTIME_STATS is not set
    # CONFIG_SYS_HEAP_LISTENER is not set
    CONFIG_SYS_HEAP_SMALL_ONLY=y
    # CONFIG_SYS_HEAP_BIG_ONLY is not set
    # CONFIG_SYS_HEAP_AUTO is not set
    # CONFIG_SYS_MEM_BLOCKS is not set
    # end of Heap and Memory Allocation
    # end of OS Support Library
    
    # CONFIG_POSIX_API is not set
    # CONFIG_POSIX_CLOCK is not set
    CONFIG_MAX_TIMER_COUNT=5
    CONFIG_TIMER_CREATE_WAIT=100
    # CONFIG_POSIX_MQUEUE is not set
    # CONFIG_EVENTFD is not set
    # CONFIG_FNMATCH is not set
    # CONFIG_OPENAMP_RSC_TABLE is not set
    # CONFIG_SMF is not set
    # end of Additional libraries
    
    #
    # Subsystems and OS Services
    #
    CONFIG_BT=y
    CONFIG_BT_HCI=y
    # CONFIG_BT_CUSTOM is not set
    CONFIG_BT_HCI_RAW=y
    # CONFIG_BT_HCI_RAW_H4 is not set
    CONFIG_BT_HCI_RAW_RESERVE=1
    # CONFIG_BT_HCI_RAW_CMD_EXT is not set
    CONFIG_BT_CONN_TX=y
    # CONFIG_BT_SCA_UPDATE is not set
    
    #
    # Bluetooth buffer configuration
    #
    # end of Bluetooth buffer configuration
    
    #
    # Bluetooth Host
    #
    # end of Bluetooth Host
    
    CONFIG_BT_CTLR_LE_ENC_SUPPORT=y
    CONFIG_BT_CTLR_EXT_REJ_IND_SUPPORT=y
    CONFIG_BT_CTLR_DATA_LEN_UPDATE_SUPPORT=y
    CONFIG_BT_CTLR_PRIVACY_SUPPORT=y
    CONFIG_BT_CTLR_EXT_SCAN_FP_SUPPORT=y
    CONFIG_BT_CTLR_PHY_UPDATE_SUPPORT=y
    CONFIG_BT_CTLR_PHY_2M_SUPPORT=y
    CONFIG_BT_CTLR_PHY_CODED_SUPPORT=y
    CONFIG_BT_CTLR_ADV_EXT_SUPPORT=y
    CONFIG_BT_CTLR_ADV_PERIODIC_SUPPORT=y
    CONFIG_BT_CTLR_ADV_PERIODIC_RSP_SUPPORT=y
    CONFIG_BT_CTLR_SYNC_PERIODIC_SUPPORT=y
    CONFIG_BT_CTLR_SYNC_PERIODIC_RSP_SUPPORT=y
    CONFIG_BT_CTLR_SYNC_TRANSFER_SENDER_SUPPORT=y
    CONFIG_BT_CTLR_SYNC_TRANSFER_RECEIVER_SUPPORT=y
    CONFIG_BT_CTLR_CHAN_SEL_2_SUPPORT=y
    CONFIG_BT_CTLR_SCA_UPDATE_SUPPORT=y
    CONFIG_BT_CTLR_CONN_RSSI_SUPPORT=y
    CONFIG_BT_CTLR_ECDH_SUPPORT=y
    # CONFIG_BT_LL_SW_SPLIT is not set
    
    #
    # BLE Controller configuration
    #
    CONFIG_BT_CTLR_CRYPTO=y
    CONFIG_BT_CTLR_HCI_VS_BUILD_INFO=""
    CONFIG_BT_CTLR_AD_DATA_BACKUP=y
    CONFIG_BT_CTLR_DUP_FILTER_LEN=16
    CONFIG_BT_CTLR_RX_BUFFERS=6
    # CONFIG_BT_CTLR_TX_PWR_DYNAMIC_CONTROL is not set
    
    #
    # BLE Controller features
    #
    CONFIG_BT_CTLR_LE_ENC=y
    CONFIG_BT_CTLR_ECDH=y
    CONFIG_BT_CTLR_EXT_REJ_IND=y
    CONFIG_BT_CTLR_LE_PING=y
    CONFIG_BT_CTLR_DATA_LENGTH=y
    CONFIG_BT_CTLR_CONN_RSSI=y
    CONFIG_BT_CTLR_CHECK_SAME_PEER_CONN=y
    CONFIG_BT_CTLR_FILTER_ACCEPT_LIST=y
    CONFIG_BT_CTLR_PRIVACY=y
    CONFIG_BT_CTLR_RL_SIZE=8
    CONFIG_BT_CTLR_EXT_SCAN_FP=y
    CONFIG_BT_CTLR_CHAN_SEL_2=y
    # CONFIG_BT_CTLR_ADV_EXT is not set
    # CONFIG_BT_CTLR_SET_HOST_FEATURE is not set
    # CONFIG_BT_CTLR_HCI_CODEC_AND_DELAY_INFO is not set
    CONFIG_BT_CTLR_DF_CTE_TX_SUPPORT=y
    CONFIG_BT_CTLR_ASSERT_HANDLER=y
    # CONFIG_BT_CTLR_TEST is not set
    # CONFIG_BT_SHELL is not set
    # CONFIG_BT_EAD is not set
    CONFIG_BT_LOG=y
    
    #
    # Bluetooth logging
    #
    CONFIG_BT_LOG_LEGACY=y
    
    #
    # Bluetooth legacy logging options
    #
    # CONFIG_BT_DEBUG_HCI_DRIVER is not set
    # CONFIG_BT_DEBUG_RPA is not set
    
    #
    # [DEPRECATED] Audio
    #
    # CONFIG_BT_DEBUG_AICS is not set
    # CONFIG_BT_DEBUG_AICS_CLIENT is not set
    # CONFIG_BT_DEBUG_CSIP_SET_MEMBER is not set
    # CONFIG_BT_DEBUG_CSIP_SET_COORDINATOR is not set
    # CONFIG_BT_DEBUG_HAS is not set
    # CONFIG_BT_DEBUG_MCS is not set
    # CONFIG_BT_DEBUG_MCC is not set
    # CONFIG_MCTL_DEBUG is not set
    # CONFIG_BT_DEBUG_MICP_MIC_DEV is not set
    # CONFIG_BT_DEBUG_MICP_MIC_CTLR is not set
    # CONFIG_BT_DEBUG_MPL is not set
    # CONFIG_BT_DEBUG_TBS is not set
    # CONFIG_BT_DEBUG_TBS_CLIENT is not set
    # CONFIG_BT_DEBUG_VCP_VOL_REND is not set
    # CONFIG_BT_DEBUG_VCP_VOL_CTLR is not set
    # CONFIG_BT_DEBUG_VOCS is not set
    # CONFIG_BT_DEBUG_VOCS_CLIENT is not set
    # end of [DEPRECATED] Audio
    
    #
    # [DEPRECATED] Others
    #
    # CONFIG_BT_DEBUG_ATT is not set
    # CONFIG_BT_DEBUG_GATT is not set
    # CONFIG_BT_DEBUG_L2CAP is not set
    # CONFIG_BT_DEBUG_DF is not set
    # CONFIG_BT_DEBUG_HCI_CORE is not set
    # CONFIG_BT_DEBUG_CONN is not set
    # CONFIG_BT_DEBUG_ISO is not set
    # CONFIG_BT_DEBUG_SERVICE is not set
    # end of [DEPRECATED] Others
    
    #
    # [DEPRECATED] BR/EDR
    #
    # end of [DEPRECATED] BR/EDR
    
    #
    # [DEPRECATED] Mesh
    #
    # CONFIG_BT_MESH_DEBUG is not set
    # CONFIG_BT_MESH_DEBUG_NET is not set
    # CONFIG_BT_MESH_DEBUG_RPL is not set
    # CONFIG_BT_MESH_DEBUG_TRANS is not set
    # CONFIG_BT_MESH_DEBUG_BEACON is not set
    # CONFIG_BT_MESH_DEBUG_CRYPTO is not set
    # CONFIG_BT_MESH_DEBUG_KEYS is not set
    # CONFIG_BT_MESH_DEBUG_PROV is not set
    # CONFIG_BT_MESH_DEBUG_PROVISIONER is not set
    # CONFIG_BT_MESH_DEBUG_PROV_DEVICE is not set
    # CONFIG_BT_MESH_DEBUG_ACCESS is not set
    # CONFIG_BT_MESH_DEBUG_MODEL is not set
    # CONFIG_BT_MESH_DEBUG_ADV is not set
    # CONFIG_BT_MESH_DEBUG_LOW_POWER is not set
    # CONFIG_BT_MESH_DEBUG_FRIEND is not set
    # CONFIG_BT_MESH_DEBUG_CFG is not set
    # end of [DEPRECATED] Mesh
    
    #
    # [DEPRECATED] Services
    #
    # CONFIG_BT_DEBUG_OTS_CLIENT is not set
    # end of [DEPRECATED] Services
    # end of Bluetooth legacy logging options
    
    # CONFIG_BT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_LOG_LEVEL_INF is not set
    # CONFIG_BT_LOG_LEVEL_DBG is not set
    CONFIG_BT_LOG_LEVEL_DEFAULT=y
    CONFIG_BT_LOG_LEVEL=3
    CONFIG_BT_HCI_DRIVER_LOG_LEVEL=3
    CONFIG_BT_HCI_DRIVER_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_HCI_DRIVER_LOG_LEVEL_OFF is not set
    # CONFIG_BT_HCI_DRIVER_LOG_LEVEL_ERR is not set
    # CONFIG_BT_HCI_DRIVER_LOG_LEVEL_WRN is not set
    # CONFIG_BT_HCI_DRIVER_LOG_LEVEL_INF is not set
    # CONFIG_BT_HCI_DRIVER_LOG_LEVEL_DBG is not set
    # CONFIG_BT_HCI_DRIVER_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_RPA_LOG_LEVEL=3
    CONFIG_BT_RPA_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_RPA_LOG_LEVEL_OFF is not set
    # CONFIG_BT_RPA_LOG_LEVEL_ERR is not set
    # CONFIG_BT_RPA_LOG_LEVEL_WRN is not set
    # CONFIG_BT_RPA_LOG_LEVEL_INF is not set
    # CONFIG_BT_RPA_LOG_LEVEL_DBG is not set
    # CONFIG_BT_RPA_LOG_LEVEL_DEFAULT is not set
    
    #
    # Audio
    #
    CONFIG_BT_AICS_LOG_LEVEL=3
    CONFIG_BT_AICS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_AICS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_AICS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_AICS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_AICS_LOG_LEVEL_INF is not set
    # CONFIG_BT_AICS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_AICS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_AICS_CLIENT_LOG_LEVEL=3
    CONFIG_BT_AICS_CLIENT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_AICS_CLIENT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_AICS_CLIENT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_AICS_CLIENT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_AICS_CLIENT_LOG_LEVEL_INF is not set
    # CONFIG_BT_AICS_CLIENT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_AICS_CLIENT_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_BAP_STREAM_LOG_LEVEL=3
    CONFIG_BT_BAP_STREAM_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_BAP_STREAM_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAP_STREAM_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAP_STREAM_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAP_STREAM_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAP_STREAM_LOG_LEVEL_DBG is not set
    # CONFIG_BT_BAP_STREAM_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_AUDIO_CODEC_LOG_LEVEL_INHERIT=y
    CONFIG_BT_AUDIO_CODEC_LOG_LEVEL=3
    # CONFIG_BT_AUDIO_CODEC_LOG_LEVEL_OFF is not set
    # CONFIG_BT_AUDIO_CODEC_LOG_LEVEL_ERR is not set
    # CONFIG_BT_AUDIO_CODEC_LOG_LEVEL_WRN is not set
    # CONFIG_BT_AUDIO_CODEC_LOG_LEVEL_INF is not set
    # CONFIG_BT_AUDIO_CODEC_LOG_LEVEL_DBG is not set
    # CONFIG_BT_AUDIO_CODEC_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_ASCS_LOG_LEVEL=3
    CONFIG_BT_ASCS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_ASCS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_ASCS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_ASCS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_ASCS_LOG_LEVEL_INF is not set
    # CONFIG_BT_ASCS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_ASCS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_BAP_UNICAST_SERVER_LOG_LEVEL=3
    CONFIG_BT_BAP_UNICAST_SERVER_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_BAP_UNICAST_SERVER_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAP_UNICAST_SERVER_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAP_UNICAST_SERVER_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAP_UNICAST_SERVER_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAP_UNICAST_SERVER_LOG_LEVEL_DBG is not set
    # CONFIG_BT_BAP_UNICAST_SERVER_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_BAP_UNICAST_CLIENT_LOG_LEVEL=3
    CONFIG_BT_BAP_UNICAST_CLIENT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_BAP_UNICAST_CLIENT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAP_UNICAST_CLIENT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAP_UNICAST_CLIENT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAP_UNICAST_CLIENT_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAP_UNICAST_CLIENT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_BAP_UNICAST_CLIENT_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_BAP_BROADCAST_SOURCE_LOG_LEVEL=3
    CONFIG_BT_BAP_BROADCAST_SOURCE_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_BAP_BROADCAST_SOURCE_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAP_BROADCAST_SOURCE_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAP_BROADCAST_SOURCE_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAP_BROADCAST_SOURCE_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAP_BROADCAST_SOURCE_LOG_LEVEL_DBG is not set
    # CONFIG_BT_BAP_BROADCAST_SOURCE_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_BAP_BROADCAST_SINK_LOG_LEVEL=3
    CONFIG_BT_BAP_BROADCAST_SINK_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_BAP_BROADCAST_SINK_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAP_BROADCAST_SINK_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAP_BROADCAST_SINK_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAP_BROADCAST_SINK_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAP_BROADCAST_SINK_LOG_LEVEL_DBG is not set
    # CONFIG_BT_BAP_BROADCAST_SINK_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_BAP_SCAN_DELEGATOR_LOG_LEVEL=3
    CONFIG_BT_BAP_SCAN_DELEGATOR_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_BAP_SCAN_DELEGATOR_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAP_SCAN_DELEGATOR_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAP_SCAN_DELEGATOR_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAP_SCAN_DELEGATOR_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAP_SCAN_DELEGATOR_LOG_LEVEL_DBG is not set
    # CONFIG_BT_BAP_SCAN_DELEGATOR_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_BAP_BROADCAST_ASSISTANT_LOG_LEVEL=3
    CONFIG_BT_BAP_BROADCAST_ASSISTANT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_BAP_BROADCAST_ASSISTANT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAP_BROADCAST_ASSISTANT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAP_BROADCAST_ASSISTANT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAP_BROADCAST_ASSISTANT_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAP_BROADCAST_ASSISTANT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_BAP_BROADCAST_ASSISTANT_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_BAP_ISO_LOG_LEVEL_INHERIT=y
    CONFIG_BT_BAP_ISO_LOG_LEVEL=3
    # CONFIG_BT_BAP_ISO_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAP_ISO_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAP_ISO_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAP_ISO_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAP_ISO_LOG_LEVEL_DBG is not set
    # CONFIG_BT_BAP_ISO_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_CAP_ACCEPTOR_LOG_LEVEL=3
    CONFIG_BT_CAP_ACCEPTOR_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_CAP_ACCEPTOR_LOG_LEVEL_OFF is not set
    # CONFIG_BT_CAP_ACCEPTOR_LOG_LEVEL_ERR is not set
    # CONFIG_BT_CAP_ACCEPTOR_LOG_LEVEL_WRN is not set
    # CONFIG_BT_CAP_ACCEPTOR_LOG_LEVEL_INF is not set
    # CONFIG_BT_CAP_ACCEPTOR_LOG_LEVEL_DBG is not set
    # CONFIG_BT_CAP_ACCEPTOR_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_CAP_INITIATOR_LOG_LEVEL=3
    CONFIG_BT_CAP_INITIATOR_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_CAP_INITIATOR_LOG_LEVEL_OFF is not set
    # CONFIG_BT_CAP_INITIATOR_LOG_LEVEL_ERR is not set
    # CONFIG_BT_CAP_INITIATOR_LOG_LEVEL_WRN is not set
    # CONFIG_BT_CAP_INITIATOR_LOG_LEVEL_INF is not set
    # CONFIG_BT_CAP_INITIATOR_LOG_LEVEL_DBG is not set
    # CONFIG_BT_CAP_INITIATOR_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_CAP_STREAM_LOG_LEVEL_INHERIT=y
    CONFIG_BT_CAP_STREAM_LOG_LEVEL=3
    # CONFIG_BT_CAP_STREAM_LOG_LEVEL_OFF is not set
    # CONFIG_BT_CAP_STREAM_LOG_LEVEL_ERR is not set
    # CONFIG_BT_CAP_STREAM_LOG_LEVEL_WRN is not set
    # CONFIG_BT_CAP_STREAM_LOG_LEVEL_INF is not set
    # CONFIG_BT_CAP_STREAM_LOG_LEVEL_DBG is not set
    # CONFIG_BT_CAP_STREAM_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_CSIP_SET_MEMBER_LOG_LEVEL=3
    CONFIG_BT_CSIP_SET_MEMBER_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_CSIP_SET_MEMBER_LOG_LEVEL_OFF is not set
    # CONFIG_BT_CSIP_SET_MEMBER_LOG_LEVEL_ERR is not set
    # CONFIG_BT_CSIP_SET_MEMBER_LOG_LEVEL_WRN is not set
    # CONFIG_BT_CSIP_SET_MEMBER_LOG_LEVEL_INF is not set
    # CONFIG_BT_CSIP_SET_MEMBER_LOG_LEVEL_DBG is not set
    # CONFIG_BT_CSIP_SET_MEMBER_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_CSIP_SET_COORDINATOR_LOG_LEVEL=3
    CONFIG_BT_CSIP_SET_COORDINATOR_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_CSIP_SET_COORDINATOR_LOG_LEVEL_OFF is not set
    # CONFIG_BT_CSIP_SET_COORDINATOR_LOG_LEVEL_ERR is not set
    # CONFIG_BT_CSIP_SET_COORDINATOR_LOG_LEVEL_WRN is not set
    # CONFIG_BT_CSIP_SET_COORDINATOR_LOG_LEVEL_INF is not set
    # CONFIG_BT_CSIP_SET_COORDINATOR_LOG_LEVEL_DBG is not set
    # CONFIG_BT_CSIP_SET_COORDINATOR_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_CSIP_SET_MEMBER_CRYPTO_LOG_LEVEL=3
    CONFIG_BT_CSIP_SET_MEMBER_CRYPTO_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_CSIP_SET_MEMBER_CRYPTO_LOG_LEVEL_OFF is not set
    # CONFIG_BT_CSIP_SET_MEMBER_CRYPTO_LOG_LEVEL_ERR is not set
    # CONFIG_BT_CSIP_SET_MEMBER_CRYPTO_LOG_LEVEL_WRN is not set
    # CONFIG_BT_CSIP_SET_MEMBER_CRYPTO_LOG_LEVEL_INF is not set
    # CONFIG_BT_CSIP_SET_MEMBER_CRYPTO_LOG_LEVEL_DBG is not set
    # CONFIG_BT_CSIP_SET_MEMBER_CRYPTO_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_HAS_LOG_LEVEL=3
    CONFIG_BT_HAS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_HAS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_HAS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_HAS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_HAS_LOG_LEVEL_INF is not set
    # CONFIG_BT_HAS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_HAS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_HAS_CLIENT_LOG_LEVEL=3
    CONFIG_BT_HAS_CLIENT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_HAS_CLIENT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_HAS_CLIENT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_HAS_CLIENT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_HAS_CLIENT_LOG_LEVEL_INF is not set
    # CONFIG_BT_HAS_CLIENT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_HAS_CLIENT_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MCS_LOG_LEVEL=3
    CONFIG_BT_MCS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MCS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MCS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MCS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MCS_LOG_LEVEL_INF is not set
    # CONFIG_BT_MCS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MCS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MCC_LOG_LEVEL=3
    CONFIG_BT_MCC_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MCC_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MCC_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MCC_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MCC_LOG_LEVEL_INF is not set
    # CONFIG_BT_MCC_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MCC_LOG_LEVEL_DEFAULT is not set
    CONFIG_MCTL_LOG_LEVEL=3
    CONFIG_MCTL_LOG_LEVEL_INHERIT=y
    # CONFIG_MCTL_LOG_LEVEL_OFF is not set
    # CONFIG_MCTL_LOG_LEVEL_ERR is not set
    # CONFIG_MCTL_LOG_LEVEL_WRN is not set
    # CONFIG_MCTL_LOG_LEVEL_INF is not set
    # CONFIG_MCTL_LOG_LEVEL_DBG is not set
    # CONFIG_MCTL_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MICP_MIC_DEV_LOG_LEVEL=3
    CONFIG_BT_MICP_MIC_DEV_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MICP_MIC_DEV_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MICP_MIC_DEV_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MICP_MIC_DEV_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MICP_MIC_DEV_LOG_LEVEL_INF is not set
    # CONFIG_BT_MICP_MIC_DEV_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MICP_MIC_DEV_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MICP_MIC_CTLR_LOG_LEVEL=3
    CONFIG_BT_MICP_MIC_CTLR_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MICP_MIC_CTLR_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MICP_MIC_CTLR_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MICP_MIC_CTLR_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MICP_MIC_CTLR_LOG_LEVEL_INF is not set
    # CONFIG_BT_MICP_MIC_CTLR_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MICP_MIC_CTLR_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MPL_LOG_LEVEL=3
    CONFIG_BT_MPL_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MPL_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MPL_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MPL_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MPL_LOG_LEVEL_INF is not set
    # CONFIG_BT_MPL_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MPL_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_PACS_LOG_LEVEL=3
    CONFIG_BT_PACS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_PACS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_PACS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_PACS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_PACS_LOG_LEVEL_INF is not set
    # CONFIG_BT_PACS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_PACS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_TBS_LOG_LEVEL=3
    CONFIG_BT_TBS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_TBS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_TBS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_TBS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_TBS_LOG_LEVEL_INF is not set
    # CONFIG_BT_TBS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_TBS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_TBS_CLIENT_LOG_LEVEL=3
    CONFIG_BT_TBS_CLIENT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_TBS_CLIENT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_TBS_CLIENT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_TBS_CLIENT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_TBS_CLIENT_LOG_LEVEL_INF is not set
    # CONFIG_BT_TBS_CLIENT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_TBS_CLIENT_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_VCP_VOL_REND_LOG_LEVEL=3
    CONFIG_BT_VCP_VOL_REND_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_VCP_VOL_REND_LOG_LEVEL_OFF is not set
    # CONFIG_BT_VCP_VOL_REND_LOG_LEVEL_ERR is not set
    # CONFIG_BT_VCP_VOL_REND_LOG_LEVEL_WRN is not set
    # CONFIG_BT_VCP_VOL_REND_LOG_LEVEL_INF is not set
    # CONFIG_BT_VCP_VOL_REND_LOG_LEVEL_DBG is not set
    # CONFIG_BT_VCP_VOL_REND_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_VCP_VOL_CTLR_LOG_LEVEL=3
    CONFIG_BT_VCP_VOL_CTLR_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_VCP_VOL_CTLR_LOG_LEVEL_OFF is not set
    # CONFIG_BT_VCP_VOL_CTLR_LOG_LEVEL_ERR is not set
    # CONFIG_BT_VCP_VOL_CTLR_LOG_LEVEL_WRN is not set
    # CONFIG_BT_VCP_VOL_CTLR_LOG_LEVEL_INF is not set
    # CONFIG_BT_VCP_VOL_CTLR_LOG_LEVEL_DBG is not set
    # CONFIG_BT_VCP_VOL_CTLR_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_VOCS_LOG_LEVEL=3
    CONFIG_BT_VOCS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_VOCS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_VOCS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_VOCS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_VOCS_LOG_LEVEL_INF is not set
    # CONFIG_BT_VOCS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_VOCS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_VOCS_CLIENT_LOG_LEVEL=3
    CONFIG_BT_VOCS_CLIENT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_VOCS_CLIENT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_VOCS_CLIENT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_VOCS_CLIENT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_VOCS_CLIENT_LOG_LEVEL_INF is not set
    # CONFIG_BT_VOCS_CLIENT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_VOCS_CLIENT_LOG_LEVEL_DEFAULT is not set
    # end of Audio
    
    #
    # Others
    #
    CONFIG_BT_CRYPTO_LOG_LEVEL=3
    CONFIG_BT_CRYPTO_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_CRYPTO_LOG_LEVEL_OFF is not set
    # CONFIG_BT_CRYPTO_LOG_LEVEL_ERR is not set
    # CONFIG_BT_CRYPTO_LOG_LEVEL_WRN is not set
    # CONFIG_BT_CRYPTO_LOG_LEVEL_INF is not set
    # CONFIG_BT_CRYPTO_LOG_LEVEL_DBG is not set
    # CONFIG_BT_CRYPTO_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_ATT_LOG_LEVEL=3
    CONFIG_BT_ATT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_ATT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_ATT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_ATT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_ATT_LOG_LEVEL_INF is not set
    # CONFIG_BT_ATT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_ATT_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_GATT_LOG_LEVEL=3
    CONFIG_BT_GATT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_GATT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_GATT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_GATT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_GATT_LOG_LEVEL_INF is not set
    # CONFIG_BT_GATT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_GATT_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_L2CAP_LOG_LEVEL=3
    CONFIG_BT_L2CAP_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_L2CAP_LOG_LEVEL_OFF is not set
    # CONFIG_BT_L2CAP_LOG_LEVEL_ERR is not set
    # CONFIG_BT_L2CAP_LOG_LEVEL_WRN is not set
    # CONFIG_BT_L2CAP_LOG_LEVEL_INF is not set
    # CONFIG_BT_L2CAP_LOG_LEVEL_DBG is not set
    # CONFIG_BT_L2CAP_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_EAD_LOG_LEVEL_INHERIT=y
    CONFIG_BT_EAD_LOG_LEVEL=3
    # CONFIG_BT_EAD_LOG_LEVEL_OFF is not set
    # CONFIG_BT_EAD_LOG_LEVEL_ERR is not set
    # CONFIG_BT_EAD_LOG_LEVEL_WRN is not set
    # CONFIG_BT_EAD_LOG_LEVEL_INF is not set
    # CONFIG_BT_EAD_LOG_LEVEL_DBG is not set
    # CONFIG_BT_EAD_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_DF_LOG_LEVEL=3
    CONFIG_BT_DF_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_DF_LOG_LEVEL_OFF is not set
    # CONFIG_BT_DF_LOG_LEVEL_ERR is not set
    # CONFIG_BT_DF_LOG_LEVEL_WRN is not set
    # CONFIG_BT_DF_LOG_LEVEL_INF is not set
    # CONFIG_BT_DF_LOG_LEVEL_DBG is not set
    # CONFIG_BT_DF_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_SETTINGS_LOG_LEVEL=3
    CONFIG_BT_SETTINGS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_SETTINGS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_SETTINGS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_SETTINGS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_SETTINGS_LOG_LEVEL_INF is not set
    # CONFIG_BT_SETTINGS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_SETTINGS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_HCI_CORE_LOG_LEVEL=3
    CONFIG_BT_HCI_CORE_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_HCI_CORE_LOG_LEVEL_OFF is not set
    # CONFIG_BT_HCI_CORE_LOG_LEVEL_ERR is not set
    # CONFIG_BT_HCI_CORE_LOG_LEVEL_WRN is not set
    # CONFIG_BT_HCI_CORE_LOG_LEVEL_INF is not set
    # CONFIG_BT_HCI_CORE_LOG_LEVEL_DBG is not set
    # CONFIG_BT_HCI_CORE_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_CONN_LOG_LEVEL=3
    CONFIG_BT_CONN_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_CONN_LOG_LEVEL_OFF is not set
    # CONFIG_BT_CONN_LOG_LEVEL_ERR is not set
    # CONFIG_BT_CONN_LOG_LEVEL_WRN is not set
    # CONFIG_BT_CONN_LOG_LEVEL_INF is not set
    # CONFIG_BT_CONN_LOG_LEVEL_DBG is not set
    # CONFIG_BT_CONN_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_ISO_LOG_LEVEL=3
    CONFIG_BT_ISO_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_ISO_LOG_LEVEL_OFF is not set
    # CONFIG_BT_ISO_LOG_LEVEL_ERR is not set
    # CONFIG_BT_ISO_LOG_LEVEL_WRN is not set
    # CONFIG_BT_ISO_LOG_LEVEL_INF is not set
    # CONFIG_BT_ISO_LOG_LEVEL_DBG is not set
    # CONFIG_BT_ISO_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_KEYS_LOG_LEVEL=3
    CONFIG_BT_KEYS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_KEYS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_KEYS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_KEYS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_KEYS_LOG_LEVEL_INF is not set
    # CONFIG_BT_KEYS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_KEYS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_SMP_LOG_LEVEL=3
    CONFIG_BT_SMP_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_SMP_LOG_LEVEL_OFF is not set
    # CONFIG_BT_SMP_LOG_LEVEL_ERR is not set
    # CONFIG_BT_SMP_LOG_LEVEL_WRN is not set
    # CONFIG_BT_SMP_LOG_LEVEL_INF is not set
    # CONFIG_BT_SMP_LOG_LEVEL_DBG is not set
    # CONFIG_BT_SMP_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_SERVICE_LOG_LEVEL=3
    CONFIG_BT_SERVICE_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_SERVICE_LOG_LEVEL_OFF is not set
    # CONFIG_BT_SERVICE_LOG_LEVEL_ERR is not set
    # CONFIG_BT_SERVICE_LOG_LEVEL_WRN is not set
    # CONFIG_BT_SERVICE_LOG_LEVEL_INF is not set
    # CONFIG_BT_SERVICE_LOG_LEVEL_DBG is not set
    # CONFIG_BT_SERVICE_LOG_LEVEL_DEFAULT is not set
    # end of Others
    
    #
    # BR/EDR
    #
    CONFIG_BT_RFCOMM_LOG_LEVEL=3
    CONFIG_BT_RFCOMM_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_RFCOMM_LOG_LEVEL_OFF is not set
    # CONFIG_BT_RFCOMM_LOG_LEVEL_ERR is not set
    # CONFIG_BT_RFCOMM_LOG_LEVEL_WRN is not set
    # CONFIG_BT_RFCOMM_LOG_LEVEL_INF is not set
    # CONFIG_BT_RFCOMM_LOG_LEVEL_DBG is not set
    # CONFIG_BT_RFCOMM_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_HFP_HF_LOG_LEVEL=3
    CONFIG_BT_HFP_HF_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_HFP_HF_LOG_LEVEL_OFF is not set
    # CONFIG_BT_HFP_HF_LOG_LEVEL_ERR is not set
    # CONFIG_BT_HFP_HF_LOG_LEVEL_WRN is not set
    # CONFIG_BT_HFP_HF_LOG_LEVEL_INF is not set
    # CONFIG_BT_HFP_HF_LOG_LEVEL_DBG is not set
    # CONFIG_BT_HFP_HF_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_AVDTP_LOG_LEVEL=3
    CONFIG_BT_AVDTP_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_AVDTP_LOG_LEVEL_OFF is not set
    # CONFIG_BT_AVDTP_LOG_LEVEL_ERR is not set
    # CONFIG_BT_AVDTP_LOG_LEVEL_WRN is not set
    # CONFIG_BT_AVDTP_LOG_LEVEL_INF is not set
    # CONFIG_BT_AVDTP_LOG_LEVEL_DBG is not set
    # CONFIG_BT_AVDTP_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_A2DP_LOG_LEVEL=3
    CONFIG_BT_A2DP_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_A2DP_LOG_LEVEL_OFF is not set
    # CONFIG_BT_A2DP_LOG_LEVEL_ERR is not set
    # CONFIG_BT_A2DP_LOG_LEVEL_WRN is not set
    # CONFIG_BT_A2DP_LOG_LEVEL_INF is not set
    # CONFIG_BT_A2DP_LOG_LEVEL_DBG is not set
    # CONFIG_BT_A2DP_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_SDP_LOG_LEVEL=3
    CONFIG_BT_SDP_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_SDP_LOG_LEVEL_OFF is not set
    # CONFIG_BT_SDP_LOG_LEVEL_ERR is not set
    # CONFIG_BT_SDP_LOG_LEVEL_WRN is not set
    # CONFIG_BT_SDP_LOG_LEVEL_INF is not set
    # CONFIG_BT_SDP_LOG_LEVEL_DBG is not set
    # CONFIG_BT_SDP_LOG_LEVEL_DEFAULT is not set
    # end of BR/EDR
    
    #
    # Mesh
    #
    CONFIG_BT_MESH_LOG_LEVEL=3
    CONFIG_BT_MESH_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_NET_LOG_LEVEL=3
    CONFIG_BT_MESH_NET_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_NET_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_NET_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_NET_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_NET_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_NET_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_NET_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_RPL_LOG_LEVEL=3
    CONFIG_BT_MESH_RPL_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_RPL_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_RPL_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_RPL_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_RPL_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_RPL_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_RPL_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_TRANS_LOG_LEVEL=3
    CONFIG_BT_MESH_TRANS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_TRANS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_TRANS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_TRANS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_TRANS_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_TRANS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_TRANS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_BEACON_LOG_LEVEL=3
    CONFIG_BT_MESH_BEACON_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_BEACON_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_BEACON_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_BEACON_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_BEACON_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_BEACON_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_BEACON_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_CRYPTO_LOG_LEVEL=3
    CONFIG_BT_MESH_CRYPTO_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_CRYPTO_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_CRYPTO_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_CRYPTO_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_CRYPTO_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_CRYPTO_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_CRYPTO_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_KEYS_LOG_LEVEL=3
    CONFIG_BT_MESH_KEYS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_KEYS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_KEYS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_KEYS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_KEYS_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_KEYS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_KEYS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_PROV_LOG_LEVEL=3
    CONFIG_BT_MESH_PROV_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_PROV_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_PROV_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_PROV_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_PROV_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_PROV_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_PROV_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_PROVISIONER_LOG_LEVEL=3
    CONFIG_BT_MESH_PROVISIONER_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_PROVISIONER_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_PROVISIONER_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_PROVISIONER_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_PROVISIONER_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_PROVISIONER_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_PROVISIONER_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_PROV_DEVICE_LOG_LEVEL=3
    CONFIG_BT_MESH_PROV_DEVICE_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_PROV_DEVICE_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_PROV_DEVICE_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_PROV_DEVICE_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_PROV_DEVICE_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_PROV_DEVICE_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_PROV_DEVICE_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_ACCESS_LOG_LEVEL=3
    CONFIG_BT_MESH_ACCESS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_ACCESS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_ACCESS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_ACCESS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_ACCESS_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_ACCESS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_ACCESS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_MODEL_LOG_LEVEL=3
    CONFIG_BT_MESH_MODEL_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_MODEL_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_MODEL_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_MODEL_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_MODEL_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_MODEL_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_MODEL_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_DFU_LOG_LEVEL=3
    CONFIG_BT_MESH_DFU_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_DFU_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_DFU_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_DFU_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_DFU_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_DFU_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_DFU_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_ADV_LOG_LEVEL=3
    CONFIG_BT_MESH_ADV_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_ADV_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_ADV_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_ADV_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_ADV_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_ADV_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_ADV_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_LOW_POWER_LOG_LEVEL=3
    CONFIG_BT_MESH_LOW_POWER_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_LOW_POWER_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_LOW_POWER_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_LOW_POWER_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_LOW_POWER_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_LOW_POWER_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_LOW_POWER_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_FRIEND_LOG_LEVEL=3
    CONFIG_BT_MESH_FRIEND_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_FRIEND_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_FRIEND_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_FRIEND_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_FRIEND_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_FRIEND_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_FRIEND_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_PROXY_LOG_LEVEL=3
    CONFIG_BT_MESH_PROXY_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_PROXY_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_PROXY_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_PROXY_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_PROXY_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_PROXY_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_PROXY_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_SETTINGS_LOG_LEVEL=3
    CONFIG_BT_MESH_SETTINGS_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_SETTINGS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_SETTINGS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_SETTINGS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_SETTINGS_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_SETTINGS_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_SETTINGS_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_CDB_LOG_LEVEL=3
    CONFIG_BT_MESH_CDB_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_CDB_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_CDB_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_CDB_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_CDB_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_CDB_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_CDB_LOG_LEVEL_DEFAULT is not set
    CONFIG_BT_MESH_CFG_LOG_LEVEL=3
    CONFIG_BT_MESH_CFG_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_MESH_CFG_LOG_LEVEL_OFF is not set
    # CONFIG_BT_MESH_CFG_LOG_LEVEL_ERR is not set
    # CONFIG_BT_MESH_CFG_LOG_LEVEL_WRN is not set
    # CONFIG_BT_MESH_CFG_LOG_LEVEL_INF is not set
    # CONFIG_BT_MESH_CFG_LOG_LEVEL_DBG is not set
    # CONFIG_BT_MESH_CFG_LOG_LEVEL_DEFAULT is not set
    # end of Mesh
    
    #
    # Services
    #
    # CONFIG_BT_BAS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_BAS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_BAS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_BAS_LOG_LEVEL_INF is not set
    # CONFIG_BT_BAS_LOG_LEVEL_DBG is not set
    CONFIG_BT_BAS_LOG_LEVEL_DEFAULT=y
    CONFIG_BT_BAS_LOG_LEVEL=3
    # CONFIG_BT_HRS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_HRS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_HRS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_HRS_LOG_LEVEL_INF is not set
    # CONFIG_BT_HRS_LOG_LEVEL_DBG is not set
    CONFIG_BT_HRS_LOG_LEVEL_DEFAULT=y
    CONFIG_BT_HRS_LOG_LEVEL=3
    # CONFIG_BT_TPS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_TPS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_TPS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_TPS_LOG_LEVEL_INF is not set
    # CONFIG_BT_TPS_LOG_LEVEL_DBG is not set
    CONFIG_BT_TPS_LOG_LEVEL_DEFAULT=y
    CONFIG_BT_TPS_LOG_LEVEL=3
    CONFIG_BT_IAS_CLIENT_LOG_LEVEL=3
    CONFIG_BT_IAS_CLIENT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_IAS_CLIENT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_IAS_CLIENT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_IAS_CLIENT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_IAS_CLIENT_LOG_LEVEL_INF is not set
    # CONFIG_BT_IAS_CLIENT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_IAS_CLIENT_LOG_LEVEL_DEFAULT is not set
    # CONFIG_BT_IAS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_IAS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_IAS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_IAS_LOG_LEVEL_INF is not set
    # CONFIG_BT_IAS_LOG_LEVEL_DBG is not set
    CONFIG_BT_IAS_LOG_LEVEL_DEFAULT=y
    CONFIG_BT_IAS_LOG_LEVEL=3
    CONFIG_BT_OTS_CLIENT_LOG_LEVEL=3
    CONFIG_BT_OTS_CLIENT_LOG_LEVEL_INHERIT=y
    # CONFIG_BT_OTS_CLIENT_LOG_LEVEL_OFF is not set
    # CONFIG_BT_OTS_CLIENT_LOG_LEVEL_ERR is not set
    # CONFIG_BT_OTS_CLIENT_LOG_LEVEL_WRN is not set
    # CONFIG_BT_OTS_CLIENT_LOG_LEVEL_INF is not set
    # CONFIG_BT_OTS_CLIENT_LOG_LEVEL_DBG is not set
    # CONFIG_BT_OTS_CLIENT_LOG_LEVEL_DEFAULT is not set
    # CONFIG_BT_OTS_LOG_LEVEL_OFF is not set
    # CONFIG_BT_OTS_LOG_LEVEL_ERR is not set
    # CONFIG_BT_OTS_LOG_LEVEL_WRN is not set
    # CONFIG_BT_OTS_LOG_LEVEL_INF is not set
    # CONFIG_BT_OTS_LOG_LEVEL_DBG is not set
    CONFIG_BT_OTS_LOG_LEVEL_DEFAULT=y
    CONFIG_BT_OTS_LOG_LEVEL=3
    # end of Services
    # end of Bluetooth logging
    
    CONFIG_BT_COMPANY_ID=0x05F1
    
    #
    # Controller Area Network (CAN) bus subsystem
    #
    # CONFIG_ISOTP is not set
    # end of Controller Area Network (CAN) bus subsystem
    
    # CONFIG_CONSOLE_SUBSYS is not set
    
    #
    # System Monitoring Options
    #
    # CONFIG_THREAD_ANALYZER is not set
    # end of System Monitoring Options
    
    #
    # Debugging Options
    #
    # CONFIG_DEBUG is not set
    # CONFIG_STACK_USAGE is not set
    CONFIG_STACK_SENTINEL=y
    CONFIG_PRINTK=y
    CONFIG_EARLY_CONSOLE=y
    # CONFIG_ASSERT is not set
    # CONFIG_FORCE_NO_ASSERT is not set
    CONFIG_ASSERT_VERBOSE=y
    # CONFIG_ASSERT_NO_FILE_INFO is not set
    # CONFIG_ASSERT_NO_COND_INFO is not set
    # CONFIG_ASSERT_NO_MSG_INFO is not set
    # CONFIG_ASSERT_TEST is not set
    # CONFIG_OVERRIDE_FRAME_POINTER_DEFAULT is not set
    # CONFIG_DEBUG_INFO is not set
    # CONFIG_DEBUG_THREAD_INFO is not set
    # CONFIG_DEBUG_COREDUMP is not set
    # end of Debugging Options
    
    # CONFIG_DISK_ACCESS is not set
    # CONFIG_DSP is not set
    # CONFIG_EMUL is not set
    # CONFIG_CHARACTER_FRAMEBUFFER is not set
    
    #
    # File Systems
    #
    # CONFIG_FILE_SYSTEM is not set
    # CONFIG_NVS is not set
    # end of File Systems
    
    #
    # Inter Processor Communication
    #
    # CONFIG_RPMSG_SERVICE is not set
    CONFIG_IPC_SERVICE=y
    CONFIG_IPC_SERVICE_REG_BACKEND_PRIORITY=46
    CONFIG_IPC_SERVICE_BACKEND_RPMSG=y
    CONFIG_IPC_SERVICE_BACKEND_RPMSG_WQ_STACK_SIZE=1024
    CONFIG_IPC_SERVICE_BACKEND_RPMSG_NUM_ENDPOINTS_PER_INSTANCE=2
    CONFIG_IPC_SERVICE_RPMSG=y
    CONFIG_IPC_SERVICE_STATIC_VRINGS=y
    CONFIG_IPC_SERVICE_STATIC_VRINGS_ALIGNMENT=4
    # CONFIG_IPC_SERVICE_ICMSG is not set
    # CONFIG_IPC_SERVICE_ICMSG_ME is not set
    # CONFIG_IPC_SERVICE_LOG_LEVEL_OFF is not set
    # CONFIG_IPC_SERVICE_LOG_LEVEL_ERR is not set
    # CONFIG_IPC_SERVICE_LOG_LEVEL_WRN is not set
    # CONFIG_IPC_SERVICE_LOG_LEVEL_INF is not set
    # CONFIG_IPC_SERVICE_LOG_LEVEL_DBG is not set
    CONFIG_IPC_SERVICE_LOG_LEVEL_DEFAULT=y
    CONFIG_IPC_SERVICE_LOG_LEVEL=3
    # end of Inter Processor Communication
    
    # CONFIG_JWT is not set
    
    #
    # Logging
    #
    CONFIG_LOG=y
    CONFIG_LOG_CORE_INIT_PRIORITY=0
    CONFIG_LOG_MODE_DEFERRED=y
    # CONFIG_LOG_MODE_IMMEDIATE is not set
    # CONFIG_LOG_MODE_MINIMAL is not set
    # CONFIG_LOG_FRONTEND is not set
    # CONFIG_LOG_CUSTOM_HEADER is not set
    # CONFIG_LOG_MULTIDOMAIN is not set
    
    #
    # Logging levels filtering
    #
    # CONFIG_LOG_RUNTIME_FILTERING is not set
    CONFIG_LOG_DEFAULT_LEVEL=3
    CONFIG_LOG_OVERRIDE_LEVEL=0
    CONFIG_LOG_MAX_LEVEL=4
    # end of Logging levels filtering
    
    #
    # Processing
    #
    CONFIG_LOG_PRINTK=y
    CONFIG_LOG_MODE_OVERFLOW=y
    # CONFIG_LOG_BLOCK_IN_THREAD is not set
    CONFIG_LOG_PROCESS_TRIGGER_THRESHOLD=10
    CONFIG_LOG_PROCESS_THREAD=y
    CONFIG_LOG_PROCESS_THREAD_STARTUP_DELAY_MS=0
    CONFIG_LOG_PROCESS_THREAD_SLEEP_MS=1000
    CONFIG_LOG_PROCESS_THREAD_STACK_SIZE=1024
    # CONFIG_LOG_PROCESS_THREAD_CUSTOM_PRIORITY is not set
    CONFIG_LOG_TRACE_SHORT_TIMESTAMP=y
    # CONFIG_LOG_TIMESTAMP_64BIT is not set
    # CONFIG_LOG_SPEED is not set
    # end of Processing
    
    #
    # Output Formatting
    #
    
    #
    # Prepend non-hexdump log message with function name
    #
    CONFIG_LOG_FUNC_NAME_PREFIX_ERR=y
    CONFIG_LOG_FUNC_NAME_PREFIX_WRN=y
    CONFIG_LOG_FUNC_NAME_PREFIX_INF=y
    CONFIG_LOG_FUNC_NAME_PREFIX_DBG=y
    # end of Prepend non-hexdump log message with function name
    
    # CONFIG_LOG_MIPI_SYST_ENABLE is not set
    # CONFIG_LOG_CUSTOM_FORMAT_SUPPORT is not set
    # CONFIG_LOG_BACKEND_SHOW_COLOR is not set
    CONFIG_LOG_TAG_MAX_LEN=0
    CONFIG_LOG_BACKEND_FORMAT_TIMESTAMP=y
    # CONFIG_LOG_OUTPUT_FORMAT_LINUX_TIMESTAMP is not set
    # CONFIG_LOG_OUTPUT_FORMAT_CUSTOM_TIMESTAMP is not set
    # end of Output Formatting
    
    #
    # Backends
    #
    CONFIG_LOG_BACKEND_RTT=y
    # CONFIG_LOG_BACKEND_RTT_MODE_DROP is not set
    CONFIG_LOG_BACKEND_RTT_MODE_BLOCK=y
    # CONFIG_LOG_BACKEND_RTT_MODE_OVERWRITE is not set
    CONFIG_LOG_BACKEND_RTT_OUTPUT_TEXT=y
    # CONFIG_LOG_BACKEND_RTT_OUTPUT_DICTIONARY is not set
    # CONFIG_LOG_BACKEND_RTT_OUTPUT_CUSTOM is not set
    CONFIG_LOG_BACKEND_RTT_OUTPUT_DEFAULT=0
    CONFIG_LOG_BACKEND_RTT_OUTPUT_BUFFER_SIZE=16
    CONFIG_LOG_BACKEND_RTT_RETRY_CNT=4
    CONFIG_LOG_BACKEND_RTT_RETRY_DELAY_MS=5
    CONFIG_LOG_BACKEND_RTT_BUFFER=0
    CONFIG_LOG_BACKEND_RTT_FORCE_PRINTK=y
    # CONFIG_LOG_BACKEND_SWO is not set
    # CONFIG_LOG_BACKEND_IPC_SERVICE is not set
    # end of Backends
    
    #
    # Misc
    #
    CONFIG_LOG_DOMAIN_ID=0
    CONFIG_LOG_USE_VLA=y
    # CONFIG_LOG_ALWAYS_RUNTIME is not set
    # CONFIG_LOG_FMT_SECTION is not set
    # CONFIG_LOG_USE_TAGGED_ARGUMENTS is not set
    # CONFIG_LOG_MEM_UTILIZATION is not set
    CONFIG_LOG_FAILURE_REPORT_PERIOD=1000
    # end of Misc
    
    CONFIG_LOG_OUTPUT=y
    # end of Logging
    
    #
    # Device Management
    #
    
    #
    # Host command handler subsystem
    #
    # CONFIG_EC_HOST_CMD is not set
    # CONFIG_EC_HOST_CMD_BACKEND_SHI is not set
    # end of Host command handler subsystem
    
    # CONFIG_OSDP is not set
    # end of Device Management
    
    # CONFIG_MODBUS is not set
    
    #
    # Networking
    #
    CONFIG_NET_BUF=y
    # CONFIG_NET_BUF_LOG is not set
    # CONFIG_NET_BUF_LOG_LEVEL_OFF is not set
    # CONFIG_NET_BUF_LOG_LEVEL_ERR is not set
    # CONFIG_NET_BUF_LOG_LEVEL_WRN is not set
    # CONFIG_NET_BUF_LOG_LEVEL_INF is not set
    # CONFIG_NET_BUF_LOG_LEVEL_DBG is not set
    CONFIG_NET_BUF_LOG_LEVEL_DEFAULT=y
    CONFIG_NET_BUF_LOG_LEVEL=3
    # CONFIG_NET_BUF_POOL_USAGE is not set
    # CONFIG_NETWORKING is not set
    # end of Networking
    
    #
    # Power Management
    #
    CONFIG_HAS_NO_PM=y
    # end of Power Management
    
    #
    # Portability
    #
    # end of Portability
    
    #
    # Random Number Generators
    #
    # CONFIG_TEST_RANDOM_GENERATOR is not set
    CONFIG_ENTROPY_DEVICE_RANDOM_GENERATOR=y
    # CONFIG_XOROSHIRO_RANDOM_GENERATOR is not set
    # CONFIG_XOSHIRO_RANDOM_GENERATOR is not set
    CONFIG_CSPRING_ENABLED=y
    CONFIG_HARDWARE_DEVICE_CS_GENERATOR=y
    # CONFIG_CTR_DRBG_CSPRNG_GENERATOR is not set
    # end of Random Number Generators
    
    # CONFIG_RTIO is not set
    
    #
    # SD
    #
    # CONFIG_MMC_STACK is not set
    # CONFIG_SDMMC_STACK is not set
    # CONFIG_SDIO_STACK is not set
    # end of SD
    
    # CONFIG_SETTINGS is not set
    # CONFIG_SHELL is not set
    # CONFIG_STATS is not set
    
    #
    # Storage
    #
    # CONFIG_STREAM_FLASH is not set
    # end of Storage
    
    # CONFIG_TASK_WDT is not set
    
    #
    # Testing
    #
    # CONFIG_ZTEST is not set
    # CONFIG_ZTEST_MOCKING is not set
    # CONFIG_ZTRESS is not set
    # CONFIG_TEST is not set
    CONFIG_COVERAGE_GCOV_HEAP_SIZE=16384
    # CONFIG_TEST_USERSPACE is not set
    # end of Testing
    
    # CONFIG_TIMING_FUNCTIONS is not set
    # CONFIG_TRACING is not set
    # CONFIG_USB_DEVICE_STACK is not set
    # CONFIG_USB_DEVICE_STACK_NEXT is not set
    # CONFIG_USB_HOST_STACK is not set
    # CONFIG_USBC_STACK is not set
    # CONFIG_ZBUS is not set
    # end of Subsystems and OS Services
    
    CONFIG_TOOLCHAIN_ZEPHYR_0_16=y
    CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_THREAD_LOCAL_STORAGE=y
    
    #
    # Build and Link Features
    #
    
    #
    # Linker Options
    #
    # CONFIG_LINKER_ORPHAN_SECTION_PLACE is not set
    CONFIG_LINKER_ORPHAN_SECTION_WARN=y
    # CONFIG_LINKER_ORPHAN_SECTION_ERROR is not set
    CONFIG_HAS_FLASH_LOAD_OFFSET=y
    # CONFIG_USE_DT_CODE_PARTITION is not set
    CONFIG_LD_LINKER_SCRIPT_SUPPORTED=y
    CONFIG_LD_LINKER_TEMPLATE=y
    # CONFIG_CMAKE_LINKER_GENERATOR is not set
    # CONFIG_HAVE_CUSTOM_LINKER_SCRIPT is not set
    CONFIG_KERNEL_ENTRY="__start"
    CONFIG_LINKER_SORT_BY_ALIGNMENT=y
    CONFIG_SRAM_OFFSET=0
    
    #
    # Linker Sections
    #
    # CONFIG_LINKER_USE_BOOT_SECTION is not set
    # CONFIG_LINKER_USE_PINNED_SECTION is not set
    CONFIG_LINKER_GENERIC_SECTIONS_PRESENT_AT_BOOT=y
    CONFIG_LINKER_LAST_SECTION_ID=y
    CONFIG_LINKER_LAST_SECTION_ID_PATTERN=0xE015E015
    CONFIG_LINKER_USE_RELAX=y
    # end of Linker Sections
    # end of Linker Options
    
    #
    # Compiler Options
    #
    # CONFIG_CODING_GUIDELINE_CHECK is not set
    # CONFIG_NATIVE_APPLICATION is not set
    CONFIG_COMPILER_FREESTANDING=y
    CONFIG_SIZE_OPTIMIZATIONS=y
    # CONFIG_SPEED_OPTIMIZATIONS is not set
    # CONFIG_DEBUG_OPTIMIZATIONS is not set
    # CONFIG_NO_OPTIMIZATIONS is not set
    # CONFIG_COMPILER_WARNINGS_AS_ERRORS is not set
    # CONFIG_COMPILER_SAVE_TEMPS is not set
    CONFIG_COMPILER_COLOR_DIAGNOSTICS=y
    CONFIG_FORTIFY_SOURCE_NONE=y
    # CONFIG_FORTIFY_SOURCE_COMPILE_TIME is not set
    # CONFIG_FORTIFY_SOURCE_RUN_TIME is not set
    CONFIG_COMPILER_OPT=""
    # CONFIG_MISRA_SANE is not set
    # end of Compiler Options
    
    # CONFIG_ASSERT_ON_ERRORS is not set
    # CONFIG_NO_RUNTIME_CHECKS is not set
    CONFIG_RUNTIME_ERROR_CHECKS=y
    
    #
    # Build Options
    #
    CONFIG_KERNEL_BIN_NAME="zephyr"
    CONFIG_OUTPUT_STAT=y
    # CONFIG_OUTPUT_SYMBOLS is not set
    CONFIG_OUTPUT_DISASSEMBLY=y
    # CONFIG_OUTPUT_DISASSEMBLE_ALL is not set
    CONFIG_OUTPUT_PRINT_MEMORY_USAGE=y
    # CONFIG_CLEANUP_INTERMEDIATE_FILES is not set
    # CONFIG_BUILD_NO_GAP_FILL is not set
    CONFIG_BUILD_OUTPUT_BIN=y
    # CONFIG_BUILD_OUTPUT_EXE is not set
    # CONFIG_BUILD_OUTPUT_S19 is not set
    # CONFIG_BUILD_OUTPUT_UF2 is not set
    # CONFIG_BUILD_OUTPUT_STRIPPED is not set
    # CONFIG_APPLICATION_DEFINED_SYSCALL is not set
    # CONFIG_MAKEFILE_EXPORTS is not set
    # CONFIG_BUILD_OUTPUT_META is not set
    CONFIG_BUILD_OUTPUT_STRIP_PATHS=y
    # end of Build Options
    
    CONFIG_DEPRECATED=y
    CONFIG_WARN_DEPRECATED=y
    CONFIG_ENFORCE_ZEPHYR_STDINT=y
    # end of Build and Link Features
    
    #
    # Boot Options
    #
    # CONFIG_IS_BOOTLOADER is not set
    # CONFIG_BOOTLOADER_BOSSA is not set
    # end of Boot Options
    
    #
    # Compatibility
    #
    CONFIG_COMPAT_INCLUDES=y
    # end of Compatibility
    

    Let me know if I can provide anything else and I will update with any progress. Thanks!

  • Devin,

    I am trying to reproduce this issue, and just wanted to clarify a few things. Can you confirm or refute whether these combinations fail?

    1. Unmodified HCI_UART sample with your custom board on Laird 2.4.1 fork.
    2. Unmodified HCI_UART sample with your custom board on stock nRF Connect SDK 2.4.1.
    3. Unmodified HCI_UART sample with nRF5340DK on Laird 2.4.1 fork.
    4. Unmodified HCI_UART sample with nRF5340DK on stock nRF Connect SDK 2.4.1.

    Did you run all of them with no FEM enabled, without coded PHY or any other changes?

    Regards,
    Knut

  •    Thanks for your response. I have ran these tests a few times on the custom board, BL5340PA DK, BL5340 DK, but my nrf5340DK was acting up so I can give that another try as well. For a sanity check for me and others supporting this issue, I will run each of these tests today, but they will still all need the cdc-acm modification made to the projects to utilize the USB interface. 

    I will create fresh copies of the 2.4.1 fork and stock version of the SDK to ensure nothing else has been changed.

  • HCI_BLE_TEST.zip

    An update on the tests performed today. I tested HCI_USB, and HCI_UART example projects on the BL5340DK, BL5340PADK, and nrf5340DK on a fresh copy of the laird fork of the 2.4.1 SDK. Below were my findings per device per project. Note that the max runtime I allowed for these was an hour before I cut it off without failure. I have also attached a .zip of all the projects that I used for these tests. They are named accordingly with the example they were taken from, and have the built build directories for the boards that were tested with those projects, if looking through the generated configs is desired. 

    Time Run: Amount of time ran without issue, if includes "+" means that failure did not occur

    Devices Scanned: Count of devices listed in the Bluetoothctl "devices" command after scanning was complete

    HCI_USB_NO_PA (no modification)

    - BL5340DK: Time Ran: 1+ hours, Devices Scanned: 1259

    - BL5340PADK: Time Ran: 2.5min, 30seconds, Devices Scanned(30 sec): 114
    - nrf5340DK: Time Ran: 1+ hours, Devices Scanned: 901

    HCI_USB_WITH_PA (Added child_image/hci_rpmsg.conf with MPSL PA config)

    - BL5340PADK: Time Ran: 45 sec, 20 sec, 30 sec Devices Scanned(30 sec): 134

    HCI_UART_NO_PA (Added CDC-ACM redirection)

    - BL5340DK: Time Ran: 1+hours Devices Scanned: 1520

    - BL5340PADK: Time Ran: 1min, 1.5min, Devices Scanned(1min): 107

    - nrf5340DK: Time Ran: 1+hours, Devices Scanned: 902

    HCI_UART_WITH_PA (Added CDC-ACM redirection, and child_image/hci_rpmsg.conf)

    - BL5340PADK: Time Ran: 45 sec, 45 sec, Devices Scanned: 156

    I did not run this test with the original 2.4.1 Zephyr/nrf SDK as I did not have any device fail in these hour long tests besides the BL5340PADK. I have had the same failure on the BL5340DK without the PA before, but I will be running that test tonight to give it more time to fail and to confirm this. I did not find it useful testing the BL5340PADK on the original 2.4.1 zephyr/nrf SDK as scanning is really slow/inoperable due to not having the configuration to deal with the FEM/External antenna. 

    I used the DK's only as I have seen the same behavior on the BL5340PADK and the custom board and this should be easier to test for others following along. 

    No other changes were made in these projects besides what is listed next to the project name, but as we move forward we can edit these further to test. And I am able to add segger RTT logs for netcore and either CDC-ACM or segger logs for the app core if desired.


    As a reminder this same error is the error that is occurring across HCI_USB and HCI_UART.


    Thanks!

  • Thanks a lot for taking the time to do these tests. We will look into your findings and get back to you.

Reply Children
  • No problem, thank you.

    This morning my BL5340DK on HCI_USB default project is still running with no issues. This has been running for about 16 hours, in my very busy BT environment with only a single "scan on" request to start and continue running. The DK had a little under 7000 mac addresses stored, from devices scanned, in the "bluetoothctl devices" command.


    The above logs are from dmesg on the Linux device running the DK, as these are really all I can retrieve with the current project settings. I see the normal "advertising data len corrected" that seems to appear on any BT adapter with enough runtime, and the "bt_err_ratelimited" which I have seen on the functional tests of the HCI projects. 



    Since the failure I saw before was on the BL5340DK with HCI_UART, but it had more features enabled, I will run a long run test with the Laird SDK and the default HCI_UART today to see if I can catch any failure to compare to the normal Zephyr/nrf 2.4.1 SDK. 

  • Default project HCI_UART with the BL5340DK ran without issues for 23 hours of continuous scanning as well on the laird fork of the SDK. Thanks!

  • At the end of my day on Friday, I tried disabling the SPI communication from the netcore on the BL5340PA, and in turn disabling the MSPL FEM SPI communication. From my understanding, the FEM with the BL5340PA is function with just GPIO control, but does not allow you to change the FEM gain from its default value of 20dBm (Assumed from the BL5340PA datasheet). I then started scanning and let it run for a longer period of time as I am not in an environment currently with a large amount of BT devices to be scanned (As well as the BT devices already in my environment, I placed an advertiser that advertises every minute for 30 seconds to speed up testing). The DK continuously scanned without interaction for 2.5 days until I stopped it today. 

    Seeing this I did some further testing, with default projects to confirm. I made a default HCI_USB project and added in the HCI_RPMSG configs:

    CONFIG_MPSL=y
    CONFIG_MPSL_FEM=y
    CONFIG_MPSL_FEM_NRF21540_GPIO=y
    CONFIG_MPSL_FEM_NRF21540_TX_GAIN_DB=20
    CONFIG_BT_CTLR_TX_PWR_ANTENNA=20
    CONFIG_MPSL_FEM_NRF21540_GPIO_SPI=y

    Enabling the SPI MPSL communication. This project, in my new environment, ran for 6-10minutes over a few attempts before it encountered the problem. 

    Then I used the same HCI_RPMSG configs except changed CONFIG_MPSL_FEM_NRF21540_GPIO_SPI=n.This new image ran for 40 minutes without issue before I stopped it. 

    I then repeated the above test with the defualt HCI_UART project (Adding in the CDC-ACM configs as well). I saw the same results with SPI being enabled it stopped in 6-10 minutes, and without it has continued running for over an hour without issue.

    This to me seems to confirm that it is an issue with SPI communication to the FEM. Looking at the assert that was raised in the original netcore error log, I would think this is due to a thread priority issue between SPI and radio/other processes in the netcore running, or an issue with the communication speed to the FEM. I also noticed that in the BL5340PA datasheet it states that the SPI interface cannot be used while the radio is being used:

    and possibly some conflict here is causing this issue.

    I will be doing some more tests with logging enabled on the net and app cores to see if I can catch any differences between the two, SPI enabled/disabled. But, let me know if there are any ideas or suggestions around this. Thanks again!

    Genera Note: In a low-power device that we have the BL5340PA in, not the one in question here, I found that without the SPI communication enabled there were power consumption issues at low power (which does not matter as much for this BLE adapter) and Laird told me this communication was required for proper functionality of the module, which it may only be needed for certifications other than FCC which I will confirm, but CE is a requirement for me making this SPI communication necessary. 

  • Thanks again for the detailed report. We will look into this and get back to you.

  • I just want to add, the team of Laird FAE's assisting as well have found issues with the nordic FEM driver while including the SPI communication previously. (Not relating specifically to the hci_usb uart projects we are looking into)

    The ticket number is: 311698

     But it seems I am unable to access this ticket. Just wanted to put this here in case it helps the nordic team reference any information as I was told this was tested with the nordic hardware.

    Thanks!

Related