Timer does not work properly

I set a timer on the net core of nrf5340. The timer sets an interrupt of 10s. After the chip is reset and runs for 10s, the while (1) of the main function is interrupted, but it doesn't seem to enter the interrupt function. I don't know where the problem is. The following my initialization code, please help me see, thank you.

const nrfx_timer_t TIMER_FC = NRFX_TIMER_INSTANCE(0);


void timer_fc_event_handler(nrf_timer_event_t event_type, void* p_context)
{
    switch (event_type)
    {
	case NRF_TIMER_EVENT_COMPARE0:
            printk("test\r\n");
        break;
            
        default:
            //Do nothing.
            break;
    }
}


void timer_fc_init(void)
{
    uint32_t time_ms = 10000; 
    uint32_t time_ticks;

    nrfx_err_t err_code;
	
    nrfx_timer_config_t timer_cfg = NRFX_TIMER_DEFAULT_CONFIG;

    timer_cfg.bit_width = NRF_TIMER_BIT_WIDTH_32;
    timer_cfg.p_context = timer_fc_event_handler;
    timer_cfg.frequency = NRF_TIMER_FREQ_16MHz;
    timer_cfg.interrupt_priority = 7;
    timer_cfg.mode = NRF_TIMER_MODE_TIMER;
    
    err_code = nrfx_timer_init(&TIMER_FC, &timer_cfg, timer_fc_event_handler);
	  
    time_ticks = nrfx_timer_ms_to_ticks(&TIMER_FC, time_ms);

    nrfx_timer_extended_compare(
         &TIMER_FC, NRF_TIMER_CC_CHANNEL0, time_ticks, NRF_TIMER_SHORT_COMPARE0_CLEAR_MASK, true);

    IRQ_DIRECT_CONNECT(TIMER0_IRQn, 0,
			   timer_fc_event_handler, 0);

    irq_enable(TIMER1_IRQn);

    nrfx_timer_enable(&TIMER_FC);
}


void main(void)
{
	int err;
        uint32_t temp;
        uint8_t rx_data[100];


        PA_Init();
        PA_mode_set(pa_rx_mode);
        ANT_Switch_set(ant4);

        printk("This RX NET Core\r\n");

        NRF_CLOCK->EVENTS_HFCLKSTARTED = 0;
        NRF_CLOCK->TASKS_HFCLKSTART = 1;
        while (NRF_CLOCK->EVENTS_HFCLKSTARTED == 0);

        printk("clock init\r\n");
        
        printk("channel set:%d\r\n", esb_set_rf_channel(86));
        err = esb_start_rx();

        //radio_registers_read();
        
        printk("channel:%d\r\n",NRF_RADIO->FREQUENCY);

        timer_fc_init();

        while(1)
        {
            printk("main while\r\n");
            k_sleep(K_MSEC(2000));
        }
}

Parents
  • "irq_enable(TIMER1_IRQn);"

    Should be "irq_enable(TIMER0_IRQn);".

  • Thank you for your reminder. I have corrected this error. The problem still hasn't been solved. After the chip is reset, five main while are printed, that is, 10s later, the interrupt function set by timer is triggered, but test is not printed. When I enter debug, I see that after entering the interrupt function, it has been looping in it and does not return to the Mian. Please help me analyze the problems, thank you.

  • Thank you for your patience. The SDK version used is v1.5.0, and the following are some of my configuration files. Thank you.

  • The following is the content of zephyr.dts

    /dts-v1/;
    
    / {
    	#address-cells = < 0x1 >;
    	#size-cells = < 0x1 >;
    	model = "Nordic NRF5340 DK NRF5340 Network";
    	compatible = "nordic,nrf5340-dk-nrf5340-cpunet";
    	chosen {
    		zephyr,entropy = &rng;
    		zephyr,flash-controller = &flash_controller;
    		zephyr,console = &uart0;
    		zephyr,shell-uart = &uart0;
    		zephyr,uart-mcumgr = &uart0;
    		zephyr,bt-mon-uart = &uart0;
    		zephyr,bt-c2h-uart = &uart0;
    		zephyr,sram = &sram1;
    		zephyr,flash = &flash1;
    		zephyr,code-partition = &slot0_partition;
    		zephyr,ipc_shm = &sram0_shared;
    	};
    	aliases {
    		led0 = &led0;
    		led1 = &led1;
    		led2 = &led2;
    		led3 = &led3;
    		sw0 = &button0;
    		sw1 = &button1;
    		sw2 = &button2;
    		sw3 = &button3;
    	};
    	soc {
    		#address-cells = < 0x1 >;
    		#size-cells = < 0x1 >;
    		compatible = "nordic,nRF5340-CPUNET-QKAA", "nordic,nRF5340-CPUNET", "nordic,nRF53", "simple-bus";
    		interrupt-parent = < &nvic >;
    		ranges;
    		nvic: interrupt-controller@e000e100 {
    			compatible = "arm,v8m-nvic";
    			reg = < 0xe000e100 0xc00 >;
    			interrupt-controller;
    			#interrupt-cells = < 0x2 >;
    			arm,num-irq-priority-bits = < 0x3 >;
    			phandle = < 0x1 >;
    		};
    		systick: timer@e000e010 {
    			compatible = "arm,armv8m-systick";
    			reg = < 0xe000e010 0x10 >;
    			status = "disabled";
    		};
    		sram0: memory@20000000 {
    			compatible = "mmio-sram";
    			reg = < 0x20000000 0x80000 >;
    		};
    		sram1: memory@21000000 {
    			compatible = "mmio-sram";
    			reg = < 0x21000000 0x10000 >;
    		};
    		clock: clock@41005000 {
    			compatible = "nordic,nrf-clock";
    			reg = < 0x41005000 0x1000 >;
    			interrupts = < 0x5 0x1 >;
    			status = "okay";
    			label = "CLOCK";
    		};
    		dppic: dppic@4100f000 {
    			compatible = "nordic,nrf-dppic";
    			reg = < 0x4100f000 0x1000 >;
    			status = "okay";
    			label = "DPPIC";
    		};
    		ecb: ecb@4100d000 {
    			compatible = "nordic,nrf-ecb";
    			reg = < 0x4100d000 0x1000 >;
    			interrupts = < 0xd 0x1 >;
    			status = "okay";
    			label = "ECB";
    		};
    		egu0: egu@41014000 {
    			compatible = "nordic,nrf-egu";
    			reg = < 0x41014000 0x1000 >;
    			interrupts = < 0x14 0x1 >;
    			status = "okay";
    			label = "EGU_0";
    		};
    		ficr: ficr@1ff0000 {
    			compatible = "nordic,nrf-ficr";
    			reg = < 0x1ff0000 0x1000 >;
    			status = "okay";
    		};
    		gpio0: gpio@418c0500 {
    			compatible = "nordic,nrf-gpio";
    			gpio-controller;
    			reg = < 0x418c0500 0x300 >;
    			#gpio-cells = < 0x2 >;
    			label = "GPIO_0";
    			status = "okay";
    			port = < 0x0 >;
    			phandle = < 0x2 >;
    		};
    		gpio1: gpio@418c0800 {
    			compatible = "nordic,nrf-gpio";
    			gpio-controller;
    			reg = < 0x418c0800 0x300 >;
    			#gpio-cells = < 0x2 >;
    			ngpios = < 0x10 >;
    			label = "GPIO_1";
    			status = "okay";
    			port = < 0x1 >;
    		};
    		gpiote: gpiote@4100a000 {
    			compatible = "nordic,nrf-gpiote";
    			reg = < 0x4100a000 0x1000 >;
    			interrupts = < 0xa 0x5 >;
    			status = "okay";
    			label = "GPIOTE_0";
    		};
    		i2c0: i2c@41013000 {
    			#address-cells = < 0x1 >;
    			#size-cells = < 0x0 >;
    			reg = < 0x41013000 0x1000 >;
    			clock-frequency = < 0x186a0 >;
    			interrupts = < 0x13 0x1 >;
    			status = "disabled";
    			label = "I2C_0";
    		};
    		ipc: ipc@41012000 {
    			compatible = "nordic,nrf-ipc";
    			reg = < 0x41012000 0x1000 >;
    			interrupts = < 0x12 0x1 >;
    			status = "okay";
    			label = "IPC";
    		};
    		power: power@41005000 {
    			compatible = "nordic,nrf-power";
    			reg = < 0x41005000 0x1000 >;
    			interrupts = < 0x5 0x1 >;
    			status = "okay";
    		};
    		rng: random@41009000 {
    			compatible = "nordic,nrf-rng";
    			reg = < 0x41009000 0x1000 >;
    			interrupts = < 0x9 0x1 >;
    			status = "okay";
    			label = "RNG";
    		};
    		rtc0: rtc@41011000 {
    			compatible = "nordic,nrf-rtc";
    			reg = < 0x41011000 0x1000 >;
    			cc-num = < 0x4 >;
    			interrupts = < 0x11 0x1 >;
    			status = "okay";
    			label = "RTC_0";
    		};
    		rtc1: rtc@41016000 {
    			compatible = "nordic,nrf-rtc";
    			reg = < 0x41016000 0x1000 >;
    			cc-num = < 0x4 >;
    			interrupts = < 0x16 0x1 >;
    			status = "okay";
    			label = "RTC_1";
    		};
    		spi0: spi@41013000 {
    			#address-cells = < 0x1 >;
    			#size-cells = < 0x0 >;
    			reg = < 0x41013000 0x1000 >;
    			interrupts = < 0x13 0x1 >;
    			status = "disabled";
    			label = "SPI_0";
    		};
    		temp: temp@41010000 {
    			compatible = "nordic,nrf-temp";
    			reg = < 0x41010000 0x1000 >;
    			interrupts = < 0x10 0x1 >;
    			status = "okay";
    			label = "TEMP_0";
    		};
    		timer0: timer@4100c000 {
    			compatible = "nordic,nrf-timer";
    			status = "okay";
    			reg = < 0x4100c000 0x1000 >;
    			cc-num = < 0x8 >;
    			interrupts = < 0xc 0x1 >;
    			prescaler = < 0x0 >;
    			label = "TIMER0";
    		};
    		timer1: timer@41018000 {
    			compatible = "nordic,nrf-timer";
    			status = "okay";
    			reg = < 0x41018000 0x1000 >;
    			cc-num = < 0x8 >;
    			interrupts = < 0x18 0x1 >;
    			prescaler = < 0x0 >;
    			label = "TIMER1";
    		};
    		timer2: timer@41019000 {
    			compatible = "nordic,nrf-timer";
    			status = "okay";
    			reg = < 0x41019000 0x1000 >;
    			cc-num = < 0x8 >;
    			interrupts = < 0x19 0x1 >;
    			prescaler = < 0x0 >;
    			label = "TIMER2";
    		};
    		uart0: uart@41013000 {
    			compatible = "nordic,nrf-uarte";
    			reg = < 0x41013000 0x1000 >;
    			interrupts = < 0x13 0x1 >;
    			status = "okay";
    			label = "UART_0";
    			current-speed = < 0x1c200 >;
    			tx-pin = < 0x21 >;
    			rx-pin = < 0x20 >;
    			rts-pin = < 0xb >;
    			cts-pin = < 0xa >;
    		};
    		uicr: uicr@1ff8000 {
    			compatible = "nordic,nrf-uicr";
    			reg = < 0x1ff8000 0x1000 >;
    			status = "okay";
    		};
    		vmc: vmc@41081000 {
    			compatible = "nordic,nrf-vmc";
    			reg = < 0x41081000 0x1000 >;
    			status = "okay";
    		};
    		wdt: wdt0: watchdog@4100b000 {
    			compatible = "nordic,nrf-watchdog";
    			reg = < 0x4100b000 0x1000 >;
    			interrupts = < 0xb 0x1 >;
    			status = "okay";
    			label = "WDT";
    		};
    	};
    	cpus {
    		#address-cells = < 0x1 >;
    		#size-cells = < 0x0 >;
    		cpu@1 {
    			device_type = "cpu";
    			compatible = "arm,cortex-m33";
    			reg = < 0x1 >;
    			#address-cells = < 0x1 >;
    			#size-cells = < 0x1 >;
    			mpu: mpu@e000ed90 {
    				compatible = "arm,armv8m-mpu";
    				reg = < 0xe000ed90 0x40 >;
    				arm,num-mpu-regions = < 0x8 >;
    			};
    		};
    	};
    	flash_controller: flash-controller@41080000 {
    		compatible = "nordic,nrf53-flash-controller";
    		reg = < 0x41080000 0x1000 >;
    		#address-cells = < 0x1 >;
    		#size-cells = < 0x1 >;
    		label = "NRF_FLASH_DRV_NAME";
    		flash1: flash@1000000 {
    			compatible = "soc-nv-flash";
    			label = "NRF_FLASH";
    			erase-block-size = < 0x800 >;
    			write-block-size = < 0x4 >;
    			reg = < 0x1000000 0x40000 >;
    			partitions {
    				compatible = "fixed-partitions";
    				#address-cells = < 0x1 >;
    				#size-cells = < 0x1 >;
    				boot_partition: partition@0 {
    					label = "mcuboot";
    					reg = < 0x0 0xc000 >;
    				};
    				slot0_partition: partition@c000 {
    					label = "image-0";
    					reg = < 0xc000 0x12000 >;
    				};
    				slot1_partition: partition@1e000 {
    					label = "image-1";
    					reg = < 0x1e000 0x12000 >;
    				};
    				scratch_partition: partition@30000 {
    					label = "image-scratch";
    					reg = < 0x30000 0xa000 >;
    				};
    				storage_partition: partition@3a000 {
    					label = "storage";
    					reg = < 0x3a000 0x6000 >;
    				};
    			};
    		};
    	};
    	leds {
    		compatible = "gpio-leds";
    		led0: led_0 {
    			gpios = < &gpio0 0x1c 0x1 >;
    			label = "Green LED 0";
    		};
    		led1: led_1 {
    			gpios = < &gpio0 0x1d 0x1 >;
    			label = "Green LED 1";
    		};
    		led2: led_2 {
    			gpios = < &gpio0 0x1e 0x1 >;
    			label = "Green LED 2";
    		};
    		led3: led_3 {
    			gpios = < &gpio0 0x1f 0x1 >;
    			label = "Green LED 3";
    		};
    	};
    	buttons {
    		compatible = "gpio-keys";
    		button0: button_0 {
    			gpios = < &gpio0 0x17 0x11 >;
    			label = "Push button 1";
    		};
    		button1: button_1 {
    			gpios = < &gpio0 0x18 0x11 >;
    			label = "Push button 2";
    		};
    		button2: button_2 {
    			gpios = < &gpio0 0x8 0x11 >;
    			label = "Push button 3";
    		};
    		button3: button_3 {
    			gpios = < &gpio0 0x9 0x11 >;
    			label = "Push button 4";
    		};
    	};
    	reserved-memory {
    		#address-cells = < 0x1 >;
    		#size-cells = < 0x1 >;
    		ranges;
    		sram0_shared: memory@20070000 {
    			reg = < 0x20070000 0x10000 >;
    		};
    	};
    };
    

  • The following is the contents of the .Config  file.

    # CONFIG_SPI is not set
    # CONFIG_I2C is not set
    # CONFIG_KSCAN is not set
    # CONFIG_WIFI is not set
    # CONFIG_MODEM is not set
    # CONFIG_UART_INTERRUPT_DRIVEN is not set
    CONFIG_GPIO_NRF_P1=y
    CONFIG_BOARD="nrf5340dk_nrf5340_cpunet"
    CONFIG_FLASH_LOAD_SIZE=0
    CONFIG_SRAM_SIZE=64
    CONFIG_FLASH_LOAD_OFFSET=0
    CONFIG_SOC="nRF5340_CPUNET_QKAA"
    CONFIG_SOC_SERIES="nrf53"
    CONFIG_NUM_IRQS=30
    CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=32768
    CONFIG_HEAP_MEM_POOL_SIZE=4096
    # CONFIG_WATCHDOG is not set
    # CONFIG_UART_NS16550 is not set
    CONFIG_GPIO=y
    CONFIG_PM=y
    # CONFIG_PM_DEVICE is not set
    CONFIG_SOC_HAS_TIMING_FUNCTIONS=y
    CONFIG_ARCH_HAS_CUSTOM_BUSY_WAIT=y
    # CONFIG_CORTEX_M_SYSTICK is not set
    CONFIG_CLOCK_CONTROL=y
    CONFIG_NRF_RTC_TIMER=y
    CONFIG_SYS_CLOCK_TICKS_PER_SEC=32768
    CONFIG_BUILD_OUTPUT_HEX=y
    CONFIG_ROM_START_OFFSET=0
    CONFIG_FLASH_SIZE=256
    CONFIG_FLASH_BASE_ADDRESS=0x1000000
    # CONFIG_GPIO_MCUX is not set
    # CONFIG_CPU_HAS_CUSTOM_FIXED_SOC_MPU_REGIONS is not set
    # CONFIG_TINYCRYPT is not set
    CONFIG_SERIAL=y
    # CONFIG_UART_PL011 is not set
    # CONFIG_IPM_STM32_IPCC is not set
    
    #
    # Modules
    #
    
    #
    # Available modules.
    #
    
    #
    # nrf (D:ncsv1.5.0nrf)
    #
    
    #
    # Nordic nRF Connect
    #
    CONFIG_MAIN_STACK_SIZE=1024
    CONFIG_PRIVILEGED_STACK_SIZE=1024
    CONFIG_NCS_SAMPLES_DEFAULTS=y
    # CONFIG_NCS_SAMPLE_EMPTY_APP_CORE_CHILD_IMAGE is not set
    CONFIG_LOG_DEFAULT_LEVEL=1
    
    #
    # Bootloader
    #
    # CONFIG_BUILD_S1_VARIANT is not set
    # CONFIG_SECURE_BOOT is not set
    CONFIG_PM_PARTITION_SIZE_PROVISION=0x800
    # 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_HASH=y
    # end of Secure Boot firmware validation
    # end of Bootloader
    
    #
    # Bluetooth Low Energy
    #
    CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=1024
    # end of Bluetooth Low Energy
    
    #
    # DFU
    #
    
    #
    # DFU
    #
    # CONFIG_DFU_TARGET is not set
    # end of DFU
    # end of DFU
    
    CONFIG_ESB=y
    CONFIG_ESB_MAX_PAYLOAD_LENGTH=72
    CONFIG_ESB_TX_FIFO_SIZE=8
    CONFIG_ESB_RX_FIFO_SIZE=8
    CONFIG_ESB_PIPE_COUNT=8
    
    #
    # Hardware selection (alter with care)
    #
    # CONFIG_ESB_SYS_TIMER0 is not set
    # CONFIG_ESB_SYS_TIMER1 is not set
    CONFIG_ESB_SYS_TIMER2=y
    # CONFIG_ESB_SYS_TIMER3 is not set
    # CONFIG_ESB_SYS_TIMER4 is not set
    # end of Hardware selection (alter with care)
    
    #
    # Peripheral CPU DFU (PCD)
    #
    # CONFIG_PCD is not set
    # end of Peripheral CPU DFU (PCD)
    
    #
    # Networking
    #
    
    #
    # Application protocols
    #
    # CONFIG_NRF_CLOUD 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
    # CONFIG_CLOUD_API 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
    # 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_PROFILER is not set
    
    #
    # SPM
    #
    # CONFIG_SPM is not set
    # CONFIG_IS_SPM is not set
    # end of SPM
    
    # CONFIG_FW_INFO is not set
    # CONFIG_PPI_TRACE is not set
    # CONFIG_CPU_LOAD is not set
    
    #
    # Nordic MPSL
    #
    CONFIG_MPSL_THREAD_COOP_PRIO=8
    CONFIG_MPSL_SIGNAL_STACK_SIZE=1024
    CONFIG_MPSL_TIMESLOT_SESSION_COUNT=0
    # 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=y
    # CONFIG_MPSL_LOG_LEVEL_DBG is not set
    CONFIG_MPSL_LOG_LEVEL=3
    # end of Nordic MPSL
    
    #
    # Partition Manager
    #
    # CONFIG_PARTITION_MANAGER_ENABLED is not set
    CONFIG_SRAM_BASE_ADDRESS=0x21000000
    
    #
    # Zephyr subsystem configurations
    #
    # end of Zephyr subsystem configurations
    
    #
    # Zephyr samples configurations
    #
    # end of Zephyr samples configurations
    
    #
    # NCS subsystem configurations
    #
    
    #
    # NCS samples configurations
    #
    # end of NCS samples configurations
    
    # CONFIG_PM_SINGLE_IMAGE is not set
    # CONFIG_PM_EXTERNAL_FLASH is not set
    CONFIG_PM_SRAM_BASE=0x21000000
    CONFIG_PM_SRAM_SIZE=0x10000
    # end of Partition Manager
    
    #
    # nRF RPC (Remote Procedure Call) library
    #
    CONFIG_NRF_RPC_THREAD_STACK_SIZE=1024
    CONFIG_NRF_RPC_THREAD_PRIORITY=2
    CONFIG_RPMSG_REMOTE=y
    # CONFIG_RPMSG_MASTER is not set
    CONFIG_NRF_RPC_TR_PRMSG_RX_STACK_SIZE=1536
    CONFIG_NRF_RPC_TR_PRMSG_RX_PRIORITY=-1
    # CONFIG_NRF_RPC_LOG_LEVEL_OFF is not set
    # CONFIG_NRF_RPC_LOG_LEVEL_ERR is not set
    # CONFIG_NRF_RPC_LOG_LEVEL_WRN is not set
    CONFIG_NRF_RPC_LOG_LEVEL_INF=y
    # CONFIG_NRF_RPC_LOG_LEVEL_DBG is not set
    CONFIG_NRF_RPC_LOG_LEVEL=3
    # CONFIG_NRF_RPC_TR_LOG_LEVEL_OFF is not set
    # CONFIG_NRF_RPC_TR_LOG_LEVEL_ERR is not set
    # CONFIG_NRF_RPC_TR_LOG_LEVEL_WRN is not set
    CONFIG_NRF_RPC_TR_LOG_LEVEL_INF=y
    # CONFIG_NRF_RPC_TR_LOG_LEVEL_DBG is not set
    CONFIG_NRF_RPC_TR_LOG_LEVEL=3
    # CONFIG_NRF_RPC_OS_LOG_LEVEL_OFF is not set
    # CONFIG_NRF_RPC_OS_LOG_LEVEL_ERR is not set
    # CONFIG_NRF_RPC_OS_LOG_LEVEL_WRN is not set
    CONFIG_NRF_RPC_OS_LOG_LEVEL_INF=y
    # CONFIG_NRF_RPC_OS_LOG_LEVEL_DBG is not set
    CONFIG_NRF_RPC_OS_LOG_LEVEL=3
    # CONFIG_NRF_RPC_CBOR_LOG_LEVEL_OFF is not set
    # CONFIG_NRF_RPC_CBOR_LOG_LEVEL_ERR is not set
    # CONFIG_NRF_RPC_CBOR_LOG_LEVEL_WRN is not set
    CONFIG_NRF_RPC_CBOR_LOG_LEVEL_INF=y
    # CONFIG_NRF_RPC_CBOR_LOG_LEVEL_DBG is not set
    CONFIG_NRF_RPC_CBOR_LOG_LEVEL=3
    # 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=y
    # CONFIG_MGMT_FMFU_LOG_LEVEL_DBG is not set
    CONFIG_MGMT_FMFU_LOG_LEVEL=3
    # end of Full Modem Firmware Update Management(FMFU)
    
    CONFIG_BOOT_SIGNATURE_KEY_FILE=""
    # CONFIG_CDDL_GEN is not set
    
    #
    # Libraries
    #
    # CONFIG_AGPS is not set
    # CONFIG_AGPS_LOG_LEVEL_OFF is not set
    # CONFIG_AGPS_LOG_LEVEL_ERR is not set
    # CONFIG_AGPS_LOG_LEVEL_WRN is not set
    CONFIG_AGPS_LOG_LEVEL_INF=y
    # CONFIG_AGPS_LOG_LEVEL_DBG is not set
    CONFIG_AGPS_LOG_LEVEL=3
    
    #
    # Binary libraries
    #
    # end of Binary libraries
    
    # CONFIG_NRF_MODEM_LIB is not set
    
    #
    # BSD library (deprecated)
    #
    
    #
    # All the configs below are deprecated, please use NRF_MODEM_LIB equivalents instead
    #
    # CONFIG_BSD_LIBRARY is not set
    # end of BSD library (deprecated)
    
    # CONFIG_ADP536X is not set
    
    #
    # AT Command driver
    #
    # end of AT Command driver
    
    # CONFIG_LTE_LINK_CONTROL is not set
    # CONFIG_FPROTECT is not set
    CONFIG_NRF_ACL_FLASH_REGION_SIZE=0x800
    CONFIG_FPROTECT_BLOCK_SIZE=0x800
    
    #
    # AT Host Library for nrf91
    #
    # CONFIG_AT_HOST_LIBRARY is not set
    # end of AT Host Library for nrf91
    
    # CONFIG_DK_LIBRARY is not set
    # CONFIG_AT_CMD_PARSER 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=y
    # CONFIG_FATAL_ERROR_LOG_LEVEL_DBG is not set
    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_RAM_POWER_DOWN_LIBRARY is not set
    # end of Libraries
    
    #
    # Device Drivers
    #
    # CONFIG_BT_DRIVER_QUIRK_NO_AUTO_DLE is not set
    # CONFIG_ETH_RTT is not set
    # CONFIG_SENSOR is not set
    
    #
    # GPS Drivers
    #
    # CONFIG_GPS_SIM is not set
    # end of GPS Drivers
    
    # CONFIG_NRF_SW_LPUART is not set
    # end of Device Drivers
    
    #
    # External libraries
    #
    # end of External libraries
    
    # CONFIG_UNITY is not set
    # end of Nordic nRF Connect
    
    CONFIG_ZEPHYR_NRF_MODULE=y
    # end of nrf (D:ncsv1.5.0nrf)
    
    #
    # mcuboot (D:ncsv1.5.0bootloadermcuboot)
    #
    
    #
    # MCUboot
    #
    CONFIG_DT_FLASH_WRITE_BLOCK_SIZE=4
    # end of MCUboot
    
    CONFIG_ZEPHYR_MCUBOOT_MODULE=y
    # end of mcuboot (D:ncsv1.5.0bootloadermcuboot)
    
    #
    # nrfxlib (D:ncsv1.5.0nrfxlib)
    #
    
    #
    # 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 is not set
    
    #
    # Crypto libraries for nRF5x SOCs.
    #
    # CONFIG_NRF_OBERON is not set
    # CONFIG_NRF_CC310_BL is not set
    # end of Crypto libraries for nRF5x SOCs.
    
    #
    # Nordic Security
    #
    # CONFIG_NORDIC_SECURITY_BACKEND is not set
    # end of Nordic Security
    
    CONFIG_NRF_RPC=y
    CONFIG_NRF_RPC_CBOR=y
    CONFIG_NRF_RPC_TR_RPMSG=y
    # CONFIG_NRF_RPC_TR_CUSTOM is not set
    CONFIG_NRF_RPC_CMD_CTX_POOL_SIZE=8
    CONFIG_NRF_RPC_THREAD_POOL_SIZE=3
    
    #
    # ZBOSS library configuration
    #
    CONFIG_ZIGBEE_LIBRARY_DEVELOPMENT=y
    CONFIG_ZIGBEE_LIBRARY_SOC=y
    # CONFIG_ZIGBEE_LIBRARY_NCP_DEV is not set
    # CONFIG_ZIGBEE_GP_NONE is not set
    CONFIG_ZIGBEE_GP_PB=y
    # CONFIG_ZIGBEE_GP_CB is not set
    # end of ZBOSS library configuration
    # end of Nordic nrfxlib
    
    CONFIG_ZEPHYR_NRFXLIB_MODULE=y
    # end of nrfxlib (D:ncsv1.5.0nrfxlib)
    
    #
    # cddl-gen (D:ncsv1.5.0moduleslibcddl-gen)
    #
    CONFIG_ZEPHYR_CDDL_GEN_MODULE=y
    # end of cddl-gen (D:ncsv1.5.0moduleslibcddl-gen)
    
    #
    # hal_nordic (D:ncsv1.5.0moduleshalnordic)
    #
    CONFIG_ZEPHYR_HAL_NORDIC_MODULE=y
    CONFIG_HAS_NORDIC_DRIVERS=y
    
    #
    # Nordic drivers
    #
    # CONFIG_NRF_802154_RADIO_DRIVER is not set
    # CONFIG_NRF_802154_SER_RADIO 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_DPPI=y
    # CONFIG_NRFX_EGU is not set
    # 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_RTC is not set
    # CONFIG_NRFX_RTC0 is not set
    # CONFIG_NRFX_RTC1 is not set
    # CONFIG_NRFX_SPIM is not set
    # CONFIG_NRFX_SPIM0 is not set
    # CONFIG_NRFX_SPIS is not set
    # CONFIG_NRFX_SPIS0 is not set
    # CONFIG_NRFX_SYSTICK is not set
    # CONFIG_NRFX_TEMP is not set
    # CONFIG_NRFX_TIMER is not set
    # CONFIG_NRFX_TIMER0 is not set
    # CONFIG_NRFX_TIMER1 is not set
    # CONFIG_NRFX_TIMER2 is not set
    # CONFIG_NRFX_TWIM is not set
    # CONFIG_NRFX_TWIM0 is not set
    # CONFIG_NRFX_TWIS is not set
    # CONFIG_NRFX_TWIS0 is not set
    # CONFIG_NRFX_UARTE is not set
    # CONFIG_NRFX_UARTE0 is not set
    # CONFIG_NRFX_WDT is not set
    # CONFIG_NRFX_WDT0 is not set
    # CONFIG_NRFX_PRS is not set
    # 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 nrfx drivers
    # end of hal_nordic (D:ncsv1.5.0moduleshalnordic)
    
    #
    # connectedhomeip (D:ncsv1.5.0moduleslibconnectedhomeip)
    #
    # CONFIG_CHIP is not set
    CONFIG_ZEPHYR_CONNECTEDHOMEIP_MODULE=y
    # end of connectedhomeip (D:ncsv1.5.0moduleslibconnectedhomeip)
    
    #
    # Optional modules. Make sure they're installed, via the project manifest.
    #
    # CONFIG_CANOPENNODE is not set
    # CONFIG_CIVETWEB is not set
    CONFIG_HAS_CMSIS_CORE=y
    CONFIG_HAS_CMSIS_CORE_M=y
    CONFIG_LIBMETAL=y
    CONFIG_LIBMETAL_SRC_PATH="libmetal"
    # CONFIG_HAS_SEMTECH_LORAMAC is not set
    # CONFIG_HAS_SEMTECH_SOFT_SE is not set
    # CONFIG_HAS_SEMTECH_RADIO_DRIVERS is not set
    # CONFIG_MBEDTLS is not set
    # CONFIG_HAS_MEC_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_NUM_PREEMPT_PRIORITIES=15
    CONFIG_TINYCBOR=y
    # CONFIG_CBOR_ENCODER_NO_CHECK_USER is not set
    CONFIG_CBOR_PARSER_MAX_RECURSIONS=1024
    # CONFIG_CBOR_PARSER_NO_STRICT_CHECKS is not set
    # CONFIG_CBOR_FLOATING_POINT is not set
    # CONFIG_CBOR_HALF_FLOAT_TYPE is not set
    CONFIG_CBOR_WITHOUT_OPEN_MEMSTREAM=y
    # CONFIG_CBOR_PRETTY_PRINTING is not set
    # CONFIG_MCUBOOT_BOOTUTIL_LIB is not set
    
    #
    # Unavailable modules, please install those via the project manifest.
    #
    # end of Modules
    
    # CONFIG_BOARD_NRF5340PDK_NRF5340_CPUNET is not set
    CONFIG_BOARD_NRF5340DK_NRF5340_CPUNET=y
    
    #
    # Board Options
    #
    CONFIG_IPM_NRFX=y
    CONFIG_IPM_MSG_CH_0_ENABLE=y
    CONFIG_IPM_MSG_CH_1_ENABLE=y
    CONFIG_IPM_MSG_CH_0_TX=y
    # CONFIG_IPM_MSG_CH_0_RX is not set
    # CONFIG_IPM_MSG_CH_1_TX is not set
    CONFIG_IPM_MSG_CH_1_RX=y
    CONFIG_DOMAIN_CPUAPP_BOARD="nrf5340dk_nrf5340_cpuapp"
    # end of Board Options
    
    # CONFIG_SOC_SERIES_BEETLE is not set
    # CONFIG_SOC_SERIES_ARM_DESIGNSTART is not set
    # CONFIG_SOC_SERIES_MPS2 is not set
    # CONFIG_SOC_SERIES_MUSCA is not set
    # CONFIG_SOC_SERIES_MUSCA_B1 is not set
    # CONFIG_SOC_SERIES_MUSCA_S1 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_SAMR21 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_XMC_4XXX is not set
    # CONFIG_SOC_SERIES_MEC1501X is not set
    # CONFIG_SOC_SERIES_MEC1701X 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_M48X is not set
    # CONFIG_SOC_SERIES_NPCX7 is not set
    # CONFIG_SOC_SERIES_IMX_6X_M4 is not set
    # CONFIG_SOC_SERIES_IMX7_M4 is not set
    # CONFIG_SOC_SERIES_IMX8MM_M4 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_LPC54XXX is not set
    # CONFIG_SOC_SERIES_LPC55XXX is not set
    # CONFIG_SOC_QEMU_CORTEX_A53 is not set
    # CONFIG_SOC_EOS_S3 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_EFR32FG1P is not set
    # CONFIG_SOC_SERIES_EFR32MG12P is not set
    # CONFIG_SOC_SERIES_EFR32MG21 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_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_STM32WBX is not set
    # CONFIG_SOC_TI_LM3S6965 is not set
    # CONFIG_SOC_SERIES_CC13X2_CC26X2 is not set
    # CONFIG_SOC_SERIES_CC32XX is not set
    # CONFIG_SOC_SERIES_MSP432P4XX is not set
    # CONFIG_SOC_XILINX_ZYNQMP_RPU is not set
    
    #
    # Hardware Configuration
    #
    CONFIG_CPU_HAS_ARM_MPU=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_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_IEEE802154=y
    CONFIG_HAS_HW_NRF_RNG=y
    CONFIG_HAS_HW_NRF_RTC0=y
    CONFIG_HAS_HW_NRF_RTC1=y
    CONFIG_HAS_HW_NRF_SPIM0=y
    CONFIG_HAS_HW_NRF_SPIS0=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_TWIM0=y
    CONFIG_HAS_HW_NRF_TWIS0=y
    CONFIG_HAS_HW_NRF_UARTE0=y
    CONFIG_HAS_HW_NRF_WDT=y
    CONFIG_NRF_HW_RTC1_RESERVED=y
    CONFIG_SOC_NRF5340_CPUNET=y
    # CONFIG_SOC_NRF5340_CPUAPP_QKAA is not set
    CONFIG_SOC_NRF5340_CPUNET_QKAA=y
    CONFIG_NRF_ENABLE_CACHE=y
    # 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=y
    # CONFIG_SOC_LOG_LEVEL_DBG is not set
    CONFIG_SOC_LOG_LEVEL=3
    # end of Hardware Configuration
    
    CONFIG_SOC_COMPATIBLE_NRF=y
    
    #
    # ARM Options
    #
    CONFIG_ARCH="arm"
    CONFIG_CPU_CORTEX=y
    CONFIG_CPU_CORTEX_M=y
    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_PLATFORM_SPECIFIC_INIT=y
    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 is not set
    # CONFIG_SW_VECTOR_RELAY is not set
    # CONFIG_CORTEX_M_DWT is not set
    # end of ARM Cortex-M0/M0+/M1/M3/M4/M7/M23/M33 options
    
    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_CUSTOM_SECTION_ALIGN is not set
    CONFIG_CUSTOM_SECTION_MIN_ALIGN_SIZE=32
    CONFIG_GEN_IRQ_VECTOR_TABLE=y
    CONFIG_IDLE_STACK_SIZE=256
    CONFIG_ISR_STACK_SIZE=2048
    CONFIG_TEST_EXTRA_STACKSIZE=0
    # end of ARM Options
    
    CONFIG_ARM=y
    CONFIG_ARCH_IS_SET=y
    
    #
    # General Architecture Options
    #
    # 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=y
    # CONFIG_ARCH_LOG_LEVEL_DBG is not set
    CONFIG_ARCH_LOG_LEVEL=3
    # 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=y
    # CONFIG_MPU_LOG_LEVEL_DBG is not set
    CONFIG_MPU_LOG_LEVEL=3
    CONFIG_HW_STACK_PROTECTION=y
    # CONFIG_USERSPACE is not set
    CONFIG_KOBJECT_TEXT_AREA=256
    CONFIG_GEN_PRIV_STACKS=y
    # CONFIG_STACK_GROWS_UP is not set
    
    #
    # Interrupt Configuration
    #
    # CONFIG_DYNAMIC_INTERRUPTS is not set
    CONFIG_GEN_SW_ISR_TABLE=y
    CONFIG_ARCH_SW_ISR_TABLE_ALIGN=0
    CONFIG_GEN_IRQ_START_VECTOR=0
    # CONFIG_EXTRA_EXCEPTION_INFO is not set
    # end of Interrupt Configuration
    
    # CONFIG_INIT_ARCH_HW_AT_BOOT is not set
    # end of General Architecture Options
    
    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_THREAD_ABORT=y
    CONFIG_CPU_HAS_MPU=y
    CONFIG_MPU=y
    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
    #
    # CONFIG_CACHE_MANAGEMENT is not set
    # end of Cache Options
    
    #
    # 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=y
    # CONFIG_KERNEL_LOG_LEVEL_DBG is not set
    CONFIG_KERNEL_LOG_LEVEL=3
    CONFIG_MULTITHREADING=y
    CONFIG_NUM_COOP_PRIORITIES=16
    CONFIG_MAIN_THREAD_PRIORITY=0
    CONFIG_COOP_ENABLED=y
    CONFIG_PREEMPT_ENABLED=y
    CONFIG_PRIORITY_CEILING=0
    CONFIG_NUM_METAIRQ_PRIORITIES=0
    # CONFIG_SCHED_DEADLINE is not set
    # CONFIG_SCHED_CPU_MASK is not set
    CONFIG_THREAD_STACK_INFO=y
    CONFIG_THREAD_CUSTOM_DATA=y
    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_INIT_STACKS is not set
    CONFIG_BOOT_BANNER=y
    CONFIG_BOOT_DELAY=0
    # CONFIG_THREAD_MONITOR is not set
    # CONFIG_THREAD_NAME is not set
    # CONFIG_THREAD_RUNTIME_STATS is not set
    # end of Kernel Debugging and Metrics
    
    #
    # Work Queue Options
    #
    CONFIG_SYSTEM_WORKQUEUE_PRIORITY=-1
    # 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_POLL is not set
    # 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_NUM_PIPE_ASYNC_MSGS=10
    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_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_IDLE=y
    CONFIG_TICKLESS_IDLE_THRESH=3
    CONFIG_TICKLESS_KERNEL=y
    # end of General Kernel Options
    
    CONFIG_HAS_DTS=y
    CONFIG_HAS_DTS_GPIO=y
    
    #
    # Device Drivers
    #
    # CONFIG_IEEE802154 is not set
    # CONFIG_LORA is not set
    CONFIG_UART_CONSOLE_ON_DEV_NAME="UART_0"
    CONFIG_CONSOLE=y
    CONFIG_CONSOLE_INPUT_MAX_LINE_LEN=128
    CONFIG_CONSOLE_HAS_DRIVER=y
    # CONFIG_CONSOLE_HANDLER is not set
    CONFIG_UART_CONSOLE=y
    CONFIG_UART_CONSOLE_INIT_PRIORITY=60
    # CONFIG_UART_CONSOLE_DEBUG_SERVER_HOOKS is not set
    # CONFIG_UART_CONSOLE_MCUMGR is not set
    # CONFIG_USB_UART_CONSOLE is not set
    # CONFIG_RAM_CONSOLE is not set
    # CONFIG_IPM_CONSOLE_SENDER is not set
    # CONFIG_IPM_CONSOLE_RECEIVER is not set
    # CONFIG_IPM_CONSOLE is not set
    # CONFIG_UART_PIPE is not set
    # CONFIG_UART_MCUMGR is not set
    # CONFIG_SEMIHOST_CONSOLE 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=y
    # CONFIG_UART_CONSOLE_LOG_LEVEL_DBG is not set
    CONFIG_UART_CONSOLE_LOG_LEVEL=3
    # CONFIG_GSM_MUX is not set
    CONFIG_HAS_SEGGER_RTT=y
    # CONFIG_USE_SEGGER_RTT is not set
    # CONFIG_EC_HOST_CMD_PERIPH is not set
    # CONFIG_NET_LOOPBACK is not set
    
    #
    # Capabilities
    #
    CONFIG_SERIAL_HAS_DRIVER=y
    CONFIG_SERIAL_SUPPORT_ASYNC=y
    CONFIG_SERIAL_SUPPORT_INTERRUPT=y
    # CONFIG_UART_ASYNC_API is not set
    # CONFIG_UART_LINE_CTRL is not set
    # CONFIG_UART_DRV_CMD 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_NRF_PARITY_BIT is not set
    CONFIG_UART_0_NRF_TX_BUFFER_SIZE=32
    CONFIG_NRF_UARTE_PERIPHERAL=y
    # CONFIG_UART_ALTERA_JTAG is not set
    # CONFIG_UART_XLNX_UARTLITE is not set
    
    #
    # Interrupt Controllers
    #
    # CONFIG_SWERV_PIC is not set
    # CONFIG_MULTI_LEVEL_INTERRUPTS is not set
    # end of Interrupt Controllers
    
    #
    # Timer Drivers
    #
    CONFIG_NRF_RTC_TIMER_USER_CHAN_COUNT=0
    # CONFIG_SYSTEM_CLOCK_NO_WAIT is not set
    # CONFIG_SYSTEM_CLOCK_WAIT_FOR_AVAILABILITY is not set
    CONFIG_SYSTEM_CLOCK_WAIT_FOR_STABILITY=y
    CONFIG_SYSTEM_CLOCK_DISABLE=y
    # 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
    # end of Timer Drivers
    
    # CONFIG_ENTROPY_GENERATOR is not set
    # CONFIG_PCIE is not set
    # CONFIG_PCIE_ENDPOINT 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=y
    # CONFIG_GPIO_LOG_LEVEL_DBG is not set
    CONFIG_GPIO_LOG_LEVEL=3
    # CONFIG_GPIO_DW is not set
    CONFIG_GPIO_NRFX=y
    CONFIG_GPIO_NRF_INIT_PRIORITY=40
    CONFIG_GPIO_NRF_P0=y
    # CONFIG_GPIO_ITE_IT8XXX2 is not set
    # CONFIG_GPIO_INTEL_APL is not set
    # CONFIG_GPIO_XLNX_AXI is not set
    # CONFIG_GPIO_EMUL is not set
    # CONFIG_SHARED_IRQ is not set
    # CONFIG_I2S is not set
    # CONFIG_PWM is not set
    # CONFIG_PINMUX is not set
    # CONFIG_ADC is not set
    # CONFIG_DAC 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=y
    # CONFIG_CLOCK_CONTROL_LOG_LEVEL_DBG is not set
    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 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 is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_30PPM is not set
    CONFIG_CLOCK_CONTROL_NRF_K32SRC_20PPM=y
    CONFIG_CLOCK_CONTROL_NRF_ACCURACY=20
    # CONFIG_PTP_CLOCK is not set
    CONFIG_IPM=y
    # CONFIG_IPM_MHU is not set
    # CONFIG_IPM_NRF_SINGLE_INSTANCE is not set
    
    #
    # IPM Message Channel [0] configuration
    #
    # end of IPM Message Channel [0] configuration
    
    #
    # IPM Message Channel [1] configuration
    #
    # end of IPM Message Channel [1] configuration
    
    #
    # IPM Message Channel [2] configuration
    #
    # CONFIG_IPM_MSG_CH_2_ENABLE is not set
    # end of IPM Message Channel [2] configuration
    
    #
    # IPM Message Channel [3] configuration
    #
    # CONFIG_IPM_MSG_CH_3_ENABLE is not set
    # end of IPM Message Channel [3] configuration
    
    #
    # IPM Message Channel [4] configuration
    #
    # CONFIG_IPM_MSG_CH_4_ENABLE is not set
    # end of IPM Message Channel [4] configuration
    
    #
    # IPM Message Channel [5] configuration
    #
    # CONFIG_IPM_MSG_CH_5_ENABLE is not set
    # end of IPM Message Channel [5] configuration
    
    #
    # IPM Message Channel [6] configuration
    #
    # CONFIG_IPM_MSG_CH_6_ENABLE is not set
    # end of IPM Message Channel [6] configuration
    
    #
    # IPM Message Channel [7] configuration
    #
    # CONFIG_IPM_MSG_CH_7_ENABLE is not set
    # end of IPM Message Channel [7] configuration
    
    #
    # IPM Message Channel [8] configuration
    #
    # CONFIG_IPM_MSG_CH_8_ENABLE is not set
    # end of IPM Message Channel [8] configuration
    
    #
    # IPM Message Channel [9] configuration
    #
    # CONFIG_IPM_MSG_CH_9_ENABLE is not set
    # end of IPM Message Channel [9] configuration
    
    #
    # IPM Message Channel [10] configuration
    #
    # CONFIG_IPM_MSG_CH_10_ENABLE is not set
    # end of IPM Message Channel [10] configuration
    
    #
    # IPM Message Channel [11] configuration
    #
    # CONFIG_IPM_MSG_CH_11_ENABLE is not set
    # end of IPM Message Channel [11] configuration
    
    #
    # IPM Message Channel [12] configuration
    #
    # CONFIG_IPM_MSG_CH_12_ENABLE is not set
    # end of IPM Message Channel [12] configuration
    
    #
    # IPM Message Channel [13] configuration
    #
    # CONFIG_IPM_MSG_CH_13_ENABLE is not set
    # end of IPM Message Channel [13] configuration
    
    #
    # IPM Message Channel [14] configuration
    #
    # CONFIG_IPM_MSG_CH_14_ENABLE is not set
    # end of IPM Message Channel [14] configuration
    
    #
    # IPM Message Channel [15] configuration
    #
    # CONFIG_IPM_MSG_CH_15_ENABLE is not set
    # end of IPM Message Channel [15] configuration
    
    # CONFIG_IPM_INTEL_ADSP is not set
    # CONFIG_IPM_LOG_LEVEL_OFF is not set
    # CONFIG_IPM_LOG_LEVEL_ERR is not set
    # CONFIG_IPM_LOG_LEVEL_WRN is not set
    CONFIG_IPM_LOG_LEVEL_INF=y
    # CONFIG_IPM_LOG_LEVEL_DBG is not set
    CONFIG_IPM_LOG_LEVEL=3
    # CONFIG_FLASH is not set
    # CONFIG_COUNTER is not set
    # CONFIG_DMA is not set
    # CONFIG_USB is not set
    # CONFIG_CRYPTO is not set
    # CONFIG_DISPLAY is not set
    # CONFIG_LED_STRIP is not set
    # CONFIG_LED is not set
    # CONFIG_CAN is not set
    # CONFIG_AUDIO is not set
    # CONFIG_NEURAL_NET_ACCEL is not set
    # CONFIG_HWINFO is not set
    # CONFIG_ESPI is not set
    # CONFIG_PS2 is not set
    # CONFIG_VIDEO is not set
    # CONFIG_EEPROM is not set
    # CONFIG_PECI is not set
    # CONFIG_PECI_INTERRUPT_DRIVEN is not set
    # CONFIG_REGULATOR is not set
    # CONFIG_MEMC is not set
    # CONFIG_VIRTUALIZATION is not set
    # end of Device Drivers
    
    #
    # C Library
    #
    CONFIG_MINIMAL_LIBC=y
    # CONFIG_NEWLIB_LIBC is not set
    # CONFIG_EXTERNAL_LIBC is not set
    CONFIG_HAS_NEWLIB_LIBC_NANO=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_STDOUT_CONSOLE=y
    # end of C Library
    
    #
    # Additional libraries
    #
    # CONFIG_FNMATCH is not set
    # CONFIG_LVGL is not set
    
    #
    # OS Support Library
    #
    # CONFIG_JSON_LIBRARY is not set
    # CONFIG_RING_BUFFER is not set
    # CONFIG_BASE64 is not set
    # CONFIG_SYS_HEAP_VALIDATE is not set
    CONFIG_SYS_HEAP_ALLOC_LOOPS=3
    # CONFIG_PRINTK64 is not set
    # CONFIG_PRINTK_SYNC 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
    # end of OS Support Library
    
    CONFIG_POSIX_MAX_FDS=4
    # CONFIG_POSIX_API is not set
    # CONFIG_PTHREAD_IPC is not set
    # CONFIG_POSIX_CLOCK is not set
    CONFIG_MAX_TIMER_COUNT=5
    # CONFIG_POSIX_MQUEUE is not set
    # CONFIG_EVENTFD is not set
    # CONFIG_OPENAMP_RSC_TABLE is not set
    # end of Additional libraries
    
    #
    # Sub Systems and OS Services
    #
    # CONFIG_BT is not set
    
    #
    # 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
    # CONFIG_CPLUSPLUS is not set
    
    #
    # System Monitoring Options
    #
    # CONFIG_BOOT_TIME_MEASUREMENT is not set
    # 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 is not set
    CONFIG_PRINTK=y
    CONFIG_EARLY_CONSOLE=y
    CONFIG_ASSERT=y
    CONFIG_ASSERT_LEVEL=2
    CONFIG_SPIN_VALIDATE=y
    # CONFIG_FORCE_NO_ASSERT is not set
    CONFIG_ASSERT_VERBOSE=y
    # CONFIG_ASSERT_NO_FILE_INFO is not set
    CONFIG_ASSERT_NO_COND_INFO=y
    CONFIG_ASSERT_NO_MSG_INFO=y
    # CONFIG_OBJECT_TRACING is not set
    # CONFIG_OVERRIDE_FRAME_POINTER_DEFAULT is not set
    # CONFIG_DEBUG_INFO is not set
    # CONFIG_OPENOCD_SUPPORT is not set
    # CONFIG_DEBUG_COREDUMP is not set
    # end of Debugging Options
    
    # CONFIG_DISK_ACCESS 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
    # end of Inter Processor Communication
    
    # CONFIG_JWT is not set
    CONFIG_LOG=y
    CONFIG_LOG_MINIMAL=y
    CONFIG_LOG_OVERRIDE_LEVEL=0
    CONFIG_LOG_MAX_LEVEL=4
    # CONFIG_LOG_MIPI_SYST_ENABLE is not set
    
    #
    # Device Management
    #
    
    #
    # Host command handler subsystem
    #
    # CONFIG_EC_HOST_CMD is not set
    # end of Host command handler subsystem
    
    # CONFIG_MCUMGR is not set
    # CONFIG_HAWKBIT is not set
    # CONFIG_UPDATEHUB is not set
    # CONFIG_OSDP is not set
    # end of Device Management
    
    #
    # Networking
    #
    # CONFIG_NET_BUF is not set
    # CONFIG_NETWORKING is not set
    # end of Networking
    
    #
    # Power Management
    #
    # CONFIG_SYS_POWER_MANAGEMENT is not set
    # CONFIG_PM_STATE_LOCK is not set
    # CONFIG_PM_DIRECT_FORCE_MODE is not set
    # CONFIG_PM_DEBUG is not set
    CONFIG_PM_POLICY_RESIDENCY=y
    # CONFIG_PM_POLICY_DUMMY is not set
    # CONFIG_PM_POLICY_APP is not set
    CONFIG_PM_POLICY_RESIDENCY_DEFAULT=y
    # 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=y
    # CONFIG_PM_LOG_LEVEL_DBG is not set
    CONFIG_PM_LOG_LEVEL=3
    # CONFIG_DEVICE_POWER_MANAGEMENT is not set
    # end of Power Management
    
    # CONFIG_SHELL is not set
    # CONFIG_STATS is not set
    # CONFIG_IMG_MANAGER is not set
    
    #
    # Random Number Generators
    #
    # CONFIG_TEST_RANDOM_GENERATOR is not set
    # end of Random Number Generators
    
    #
    # Storage
    #
    # CONFIG_STREAM_FLASH is not set
    # end of Storage
    
    # CONFIG_SETTINGS is not set
    
    #
    # Testing
    #
    # CONFIG_ZTEST is not set
    # CONFIG_ZTEST_MOCKING is not set
    # CONFIG_TEST is not set
    # CONFIG_TEST_USERSPACE is not set
    CONFIG_TEST_ARM_CORTEX_M=y
    # end of Testing
    
    # CONFIG_TIMING_FUNCTIONS is not set
    # CONFIG_TRACING is not set
    # end of Sub Systems and OS Services
    
    CONFIG_TOOLCHAIN_GNUARMEMB=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_CODE_DATA_RELOCATION is not set
    CONFIG_HAS_FLASH_LOAD_OFFSET=y
    # CONFIG_USE_DT_CODE_PARTITION is not set
    # CONFIG_HAVE_CUSTOM_LINKER_SCRIPT is not set
    CONFIG_KERNEL_ENTRY="__start"
    CONFIG_LINKER_SORT_BY_ALIGNMENT=y
    # end of Linker Options
    
    #
    # Compiler Options
    #
    # CONFIG_CODING_GUIDELINE_CHECK is not set
    # CONFIG_NATIVE_APPLICATION is not set
    CONFIG_SIZE_OPTIMIZATIONS=y
    # CONFIG_SPEED_OPTIMIZATIONS is not set
    # CONFIG_DEBUG_OPTIMIZATIONS is not set
    # CONFIG_NO_OPTIMIZATIONS is not set
    CONFIG_COMPILER_OPT=""
    # 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_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_STRIPPED is not set
    # CONFIG_APPLICATION_DEFINED_SYSCALL is not set
    # CONFIG_MAKEFILE_EXPORTS is not set
    # CONFIG_DEPRECATED_ZEPHYR_INT_TYPES is not set
    # end of Build Options
    # end of Build and Link Features
    
    #
    # Boot Options
    #
    # CONFIG_IS_BOOTLOADER is not set
    # CONFIG_BOOTLOADER_MCUBOOT is not set
    CONFIG_REBOOT=y
    # CONFIG_MISRA_SANE is not set
    # end of Boot Options
    
    #
    # Compatibility
    #
    CONFIG_COMPAT_INCLUDES=y
    # end of Compatibility
    
    #
    # Enhanced ShockBurst: Receiver
    #
    CONFIG_ESB_PRX_APP_LOG_LEVEL=4
    # end of Enhanced ShockBurst: Receiver
    

  • The contents of cmakelists.txt below.

    #
    # Copyright (c) 2018 Nordic Semiconductor
    #
    # SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
    #
    cmake_minimum_required(VERSION 3.13.1)
    
    find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
    project(NONE)
    
    FILE(GLOB app_sources src/*.c)
    # NORDIC SDK APP START
    target_sources(app PRIVATE ${app_sources} ../../include/log.c ../../include/data_fifo.c)
    target_sources(app PRIVATE ${app_sources}  ../../include/pa.c)
    
    # NORDIC SDK APP END
    

    Pa.c is used to control some GPIO, data_ FIFO. C are some data processing functions.

  • Sorry, this is the latest version of. Config. Please ignore the previous wrong version

    # CONFIG_SPI is not set
    # CONFIG_I2C is not set
    # CONFIG_KSCAN is not set
    # CONFIG_WIFI is not set
    # CONFIG_MODEM is not set
    # CONFIG_UART_INTERRUPT_DRIVEN is not set
    CONFIG_GPIO_NRF_P1=y
    CONFIG_BOARD="nrf5340dk_nrf5340_cpunet"
    CONFIG_FLASH_LOAD_SIZE=0
    CONFIG_SRAM_SIZE=64
    CONFIG_FLASH_LOAD_OFFSET=0
    CONFIG_SOC="nRF5340_CPUNET_QKAA"
    CONFIG_SOC_SERIES="nrf53"
    CONFIG_NUM_IRQS=30
    CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=32768
    CONFIG_HEAP_MEM_POOL_SIZE=4096
    # CONFIG_WATCHDOG is not set
    # CONFIG_UART_NS16550 is not set
    CONFIG_GPIO=y
    CONFIG_PM=y
    # CONFIG_PM_DEVICE is not set
    CONFIG_SOC_HAS_TIMING_FUNCTIONS=y
    CONFIG_ARCH_HAS_CUSTOM_BUSY_WAIT=y
    # CONFIG_CORTEX_M_SYSTICK is not set
    CONFIG_CLOCK_CONTROL=y
    CONFIG_NRF_RTC_TIMER=y
    CONFIG_SYS_CLOCK_TICKS_PER_SEC=32768
    CONFIG_BUILD_OUTPUT_HEX=y
    CONFIG_ROM_START_OFFSET=0
    CONFIG_FLASH_SIZE=256
    CONFIG_FLASH_BASE_ADDRESS=0x1000000
    # CONFIG_GPIO_MCUX is not set
    # CONFIG_CPU_HAS_CUSTOM_FIXED_SOC_MPU_REGIONS is not set
    # CONFIG_TINYCRYPT is not set
    CONFIG_SERIAL=y
    # CONFIG_UART_PL011 is not set
    # CONFIG_IPM_STM32_IPCC is not set
    
    #
    # Modules
    #
    
    #
    # Available modules.
    #
    
    #
    # nrf (D:ncsv1.5.0nrf)
    #
    
    #
    # Nordic nRF Connect
    #
    CONFIG_MAIN_STACK_SIZE=1024
    CONFIG_PRIVILEGED_STACK_SIZE=1024
    CONFIG_NCS_SAMPLES_DEFAULTS=y
    # CONFIG_NCS_SAMPLE_EMPTY_APP_CORE_CHILD_IMAGE is not set
    CONFIG_LOG_DEFAULT_LEVEL=1
    
    #
    # Bootloader
    #
    # CONFIG_BUILD_S1_VARIANT is not set
    # CONFIG_SECURE_BOOT is not set
    CONFIG_PM_PARTITION_SIZE_PROVISION=0x800
    # 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_HASH=y
    # end of Secure Boot firmware validation
    # end of Bootloader
    
    #
    # Bluetooth Low Energy
    #
    CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=1024
    # end of Bluetooth Low Energy
    
    #
    # DFU
    #
    
    #
    # DFU
    #
    # CONFIG_DFU_TARGET is not set
    # end of DFU
    # end of DFU
    
    CONFIG_ESB=y
    CONFIG_ESB_MAX_PAYLOAD_LENGTH=72
    CONFIG_ESB_TX_FIFO_SIZE=8
    CONFIG_ESB_RX_FIFO_SIZE=8
    CONFIG_ESB_PIPE_COUNT=8
    
    #
    # Hardware selection (alter with care)
    #
    # CONFIG_ESB_SYS_TIMER0 is not set
    # CONFIG_ESB_SYS_TIMER1 is not set
    CONFIG_ESB_SYS_TIMER2=y
    # CONFIG_ESB_SYS_TIMER3 is not set
    # CONFIG_ESB_SYS_TIMER4 is not set
    # end of Hardware selection (alter with care)
    
    #
    # Peripheral CPU DFU (PCD)
    #
    # CONFIG_PCD is not set
    # end of Peripheral CPU DFU (PCD)
    
    #
    # Networking
    #
    
    #
    # Application protocols
    #
    # CONFIG_NRF_CLOUD 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
    # CONFIG_CLOUD_API 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
    # 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_PROFILER is not set
    
    #
    # SPM
    #
    # CONFIG_SPM is not set
    # CONFIG_IS_SPM is not set
    # end of SPM
    
    # CONFIG_FW_INFO is not set
    # CONFIG_PPI_TRACE is not set
    # CONFIG_CPU_LOAD is not set
    
    #
    # Nordic MPSL
    #
    CONFIG_MPSL_THREAD_COOP_PRIO=8
    CONFIG_MPSL_SIGNAL_STACK_SIZE=1024
    CONFIG_MPSL_TIMESLOT_SESSION_COUNT=0
    # 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=y
    # CONFIG_MPSL_LOG_LEVEL_DBG is not set
    CONFIG_MPSL_LOG_LEVEL=3
    # end of Nordic MPSL
    
    #
    # Partition Manager
    #
    # CONFIG_PARTITION_MANAGER_ENABLED is not set
    CONFIG_SRAM_BASE_ADDRESS=0x21000000
    
    #
    # Zephyr subsystem configurations
    #
    # end of Zephyr subsystem configurations
    
    #
    # Zephyr samples configurations
    #
    # end of Zephyr samples configurations
    
    #
    # NCS subsystem configurations
    #
    
    #
    # NCS samples configurations
    #
    # end of NCS samples configurations
    
    # CONFIG_PM_SINGLE_IMAGE is not set
    # CONFIG_PM_EXTERNAL_FLASH is not set
    CONFIG_PM_SRAM_BASE=0x21000000
    CONFIG_PM_SRAM_SIZE=0x10000
    # end of Partition Manager
    
    #
    # nRF RPC (Remote Procedure Call) library
    #
    CONFIG_NRF_RPC_THREAD_STACK_SIZE=1024
    CONFIG_NRF_RPC_THREAD_PRIORITY=2
    CONFIG_RPMSG_REMOTE=y
    # CONFIG_RPMSG_MASTER is not set
    CONFIG_NRF_RPC_TR_PRMSG_RX_STACK_SIZE=1536
    CONFIG_NRF_RPC_TR_PRMSG_RX_PRIORITY=-1
    # CONFIG_NRF_RPC_LOG_LEVEL_OFF is not set
    # CONFIG_NRF_RPC_LOG_LEVEL_ERR is not set
    # CONFIG_NRF_RPC_LOG_LEVEL_WRN is not set
    CONFIG_NRF_RPC_LOG_LEVEL_INF=y
    # CONFIG_NRF_RPC_LOG_LEVEL_DBG is not set
    CONFIG_NRF_RPC_LOG_LEVEL=3
    # CONFIG_NRF_RPC_TR_LOG_LEVEL_OFF is not set
    # CONFIG_NRF_RPC_TR_LOG_LEVEL_ERR is not set
    # CONFIG_NRF_RPC_TR_LOG_LEVEL_WRN is not set
    CONFIG_NRF_RPC_TR_LOG_LEVEL_INF=y
    # CONFIG_NRF_RPC_TR_LOG_LEVEL_DBG is not set
    CONFIG_NRF_RPC_TR_LOG_LEVEL=3
    # CONFIG_NRF_RPC_OS_LOG_LEVEL_OFF is not set
    # CONFIG_NRF_RPC_OS_LOG_LEVEL_ERR is not set
    # CONFIG_NRF_RPC_OS_LOG_LEVEL_WRN is not set
    CONFIG_NRF_RPC_OS_LOG_LEVEL_INF=y
    # CONFIG_NRF_RPC_OS_LOG_LEVEL_DBG is not set
    CONFIG_NRF_RPC_OS_LOG_LEVEL=3
    # CONFIG_NRF_RPC_CBOR_LOG_LEVEL_OFF is not set
    # CONFIG_NRF_RPC_CBOR_LOG_LEVEL_ERR is not set
    # CONFIG_NRF_RPC_CBOR_LOG_LEVEL_WRN is not set
    CONFIG_NRF_RPC_CBOR_LOG_LEVEL_INF=y
    # CONFIG_NRF_RPC_CBOR_LOG_LEVEL_DBG is not set
    CONFIG_NRF_RPC_CBOR_LOG_LEVEL=3
    # 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=y
    # CONFIG_MGMT_FMFU_LOG_LEVEL_DBG is not set
    CONFIG_MGMT_FMFU_LOG_LEVEL=3
    # end of Full Modem Firmware Update Management(FMFU)
    
    CONFIG_BOOT_SIGNATURE_KEY_FILE=""
    # CONFIG_CDDL_GEN is not set
    
    #
    # Libraries
    #
    # CONFIG_AGPS is not set
    # CONFIG_AGPS_LOG_LEVEL_OFF is not set
    # CONFIG_AGPS_LOG_LEVEL_ERR is not set
    # CONFIG_AGPS_LOG_LEVEL_WRN is not set
    CONFIG_AGPS_LOG_LEVEL_INF=y
    # CONFIG_AGPS_LOG_LEVEL_DBG is not set
    CONFIG_AGPS_LOG_LEVEL=3
    
    #
    # Binary libraries
    #
    # end of Binary libraries
    
    # CONFIG_NRF_MODEM_LIB is not set
    
    #
    # BSD library (deprecated)
    #
    
    #
    # All the configs below are deprecated, please use NRF_MODEM_LIB equivalents instead
    #
    # CONFIG_BSD_LIBRARY is not set
    # end of BSD library (deprecated)
    
    # CONFIG_ADP536X is not set
    
    #
    # AT Command driver
    #
    # end of AT Command driver
    
    # CONFIG_LTE_LINK_CONTROL is not set
    # CONFIG_FPROTECT is not set
    CONFIG_NRF_ACL_FLASH_REGION_SIZE=0x800
    CONFIG_FPROTECT_BLOCK_SIZE=0x800
    
    #
    # AT Host Library for nrf91
    #
    # CONFIG_AT_HOST_LIBRARY is not set
    # end of AT Host Library for nrf91
    
    # CONFIG_DK_LIBRARY is not set
    # CONFIG_AT_CMD_PARSER 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=y
    # CONFIG_FATAL_ERROR_LOG_LEVEL_DBG is not set
    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_RAM_POWER_DOWN_LIBRARY is not set
    # end of Libraries
    
    #
    # Device Drivers
    #
    # CONFIG_BT_DRIVER_QUIRK_NO_AUTO_DLE is not set
    # CONFIG_ETH_RTT is not set
    # CONFIG_SENSOR is not set
    
    #
    # GPS Drivers
    #
    # CONFIG_GPS_SIM is not set
    # end of GPS Drivers
    
    # CONFIG_NRF_SW_LPUART is not set
    # end of Device Drivers
    
    #
    # External libraries
    #
    # end of External libraries
    
    # CONFIG_UNITY is not set
    # end of Nordic nRF Connect
    
    CONFIG_ZEPHYR_NRF_MODULE=y
    # end of nrf (D:ncsv1.5.0nrf)
    
    #
    # mcuboot (D:ncsv1.5.0bootloadermcuboot)
    #
    
    #
    # MCUboot
    #
    CONFIG_DT_FLASH_WRITE_BLOCK_SIZE=4
    # end of MCUboot
    
    CONFIG_ZEPHYR_MCUBOOT_MODULE=y
    # end of mcuboot (D:ncsv1.5.0bootloadermcuboot)
    
    #
    # nrfxlib (D:ncsv1.5.0nrfxlib)
    #
    
    #
    # 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 is not set
    
    #
    # Crypto libraries for nRF5x SOCs.
    #
    # CONFIG_NRF_OBERON is not set
    # CONFIG_NRF_CC310_BL is not set
    # end of Crypto libraries for nRF5x SOCs.
    
    #
    # Nordic Security
    #
    # CONFIG_NORDIC_SECURITY_BACKEND is not set
    # end of Nordic Security
    
    CONFIG_NRF_RPC=y
    CONFIG_NRF_RPC_CBOR=y
    CONFIG_NRF_RPC_TR_RPMSG=y
    # CONFIG_NRF_RPC_TR_CUSTOM is not set
    CONFIG_NRF_RPC_CMD_CTX_POOL_SIZE=8
    CONFIG_NRF_RPC_THREAD_POOL_SIZE=3
    
    #
    # ZBOSS library configuration
    #
    CONFIG_ZIGBEE_LIBRARY_DEVELOPMENT=y
    CONFIG_ZIGBEE_LIBRARY_SOC=y
    # CONFIG_ZIGBEE_LIBRARY_NCP_DEV is not set
    # CONFIG_ZIGBEE_GP_NONE is not set
    CONFIG_ZIGBEE_GP_PB=y
    # CONFIG_ZIGBEE_GP_CB is not set
    # end of ZBOSS library configuration
    # end of Nordic nrfxlib
    
    CONFIG_ZEPHYR_NRFXLIB_MODULE=y
    # end of nrfxlib (D:ncsv1.5.0nrfxlib)
    
    #
    # cddl-gen (D:ncsv1.5.0moduleslibcddl-gen)
    #
    CONFIG_ZEPHYR_CDDL_GEN_MODULE=y
    # end of cddl-gen (D:ncsv1.5.0moduleslibcddl-gen)
    
    #
    # hal_nordic (D:ncsv1.5.0moduleshalnordic)
    #
    CONFIG_ZEPHYR_HAL_NORDIC_MODULE=y
    CONFIG_HAS_NORDIC_DRIVERS=y
    
    #
    # Nordic drivers
    #
    # CONFIG_NRF_802154_RADIO_DRIVER is not set
    # CONFIG_NRF_802154_SER_RADIO 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_DPPI=y
    # CONFIG_NRFX_EGU is not set
    # 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_RTC is not set
    # CONFIG_NRFX_RTC0 is not set
    # CONFIG_NRFX_RTC1 is not set
    # CONFIG_NRFX_SPIM is not set
    # CONFIG_NRFX_SPIM0 is not set
    # CONFIG_NRFX_SPIS is not set
    # CONFIG_NRFX_SPIS0 is not set
    # CONFIG_NRFX_SYSTICK is not set
    # CONFIG_NRFX_TEMP is not set
    CONFIG_NRFX_TIMER=y
    CONFIG_NRFX_TIMER0=y
    # CONFIG_NRFX_TIMER1 is not set
    # CONFIG_NRFX_TIMER2 is not set
    # CONFIG_NRFX_TWIM is not set
    # CONFIG_NRFX_TWIM0 is not set
    # CONFIG_NRFX_TWIS is not set
    # CONFIG_NRFX_TWIS0 is not set
    # CONFIG_NRFX_UARTE is not set
    # CONFIG_NRFX_UARTE0 is not set
    # CONFIG_NRFX_WDT is not set
    # CONFIG_NRFX_WDT0 is not set
    # CONFIG_NRFX_PRS is not set
    # 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 nrfx drivers
    # end of hal_nordic (D:ncsv1.5.0moduleshalnordic)
    
    #
    # connectedhomeip (D:ncsv1.5.0moduleslibconnectedhomeip)
    #
    # CONFIG_CHIP is not set
    CONFIG_ZEPHYR_CONNECTEDHOMEIP_MODULE=y
    # end of connectedhomeip (D:ncsv1.5.0moduleslibconnectedhomeip)
    
    #
    # Optional modules. Make sure they're installed, via the project manifest.
    #
    # CONFIG_CANOPENNODE is not set
    # CONFIG_CIVETWEB is not set
    CONFIG_HAS_CMSIS_CORE=y
    CONFIG_HAS_CMSIS_CORE_M=y
    CONFIG_LIBMETAL=y
    CONFIG_LIBMETAL_SRC_PATH="libmetal"
    # CONFIG_HAS_SEMTECH_LORAMAC is not set
    # CONFIG_HAS_SEMTECH_SOFT_SE is not set
    # CONFIG_HAS_SEMTECH_RADIO_DRIVERS is not set
    # CONFIG_MBEDTLS is not set
    # CONFIG_HAS_MEC_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_NUM_PREEMPT_PRIORITIES=15
    CONFIG_TINYCBOR=y
    # CONFIG_CBOR_ENCODER_NO_CHECK_USER is not set
    CONFIG_CBOR_PARSER_MAX_RECURSIONS=1024
    # CONFIG_CBOR_PARSER_NO_STRICT_CHECKS is not set
    # CONFIG_CBOR_FLOATING_POINT is not set
    # CONFIG_CBOR_HALF_FLOAT_TYPE is not set
    CONFIG_CBOR_WITHOUT_OPEN_MEMSTREAM=y
    # CONFIG_CBOR_PRETTY_PRINTING is not set
    # CONFIG_MCUBOOT_BOOTUTIL_LIB is not set
    
    #
    # Unavailable modules, please install those via the project manifest.
    #
    # end of Modules
    
    # CONFIG_BOARD_NRF5340PDK_NRF5340_CPUNET is not set
    CONFIG_BOARD_NRF5340DK_NRF5340_CPUNET=y
    
    #
    # Board Options
    #
    CONFIG_IPM_NRFX=y
    CONFIG_IPM_MSG_CH_0_ENABLE=y
    CONFIG_IPM_MSG_CH_1_ENABLE=y
    CONFIG_IPM_MSG_CH_0_TX=y
    # CONFIG_IPM_MSG_CH_0_RX is not set
    # CONFIG_IPM_MSG_CH_1_TX is not set
    CONFIG_IPM_MSG_CH_1_RX=y
    CONFIG_DOMAIN_CPUAPP_BOARD="nrf5340dk_nrf5340_cpuapp"
    # end of Board Options
    
    # CONFIG_SOC_SERIES_BEETLE is not set
    # CONFIG_SOC_SERIES_ARM_DESIGNSTART is not set
    # CONFIG_SOC_SERIES_MPS2 is not set
    # CONFIG_SOC_SERIES_MUSCA is not set
    # CONFIG_SOC_SERIES_MUSCA_B1 is not set
    # CONFIG_SOC_SERIES_MUSCA_S1 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_SAMR21 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_XMC_4XXX is not set
    # CONFIG_SOC_SERIES_MEC1501X is not set
    # CONFIG_SOC_SERIES_MEC1701X 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_M48X is not set
    # CONFIG_SOC_SERIES_NPCX7 is not set
    # CONFIG_SOC_SERIES_IMX_6X_M4 is not set
    # CONFIG_SOC_SERIES_IMX7_M4 is not set
    # CONFIG_SOC_SERIES_IMX8MM_M4 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_LPC54XXX is not set
    # CONFIG_SOC_SERIES_LPC55XXX is not set
    # CONFIG_SOC_QEMU_CORTEX_A53 is not set
    # CONFIG_SOC_EOS_S3 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_EFR32FG1P is not set
    # CONFIG_SOC_SERIES_EFR32MG12P is not set
    # CONFIG_SOC_SERIES_EFR32MG21 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_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_STM32WBX is not set
    # CONFIG_SOC_TI_LM3S6965 is not set
    # CONFIG_SOC_SERIES_CC13X2_CC26X2 is not set
    # CONFIG_SOC_SERIES_CC32XX is not set
    # CONFIG_SOC_SERIES_MSP432P4XX is not set
    # CONFIG_SOC_XILINX_ZYNQMP_RPU is not set
    
    #
    # Hardware Configuration
    #
    CONFIG_CPU_HAS_ARM_MPU=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_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_IEEE802154=y
    CONFIG_HAS_HW_NRF_RNG=y
    CONFIG_HAS_HW_NRF_RTC0=y
    CONFIG_HAS_HW_NRF_RTC1=y
    CONFIG_HAS_HW_NRF_SPIM0=y
    CONFIG_HAS_HW_NRF_SPIS0=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_TWIM0=y
    CONFIG_HAS_HW_NRF_TWIS0=y
    CONFIG_HAS_HW_NRF_UARTE0=y
    CONFIG_HAS_HW_NRF_WDT=y
    CONFIG_NRF_HW_RTC1_RESERVED=y
    CONFIG_SOC_NRF5340_CPUNET=y
    # CONFIG_SOC_NRF5340_CPUAPP_QKAA is not set
    CONFIG_SOC_NRF5340_CPUNET_QKAA=y
    CONFIG_NRF_ENABLE_CACHE=y
    # 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=y
    # CONFIG_SOC_LOG_LEVEL_DBG is not set
    CONFIG_SOC_LOG_LEVEL=3
    # end of Hardware Configuration
    
    CONFIG_SOC_COMPATIBLE_NRF=y
    
    #
    # ARM Options
    #
    CONFIG_ARCH="arm"
    CONFIG_CPU_CORTEX=y
    CONFIG_CPU_CORTEX_M=y
    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_PLATFORM_SPECIFIC_INIT=y
    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 is not set
    # CONFIG_SW_VECTOR_RELAY is not set
    # CONFIG_CORTEX_M_DWT is not set
    # end of ARM Cortex-M0/M0+/M1/M3/M4/M7/M23/M33 options
    
    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_CUSTOM_SECTION_ALIGN is not set
    CONFIG_CUSTOM_SECTION_MIN_ALIGN_SIZE=32
    CONFIG_GEN_IRQ_VECTOR_TABLE=y
    CONFIG_IDLE_STACK_SIZE=256
    CONFIG_ISR_STACK_SIZE=2048
    CONFIG_TEST_EXTRA_STACKSIZE=0
    # end of ARM Options
    
    CONFIG_ARM=y
    CONFIG_ARCH_IS_SET=y
    
    #
    # General Architecture Options
    #
    # 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=y
    # CONFIG_ARCH_LOG_LEVEL_DBG is not set
    CONFIG_ARCH_LOG_LEVEL=3
    # 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=y
    # CONFIG_MPU_LOG_LEVEL_DBG is not set
    CONFIG_MPU_LOG_LEVEL=3
    CONFIG_HW_STACK_PROTECTION=y
    # CONFIG_USERSPACE is not set
    CONFIG_KOBJECT_TEXT_AREA=256
    CONFIG_GEN_PRIV_STACKS=y
    # CONFIG_STACK_GROWS_UP is not set
    
    #
    # Interrupt Configuration
    #
    # CONFIG_DYNAMIC_INTERRUPTS is not set
    CONFIG_GEN_SW_ISR_TABLE=y
    CONFIG_ARCH_SW_ISR_TABLE_ALIGN=0
    CONFIG_GEN_IRQ_START_VECTOR=0
    # CONFIG_EXTRA_EXCEPTION_INFO is not set
    # end of Interrupt Configuration
    
    # CONFIG_INIT_ARCH_HW_AT_BOOT is not set
    # end of General Architecture Options
    
    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_THREAD_ABORT=y
    CONFIG_CPU_HAS_MPU=y
    CONFIG_MPU=y
    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
    #
    # CONFIG_CACHE_MANAGEMENT is not set
    # end of Cache Options
    
    #
    # 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=y
    # CONFIG_KERNEL_LOG_LEVEL_DBG is not set
    CONFIG_KERNEL_LOG_LEVEL=3
    CONFIG_MULTITHREADING=y
    CONFIG_NUM_COOP_PRIORITIES=16
    CONFIG_MAIN_THREAD_PRIORITY=0
    CONFIG_COOP_ENABLED=y
    CONFIG_PREEMPT_ENABLED=y
    CONFIG_PRIORITY_CEILING=0
    CONFIG_NUM_METAIRQ_PRIORITIES=0
    # CONFIG_SCHED_DEADLINE is not set
    # CONFIG_SCHED_CPU_MASK is not set
    CONFIG_THREAD_STACK_INFO=y
    CONFIG_THREAD_CUSTOM_DATA=y
    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_INIT_STACKS is not set
    CONFIG_BOOT_BANNER=y
    CONFIG_BOOT_DELAY=0
    # CONFIG_THREAD_MONITOR is not set
    # CONFIG_THREAD_NAME is not set
    # CONFIG_THREAD_RUNTIME_STATS is not set
    # end of Kernel Debugging and Metrics
    
    #
    # Work Queue Options
    #
    CONFIG_SYSTEM_WORKQUEUE_PRIORITY=-1
    # 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_POLL is not set
    # 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_NUM_PIPE_ASYNC_MSGS=10
    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_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_IDLE=y
    CONFIG_TICKLESS_IDLE_THRESH=3
    CONFIG_TICKLESS_KERNEL=y
    # end of General Kernel Options
    
    CONFIG_HAS_DTS=y
    CONFIG_HAS_DTS_GPIO=y
    
    #
    # Device Drivers
    #
    # CONFIG_IEEE802154 is not set
    # CONFIG_LORA is not set
    CONFIG_UART_CONSOLE_ON_DEV_NAME="UART_0"
    CONFIG_CONSOLE=y
    CONFIG_CONSOLE_INPUT_MAX_LINE_LEN=128
    CONFIG_CONSOLE_HAS_DRIVER=y
    # CONFIG_CONSOLE_HANDLER is not set
    CONFIG_UART_CONSOLE=y
    CONFIG_UART_CONSOLE_INIT_PRIORITY=60
    # CONFIG_UART_CONSOLE_DEBUG_SERVER_HOOKS is not set
    # CONFIG_UART_CONSOLE_MCUMGR is not set
    # CONFIG_USB_UART_CONSOLE is not set
    # CONFIG_RAM_CONSOLE is not set
    # CONFIG_IPM_CONSOLE_SENDER is not set
    # CONFIG_IPM_CONSOLE_RECEIVER is not set
    # CONFIG_IPM_CONSOLE is not set
    # CONFIG_UART_PIPE is not set
    # CONFIG_UART_MCUMGR is not set
    # CONFIG_SEMIHOST_CONSOLE 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=y
    # CONFIG_UART_CONSOLE_LOG_LEVEL_DBG is not set
    CONFIG_UART_CONSOLE_LOG_LEVEL=3
    # CONFIG_GSM_MUX is not set
    CONFIG_HAS_SEGGER_RTT=y
    # CONFIG_USE_SEGGER_RTT is not set
    # CONFIG_EC_HOST_CMD_PERIPH is not set
    # CONFIG_NET_LOOPBACK is not set
    
    #
    # Capabilities
    #
    CONFIG_SERIAL_HAS_DRIVER=y
    CONFIG_SERIAL_SUPPORT_ASYNC=y
    CONFIG_SERIAL_SUPPORT_INTERRUPT=y
    # CONFIG_UART_ASYNC_API is not set
    # CONFIG_UART_LINE_CTRL is not set
    # CONFIG_UART_DRV_CMD 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_NRF_PARITY_BIT is not set
    CONFIG_UART_0_NRF_TX_BUFFER_SIZE=32
    CONFIG_NRF_UARTE_PERIPHERAL=y
    # CONFIG_UART_ALTERA_JTAG is not set
    # CONFIG_UART_XLNX_UARTLITE is not set
    
    #
    # Interrupt Controllers
    #
    # CONFIG_SWERV_PIC is not set
    # CONFIG_MULTI_LEVEL_INTERRUPTS is not set
    # end of Interrupt Controllers
    
    #
    # Timer Drivers
    #
    CONFIG_NRF_RTC_TIMER_USER_CHAN_COUNT=0
    # CONFIG_SYSTEM_CLOCK_NO_WAIT is not set
    # CONFIG_SYSTEM_CLOCK_WAIT_FOR_AVAILABILITY is not set
    CONFIG_SYSTEM_CLOCK_WAIT_FOR_STABILITY=y
    CONFIG_SYSTEM_CLOCK_DISABLE=y
    # 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
    # end of Timer Drivers
    
    # CONFIG_ENTROPY_GENERATOR is not set
    # CONFIG_PCIE is not set
    # CONFIG_PCIE_ENDPOINT 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=y
    # CONFIG_GPIO_LOG_LEVEL_DBG is not set
    CONFIG_GPIO_LOG_LEVEL=3
    # CONFIG_GPIO_DW is not set
    CONFIG_GPIO_NRFX=y
    CONFIG_GPIO_NRF_INIT_PRIORITY=40
    CONFIG_GPIO_NRF_P0=y
    # CONFIG_GPIO_ITE_IT8XXX2 is not set
    # CONFIG_GPIO_INTEL_APL is not set
    # CONFIG_GPIO_XLNX_AXI is not set
    # CONFIG_GPIO_EMUL is not set
    # CONFIG_SHARED_IRQ is not set
    # CONFIG_I2S is not set
    # CONFIG_PWM is not set
    # CONFIG_PINMUX is not set
    # CONFIG_ADC is not set
    # CONFIG_DAC 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=y
    # CONFIG_CLOCK_CONTROL_LOG_LEVEL_DBG is not set
    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 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 is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_30PPM is not set
    CONFIG_CLOCK_CONTROL_NRF_K32SRC_20PPM=y
    CONFIG_CLOCK_CONTROL_NRF_ACCURACY=20
    # CONFIG_PTP_CLOCK is not set
    CONFIG_IPM=y
    # CONFIG_IPM_MHU is not set
    # CONFIG_IPM_NRF_SINGLE_INSTANCE is not set
    
    #
    # IPM Message Channel [0] configuration
    #
    # end of IPM Message Channel [0] configuration
    
    #
    # IPM Message Channel [1] configuration
    #
    # end of IPM Message Channel [1] configuration
    
    #
    # IPM Message Channel [2] configuration
    #
    # CONFIG_IPM_MSG_CH_2_ENABLE is not set
    # end of IPM Message Channel [2] configuration
    
    #
    # IPM Message Channel [3] configuration
    #
    # CONFIG_IPM_MSG_CH_3_ENABLE is not set
    # end of IPM Message Channel [3] configuration
    
    #
    # IPM Message Channel [4] configuration
    #
    # CONFIG_IPM_MSG_CH_4_ENABLE is not set
    # end of IPM Message Channel [4] configuration
    
    #
    # IPM Message Channel [5] configuration
    #
    # CONFIG_IPM_MSG_CH_5_ENABLE is not set
    # end of IPM Message Channel [5] configuration
    
    #
    # IPM Message Channel [6] configuration
    #
    # CONFIG_IPM_MSG_CH_6_ENABLE is not set
    # end of IPM Message Channel [6] configuration
    
    #
    # IPM Message Channel [7] configuration
    #
    # CONFIG_IPM_MSG_CH_7_ENABLE is not set
    # end of IPM Message Channel [7] configuration
    
    #
    # IPM Message Channel [8] configuration
    #
    # CONFIG_IPM_MSG_CH_8_ENABLE is not set
    # end of IPM Message Channel [8] configuration
    
    #
    # IPM Message Channel [9] configuration
    #
    # CONFIG_IPM_MSG_CH_9_ENABLE is not set
    # end of IPM Message Channel [9] configuration
    
    #
    # IPM Message Channel [10] configuration
    #
    # CONFIG_IPM_MSG_CH_10_ENABLE is not set
    # end of IPM Message Channel [10] configuration
    
    #
    # IPM Message Channel [11] configuration
    #
    # CONFIG_IPM_MSG_CH_11_ENABLE is not set
    # end of IPM Message Channel [11] configuration
    
    #
    # IPM Message Channel [12] configuration
    #
    # CONFIG_IPM_MSG_CH_12_ENABLE is not set
    # end of IPM Message Channel [12] configuration
    
    #
    # IPM Message Channel [13] configuration
    #
    # CONFIG_IPM_MSG_CH_13_ENABLE is not set
    # end of IPM Message Channel [13] configuration
    
    #
    # IPM Message Channel [14] configuration
    #
    # CONFIG_IPM_MSG_CH_14_ENABLE is not set
    # end of IPM Message Channel [14] configuration
    
    #
    # IPM Message Channel [15] configuration
    #
    # CONFIG_IPM_MSG_CH_15_ENABLE is not set
    # end of IPM Message Channel [15] configuration
    
    # CONFIG_IPM_INTEL_ADSP is not set
    # CONFIG_IPM_LOG_LEVEL_OFF is not set
    # CONFIG_IPM_LOG_LEVEL_ERR is not set
    # CONFIG_IPM_LOG_LEVEL_WRN is not set
    CONFIG_IPM_LOG_LEVEL_INF=y
    # CONFIG_IPM_LOG_LEVEL_DBG is not set
    CONFIG_IPM_LOG_LEVEL=3
    # CONFIG_FLASH is not set
    # CONFIG_COUNTER is not set
    # CONFIG_DMA is not set
    # CONFIG_USB is not set
    # CONFIG_CRYPTO is not set
    # CONFIG_DISPLAY is not set
    # CONFIG_LED_STRIP is not set
    # CONFIG_LED is not set
    # CONFIG_CAN is not set
    # CONFIG_AUDIO is not set
    # CONFIG_NEURAL_NET_ACCEL is not set
    # CONFIG_HWINFO is not set
    # CONFIG_ESPI is not set
    # CONFIG_PS2 is not set
    # CONFIG_VIDEO is not set
    # CONFIG_EEPROM is not set
    # CONFIG_PECI is not set
    # CONFIG_PECI_INTERRUPT_DRIVEN is not set
    # CONFIG_REGULATOR is not set
    # CONFIG_MEMC is not set
    # CONFIG_VIRTUALIZATION is not set
    # end of Device Drivers
    
    #
    # C Library
    #
    CONFIG_MINIMAL_LIBC=y
    # CONFIG_NEWLIB_LIBC is not set
    # CONFIG_EXTERNAL_LIBC is not set
    CONFIG_HAS_NEWLIB_LIBC_NANO=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_STDOUT_CONSOLE=y
    # end of C Library
    
    #
    # Additional libraries
    #
    # CONFIG_FNMATCH is not set
    # CONFIG_LVGL is not set
    
    #
    # OS Support Library
    #
    # CONFIG_JSON_LIBRARY is not set
    # CONFIG_RING_BUFFER is not set
    # CONFIG_BASE64 is not set
    # CONFIG_SYS_HEAP_VALIDATE is not set
    CONFIG_SYS_HEAP_ALLOC_LOOPS=3
    # CONFIG_PRINTK64 is not set
    # CONFIG_PRINTK_SYNC 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
    # end of OS Support Library
    
    CONFIG_POSIX_MAX_FDS=4
    # CONFIG_POSIX_API is not set
    # CONFIG_PTHREAD_IPC is not set
    # CONFIG_POSIX_CLOCK is not set
    CONFIG_MAX_TIMER_COUNT=5
    # CONFIG_POSIX_MQUEUE is not set
    # CONFIG_EVENTFD is not set
    # CONFIG_OPENAMP_RSC_TABLE is not set
    # end of Additional libraries
    
    #
    # Sub Systems and OS Services
    #
    # CONFIG_BT is not set
    
    #
    # 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
    # CONFIG_CPLUSPLUS is not set
    
    #
    # System Monitoring Options
    #
    # CONFIG_BOOT_TIME_MEASUREMENT is not set
    # 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 is not set
    CONFIG_PRINTK=y
    CONFIG_EARLY_CONSOLE=y
    CONFIG_ASSERT=y
    CONFIG_ASSERT_LEVEL=2
    CONFIG_SPIN_VALIDATE=y
    # CONFIG_FORCE_NO_ASSERT is not set
    CONFIG_ASSERT_VERBOSE=y
    # CONFIG_ASSERT_NO_FILE_INFO is not set
    CONFIG_ASSERT_NO_COND_INFO=y
    CONFIG_ASSERT_NO_MSG_INFO=y
    # CONFIG_OBJECT_TRACING is not set
    # CONFIG_OVERRIDE_FRAME_POINTER_DEFAULT is not set
    # CONFIG_DEBUG_INFO is not set
    # CONFIG_OPENOCD_SUPPORT is not set
    # CONFIG_DEBUG_COREDUMP is not set
    # end of Debugging Options
    
    # CONFIG_DISK_ACCESS 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
    # end of Inter Processor Communication
    
    # CONFIG_JWT is not set
    CONFIG_LOG=y
    CONFIG_LOG_MINIMAL=y
    CONFIG_LOG_OVERRIDE_LEVEL=0
    CONFIG_LOG_MAX_LEVEL=4
    # CONFIG_LOG_MIPI_SYST_ENABLE is not set
    
    #
    # Device Management
    #
    
    #
    # Host command handler subsystem
    #
    # CONFIG_EC_HOST_CMD is not set
    # end of Host command handler subsystem
    
    # CONFIG_MCUMGR is not set
    # CONFIG_HAWKBIT is not set
    # CONFIG_UPDATEHUB is not set
    # CONFIG_OSDP is not set
    # end of Device Management
    
    #
    # Networking
    #
    # CONFIG_NET_BUF is not set
    # CONFIG_NETWORKING is not set
    # end of Networking
    
    #
    # Power Management
    #
    # CONFIG_SYS_POWER_MANAGEMENT is not set
    # CONFIG_PM_STATE_LOCK is not set
    # CONFIG_PM_DIRECT_FORCE_MODE is not set
    # CONFIG_PM_DEBUG is not set
    CONFIG_PM_POLICY_RESIDENCY=y
    # CONFIG_PM_POLICY_DUMMY is not set
    # CONFIG_PM_POLICY_APP is not set
    CONFIG_PM_POLICY_RESIDENCY_DEFAULT=y
    # 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=y
    # CONFIG_PM_LOG_LEVEL_DBG is not set
    CONFIG_PM_LOG_LEVEL=3
    # CONFIG_DEVICE_POWER_MANAGEMENT is not set
    # end of Power Management
    
    # CONFIG_SHELL is not set
    # CONFIG_STATS is not set
    # CONFIG_IMG_MANAGER is not set
    
    #
    # Random Number Generators
    #
    # CONFIG_TEST_RANDOM_GENERATOR is not set
    # end of Random Number Generators
    
    #
    # Storage
    #
    # CONFIG_STREAM_FLASH is not set
    # end of Storage
    
    # CONFIG_SETTINGS is not set
    
    #
    # Testing
    #
    # CONFIG_ZTEST is not set
    # CONFIG_ZTEST_MOCKING is not set
    # CONFIG_TEST is not set
    # CONFIG_TEST_USERSPACE is not set
    CONFIG_TEST_ARM_CORTEX_M=y
    # end of Testing
    
    # CONFIG_TIMING_FUNCTIONS is not set
    # CONFIG_TRACING is not set
    # end of Sub Systems and OS Services
    
    CONFIG_TOOLCHAIN_GNUARMEMB=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_CODE_DATA_RELOCATION is not set
    CONFIG_HAS_FLASH_LOAD_OFFSET=y
    # CONFIG_USE_DT_CODE_PARTITION is not set
    # CONFIG_HAVE_CUSTOM_LINKER_SCRIPT is not set
    CONFIG_KERNEL_ENTRY="__start"
    CONFIG_LINKER_SORT_BY_ALIGNMENT=y
    # end of Linker Options
    
    #
    # Compiler Options
    #
    # CONFIG_CODING_GUIDELINE_CHECK is not set
    # CONFIG_NATIVE_APPLICATION is not set
    CONFIG_SIZE_OPTIMIZATIONS=y
    # CONFIG_SPEED_OPTIMIZATIONS is not set
    # CONFIG_DEBUG_OPTIMIZATIONS is not set
    # CONFIG_NO_OPTIMIZATIONS is not set
    CONFIG_COMPILER_OPT=""
    # 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_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_STRIPPED is not set
    # CONFIG_APPLICATION_DEFINED_SYSCALL is not set
    # CONFIG_MAKEFILE_EXPORTS is not set
    # CONFIG_DEPRECATED_ZEPHYR_INT_TYPES is not set
    # end of Build Options
    # end of Build and Link Features
    
    #
    # Boot Options
    #
    # CONFIG_IS_BOOTLOADER is not set
    # CONFIG_BOOTLOADER_MCUBOOT is not set
    CONFIG_REBOOT=y
    # CONFIG_MISRA_SANE is not set
    # end of Boot Options
    
    #
    # Compatibility
    #
    CONFIG_COMPAT_INCLUDES=y
    # end of Compatibility
    
    #
    # Enhanced ShockBurst: Receiver
    #
    CONFIG_ESB_PRX_APP_LOG_LEVEL=4
    # end of Enhanced ShockBurst: Receiver
    

Reply
  • Sorry, this is the latest version of. Config. Please ignore the previous wrong version

    # CONFIG_SPI is not set
    # CONFIG_I2C is not set
    # CONFIG_KSCAN is not set
    # CONFIG_WIFI is not set
    # CONFIG_MODEM is not set
    # CONFIG_UART_INTERRUPT_DRIVEN is not set
    CONFIG_GPIO_NRF_P1=y
    CONFIG_BOARD="nrf5340dk_nrf5340_cpunet"
    CONFIG_FLASH_LOAD_SIZE=0
    CONFIG_SRAM_SIZE=64
    CONFIG_FLASH_LOAD_OFFSET=0
    CONFIG_SOC="nRF5340_CPUNET_QKAA"
    CONFIG_SOC_SERIES="nrf53"
    CONFIG_NUM_IRQS=30
    CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=32768
    CONFIG_HEAP_MEM_POOL_SIZE=4096
    # CONFIG_WATCHDOG is not set
    # CONFIG_UART_NS16550 is not set
    CONFIG_GPIO=y
    CONFIG_PM=y
    # CONFIG_PM_DEVICE is not set
    CONFIG_SOC_HAS_TIMING_FUNCTIONS=y
    CONFIG_ARCH_HAS_CUSTOM_BUSY_WAIT=y
    # CONFIG_CORTEX_M_SYSTICK is not set
    CONFIG_CLOCK_CONTROL=y
    CONFIG_NRF_RTC_TIMER=y
    CONFIG_SYS_CLOCK_TICKS_PER_SEC=32768
    CONFIG_BUILD_OUTPUT_HEX=y
    CONFIG_ROM_START_OFFSET=0
    CONFIG_FLASH_SIZE=256
    CONFIG_FLASH_BASE_ADDRESS=0x1000000
    # CONFIG_GPIO_MCUX is not set
    # CONFIG_CPU_HAS_CUSTOM_FIXED_SOC_MPU_REGIONS is not set
    # CONFIG_TINYCRYPT is not set
    CONFIG_SERIAL=y
    # CONFIG_UART_PL011 is not set
    # CONFIG_IPM_STM32_IPCC is not set
    
    #
    # Modules
    #
    
    #
    # Available modules.
    #
    
    #
    # nrf (D:ncsv1.5.0nrf)
    #
    
    #
    # Nordic nRF Connect
    #
    CONFIG_MAIN_STACK_SIZE=1024
    CONFIG_PRIVILEGED_STACK_SIZE=1024
    CONFIG_NCS_SAMPLES_DEFAULTS=y
    # CONFIG_NCS_SAMPLE_EMPTY_APP_CORE_CHILD_IMAGE is not set
    CONFIG_LOG_DEFAULT_LEVEL=1
    
    #
    # Bootloader
    #
    # CONFIG_BUILD_S1_VARIANT is not set
    # CONFIG_SECURE_BOOT is not set
    CONFIG_PM_PARTITION_SIZE_PROVISION=0x800
    # 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_HASH=y
    # end of Secure Boot firmware validation
    # end of Bootloader
    
    #
    # Bluetooth Low Energy
    #
    CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=1024
    # end of Bluetooth Low Energy
    
    #
    # DFU
    #
    
    #
    # DFU
    #
    # CONFIG_DFU_TARGET is not set
    # end of DFU
    # end of DFU
    
    CONFIG_ESB=y
    CONFIG_ESB_MAX_PAYLOAD_LENGTH=72
    CONFIG_ESB_TX_FIFO_SIZE=8
    CONFIG_ESB_RX_FIFO_SIZE=8
    CONFIG_ESB_PIPE_COUNT=8
    
    #
    # Hardware selection (alter with care)
    #
    # CONFIG_ESB_SYS_TIMER0 is not set
    # CONFIG_ESB_SYS_TIMER1 is not set
    CONFIG_ESB_SYS_TIMER2=y
    # CONFIG_ESB_SYS_TIMER3 is not set
    # CONFIG_ESB_SYS_TIMER4 is not set
    # end of Hardware selection (alter with care)
    
    #
    # Peripheral CPU DFU (PCD)
    #
    # CONFIG_PCD is not set
    # end of Peripheral CPU DFU (PCD)
    
    #
    # Networking
    #
    
    #
    # Application protocols
    #
    # CONFIG_NRF_CLOUD 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
    # CONFIG_CLOUD_API 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
    # 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_PROFILER is not set
    
    #
    # SPM
    #
    # CONFIG_SPM is not set
    # CONFIG_IS_SPM is not set
    # end of SPM
    
    # CONFIG_FW_INFO is not set
    # CONFIG_PPI_TRACE is not set
    # CONFIG_CPU_LOAD is not set
    
    #
    # Nordic MPSL
    #
    CONFIG_MPSL_THREAD_COOP_PRIO=8
    CONFIG_MPSL_SIGNAL_STACK_SIZE=1024
    CONFIG_MPSL_TIMESLOT_SESSION_COUNT=0
    # 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=y
    # CONFIG_MPSL_LOG_LEVEL_DBG is not set
    CONFIG_MPSL_LOG_LEVEL=3
    # end of Nordic MPSL
    
    #
    # Partition Manager
    #
    # CONFIG_PARTITION_MANAGER_ENABLED is not set
    CONFIG_SRAM_BASE_ADDRESS=0x21000000
    
    #
    # Zephyr subsystem configurations
    #
    # end of Zephyr subsystem configurations
    
    #
    # Zephyr samples configurations
    #
    # end of Zephyr samples configurations
    
    #
    # NCS subsystem configurations
    #
    
    #
    # NCS samples configurations
    #
    # end of NCS samples configurations
    
    # CONFIG_PM_SINGLE_IMAGE is not set
    # CONFIG_PM_EXTERNAL_FLASH is not set
    CONFIG_PM_SRAM_BASE=0x21000000
    CONFIG_PM_SRAM_SIZE=0x10000
    # end of Partition Manager
    
    #
    # nRF RPC (Remote Procedure Call) library
    #
    CONFIG_NRF_RPC_THREAD_STACK_SIZE=1024
    CONFIG_NRF_RPC_THREAD_PRIORITY=2
    CONFIG_RPMSG_REMOTE=y
    # CONFIG_RPMSG_MASTER is not set
    CONFIG_NRF_RPC_TR_PRMSG_RX_STACK_SIZE=1536
    CONFIG_NRF_RPC_TR_PRMSG_RX_PRIORITY=-1
    # CONFIG_NRF_RPC_LOG_LEVEL_OFF is not set
    # CONFIG_NRF_RPC_LOG_LEVEL_ERR is not set
    # CONFIG_NRF_RPC_LOG_LEVEL_WRN is not set
    CONFIG_NRF_RPC_LOG_LEVEL_INF=y
    # CONFIG_NRF_RPC_LOG_LEVEL_DBG is not set
    CONFIG_NRF_RPC_LOG_LEVEL=3
    # CONFIG_NRF_RPC_TR_LOG_LEVEL_OFF is not set
    # CONFIG_NRF_RPC_TR_LOG_LEVEL_ERR is not set
    # CONFIG_NRF_RPC_TR_LOG_LEVEL_WRN is not set
    CONFIG_NRF_RPC_TR_LOG_LEVEL_INF=y
    # CONFIG_NRF_RPC_TR_LOG_LEVEL_DBG is not set
    CONFIG_NRF_RPC_TR_LOG_LEVEL=3
    # CONFIG_NRF_RPC_OS_LOG_LEVEL_OFF is not set
    # CONFIG_NRF_RPC_OS_LOG_LEVEL_ERR is not set
    # CONFIG_NRF_RPC_OS_LOG_LEVEL_WRN is not set
    CONFIG_NRF_RPC_OS_LOG_LEVEL_INF=y
    # CONFIG_NRF_RPC_OS_LOG_LEVEL_DBG is not set
    CONFIG_NRF_RPC_OS_LOG_LEVEL=3
    # CONFIG_NRF_RPC_CBOR_LOG_LEVEL_OFF is not set
    # CONFIG_NRF_RPC_CBOR_LOG_LEVEL_ERR is not set
    # CONFIG_NRF_RPC_CBOR_LOG_LEVEL_WRN is not set
    CONFIG_NRF_RPC_CBOR_LOG_LEVEL_INF=y
    # CONFIG_NRF_RPC_CBOR_LOG_LEVEL_DBG is not set
    CONFIG_NRF_RPC_CBOR_LOG_LEVEL=3
    # 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=y
    # CONFIG_MGMT_FMFU_LOG_LEVEL_DBG is not set
    CONFIG_MGMT_FMFU_LOG_LEVEL=3
    # end of Full Modem Firmware Update Management(FMFU)
    
    CONFIG_BOOT_SIGNATURE_KEY_FILE=""
    # CONFIG_CDDL_GEN is not set
    
    #
    # Libraries
    #
    # CONFIG_AGPS is not set
    # CONFIG_AGPS_LOG_LEVEL_OFF is not set
    # CONFIG_AGPS_LOG_LEVEL_ERR is not set
    # CONFIG_AGPS_LOG_LEVEL_WRN is not set
    CONFIG_AGPS_LOG_LEVEL_INF=y
    # CONFIG_AGPS_LOG_LEVEL_DBG is not set
    CONFIG_AGPS_LOG_LEVEL=3
    
    #
    # Binary libraries
    #
    # end of Binary libraries
    
    # CONFIG_NRF_MODEM_LIB is not set
    
    #
    # BSD library (deprecated)
    #
    
    #
    # All the configs below are deprecated, please use NRF_MODEM_LIB equivalents instead
    #
    # CONFIG_BSD_LIBRARY is not set
    # end of BSD library (deprecated)
    
    # CONFIG_ADP536X is not set
    
    #
    # AT Command driver
    #
    # end of AT Command driver
    
    # CONFIG_LTE_LINK_CONTROL is not set
    # CONFIG_FPROTECT is not set
    CONFIG_NRF_ACL_FLASH_REGION_SIZE=0x800
    CONFIG_FPROTECT_BLOCK_SIZE=0x800
    
    #
    # AT Host Library for nrf91
    #
    # CONFIG_AT_HOST_LIBRARY is not set
    # end of AT Host Library for nrf91
    
    # CONFIG_DK_LIBRARY is not set
    # CONFIG_AT_CMD_PARSER 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=y
    # CONFIG_FATAL_ERROR_LOG_LEVEL_DBG is not set
    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_RAM_POWER_DOWN_LIBRARY is not set
    # end of Libraries
    
    #
    # Device Drivers
    #
    # CONFIG_BT_DRIVER_QUIRK_NO_AUTO_DLE is not set
    # CONFIG_ETH_RTT is not set
    # CONFIG_SENSOR is not set
    
    #
    # GPS Drivers
    #
    # CONFIG_GPS_SIM is not set
    # end of GPS Drivers
    
    # CONFIG_NRF_SW_LPUART is not set
    # end of Device Drivers
    
    #
    # External libraries
    #
    # end of External libraries
    
    # CONFIG_UNITY is not set
    # end of Nordic nRF Connect
    
    CONFIG_ZEPHYR_NRF_MODULE=y
    # end of nrf (D:ncsv1.5.0nrf)
    
    #
    # mcuboot (D:ncsv1.5.0bootloadermcuboot)
    #
    
    #
    # MCUboot
    #
    CONFIG_DT_FLASH_WRITE_BLOCK_SIZE=4
    # end of MCUboot
    
    CONFIG_ZEPHYR_MCUBOOT_MODULE=y
    # end of mcuboot (D:ncsv1.5.0bootloadermcuboot)
    
    #
    # nrfxlib (D:ncsv1.5.0nrfxlib)
    #
    
    #
    # 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 is not set
    
    #
    # Crypto libraries for nRF5x SOCs.
    #
    # CONFIG_NRF_OBERON is not set
    # CONFIG_NRF_CC310_BL is not set
    # end of Crypto libraries for nRF5x SOCs.
    
    #
    # Nordic Security
    #
    # CONFIG_NORDIC_SECURITY_BACKEND is not set
    # end of Nordic Security
    
    CONFIG_NRF_RPC=y
    CONFIG_NRF_RPC_CBOR=y
    CONFIG_NRF_RPC_TR_RPMSG=y
    # CONFIG_NRF_RPC_TR_CUSTOM is not set
    CONFIG_NRF_RPC_CMD_CTX_POOL_SIZE=8
    CONFIG_NRF_RPC_THREAD_POOL_SIZE=3
    
    #
    # ZBOSS library configuration
    #
    CONFIG_ZIGBEE_LIBRARY_DEVELOPMENT=y
    CONFIG_ZIGBEE_LIBRARY_SOC=y
    # CONFIG_ZIGBEE_LIBRARY_NCP_DEV is not set
    # CONFIG_ZIGBEE_GP_NONE is not set
    CONFIG_ZIGBEE_GP_PB=y
    # CONFIG_ZIGBEE_GP_CB is not set
    # end of ZBOSS library configuration
    # end of Nordic nrfxlib
    
    CONFIG_ZEPHYR_NRFXLIB_MODULE=y
    # end of nrfxlib (D:ncsv1.5.0nrfxlib)
    
    #
    # cddl-gen (D:ncsv1.5.0moduleslibcddl-gen)
    #
    CONFIG_ZEPHYR_CDDL_GEN_MODULE=y
    # end of cddl-gen (D:ncsv1.5.0moduleslibcddl-gen)
    
    #
    # hal_nordic (D:ncsv1.5.0moduleshalnordic)
    #
    CONFIG_ZEPHYR_HAL_NORDIC_MODULE=y
    CONFIG_HAS_NORDIC_DRIVERS=y
    
    #
    # Nordic drivers
    #
    # CONFIG_NRF_802154_RADIO_DRIVER is not set
    # CONFIG_NRF_802154_SER_RADIO 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_DPPI=y
    # CONFIG_NRFX_EGU is not set
    # 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_RTC is not set
    # CONFIG_NRFX_RTC0 is not set
    # CONFIG_NRFX_RTC1 is not set
    # CONFIG_NRFX_SPIM is not set
    # CONFIG_NRFX_SPIM0 is not set
    # CONFIG_NRFX_SPIS is not set
    # CONFIG_NRFX_SPIS0 is not set
    # CONFIG_NRFX_SYSTICK is not set
    # CONFIG_NRFX_TEMP is not set
    CONFIG_NRFX_TIMER=y
    CONFIG_NRFX_TIMER0=y
    # CONFIG_NRFX_TIMER1 is not set
    # CONFIG_NRFX_TIMER2 is not set
    # CONFIG_NRFX_TWIM is not set
    # CONFIG_NRFX_TWIM0 is not set
    # CONFIG_NRFX_TWIS is not set
    # CONFIG_NRFX_TWIS0 is not set
    # CONFIG_NRFX_UARTE is not set
    # CONFIG_NRFX_UARTE0 is not set
    # CONFIG_NRFX_WDT is not set
    # CONFIG_NRFX_WDT0 is not set
    # CONFIG_NRFX_PRS is not set
    # 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 nrfx drivers
    # end of hal_nordic (D:ncsv1.5.0moduleshalnordic)
    
    #
    # connectedhomeip (D:ncsv1.5.0moduleslibconnectedhomeip)
    #
    # CONFIG_CHIP is not set
    CONFIG_ZEPHYR_CONNECTEDHOMEIP_MODULE=y
    # end of connectedhomeip (D:ncsv1.5.0moduleslibconnectedhomeip)
    
    #
    # Optional modules. Make sure they're installed, via the project manifest.
    #
    # CONFIG_CANOPENNODE is not set
    # CONFIG_CIVETWEB is not set
    CONFIG_HAS_CMSIS_CORE=y
    CONFIG_HAS_CMSIS_CORE_M=y
    CONFIG_LIBMETAL=y
    CONFIG_LIBMETAL_SRC_PATH="libmetal"
    # CONFIG_HAS_SEMTECH_LORAMAC is not set
    # CONFIG_HAS_SEMTECH_SOFT_SE is not set
    # CONFIG_HAS_SEMTECH_RADIO_DRIVERS is not set
    # CONFIG_MBEDTLS is not set
    # CONFIG_HAS_MEC_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_NUM_PREEMPT_PRIORITIES=15
    CONFIG_TINYCBOR=y
    # CONFIG_CBOR_ENCODER_NO_CHECK_USER is not set
    CONFIG_CBOR_PARSER_MAX_RECURSIONS=1024
    # CONFIG_CBOR_PARSER_NO_STRICT_CHECKS is not set
    # CONFIG_CBOR_FLOATING_POINT is not set
    # CONFIG_CBOR_HALF_FLOAT_TYPE is not set
    CONFIG_CBOR_WITHOUT_OPEN_MEMSTREAM=y
    # CONFIG_CBOR_PRETTY_PRINTING is not set
    # CONFIG_MCUBOOT_BOOTUTIL_LIB is not set
    
    #
    # Unavailable modules, please install those via the project manifest.
    #
    # end of Modules
    
    # CONFIG_BOARD_NRF5340PDK_NRF5340_CPUNET is not set
    CONFIG_BOARD_NRF5340DK_NRF5340_CPUNET=y
    
    #
    # Board Options
    #
    CONFIG_IPM_NRFX=y
    CONFIG_IPM_MSG_CH_0_ENABLE=y
    CONFIG_IPM_MSG_CH_1_ENABLE=y
    CONFIG_IPM_MSG_CH_0_TX=y
    # CONFIG_IPM_MSG_CH_0_RX is not set
    # CONFIG_IPM_MSG_CH_1_TX is not set
    CONFIG_IPM_MSG_CH_1_RX=y
    CONFIG_DOMAIN_CPUAPP_BOARD="nrf5340dk_nrf5340_cpuapp"
    # end of Board Options
    
    # CONFIG_SOC_SERIES_BEETLE is not set
    # CONFIG_SOC_SERIES_ARM_DESIGNSTART is not set
    # CONFIG_SOC_SERIES_MPS2 is not set
    # CONFIG_SOC_SERIES_MUSCA is not set
    # CONFIG_SOC_SERIES_MUSCA_B1 is not set
    # CONFIG_SOC_SERIES_MUSCA_S1 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_SAMR21 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_XMC_4XXX is not set
    # CONFIG_SOC_SERIES_MEC1501X is not set
    # CONFIG_SOC_SERIES_MEC1701X 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_M48X is not set
    # CONFIG_SOC_SERIES_NPCX7 is not set
    # CONFIG_SOC_SERIES_IMX_6X_M4 is not set
    # CONFIG_SOC_SERIES_IMX7_M4 is not set
    # CONFIG_SOC_SERIES_IMX8MM_M4 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_LPC54XXX is not set
    # CONFIG_SOC_SERIES_LPC55XXX is not set
    # CONFIG_SOC_QEMU_CORTEX_A53 is not set
    # CONFIG_SOC_EOS_S3 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_EFR32FG1P is not set
    # CONFIG_SOC_SERIES_EFR32MG12P is not set
    # CONFIG_SOC_SERIES_EFR32MG21 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_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_STM32WBX is not set
    # CONFIG_SOC_TI_LM3S6965 is not set
    # CONFIG_SOC_SERIES_CC13X2_CC26X2 is not set
    # CONFIG_SOC_SERIES_CC32XX is not set
    # CONFIG_SOC_SERIES_MSP432P4XX is not set
    # CONFIG_SOC_XILINX_ZYNQMP_RPU is not set
    
    #
    # Hardware Configuration
    #
    CONFIG_CPU_HAS_ARM_MPU=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_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_IEEE802154=y
    CONFIG_HAS_HW_NRF_RNG=y
    CONFIG_HAS_HW_NRF_RTC0=y
    CONFIG_HAS_HW_NRF_RTC1=y
    CONFIG_HAS_HW_NRF_SPIM0=y
    CONFIG_HAS_HW_NRF_SPIS0=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_TWIM0=y
    CONFIG_HAS_HW_NRF_TWIS0=y
    CONFIG_HAS_HW_NRF_UARTE0=y
    CONFIG_HAS_HW_NRF_WDT=y
    CONFIG_NRF_HW_RTC1_RESERVED=y
    CONFIG_SOC_NRF5340_CPUNET=y
    # CONFIG_SOC_NRF5340_CPUAPP_QKAA is not set
    CONFIG_SOC_NRF5340_CPUNET_QKAA=y
    CONFIG_NRF_ENABLE_CACHE=y
    # 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=y
    # CONFIG_SOC_LOG_LEVEL_DBG is not set
    CONFIG_SOC_LOG_LEVEL=3
    # end of Hardware Configuration
    
    CONFIG_SOC_COMPATIBLE_NRF=y
    
    #
    # ARM Options
    #
    CONFIG_ARCH="arm"
    CONFIG_CPU_CORTEX=y
    CONFIG_CPU_CORTEX_M=y
    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_PLATFORM_SPECIFIC_INIT=y
    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 is not set
    # CONFIG_SW_VECTOR_RELAY is not set
    # CONFIG_CORTEX_M_DWT is not set
    # end of ARM Cortex-M0/M0+/M1/M3/M4/M7/M23/M33 options
    
    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_CUSTOM_SECTION_ALIGN is not set
    CONFIG_CUSTOM_SECTION_MIN_ALIGN_SIZE=32
    CONFIG_GEN_IRQ_VECTOR_TABLE=y
    CONFIG_IDLE_STACK_SIZE=256
    CONFIG_ISR_STACK_SIZE=2048
    CONFIG_TEST_EXTRA_STACKSIZE=0
    # end of ARM Options
    
    CONFIG_ARM=y
    CONFIG_ARCH_IS_SET=y
    
    #
    # General Architecture Options
    #
    # 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=y
    # CONFIG_ARCH_LOG_LEVEL_DBG is not set
    CONFIG_ARCH_LOG_LEVEL=3
    # 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=y
    # CONFIG_MPU_LOG_LEVEL_DBG is not set
    CONFIG_MPU_LOG_LEVEL=3
    CONFIG_HW_STACK_PROTECTION=y
    # CONFIG_USERSPACE is not set
    CONFIG_KOBJECT_TEXT_AREA=256
    CONFIG_GEN_PRIV_STACKS=y
    # CONFIG_STACK_GROWS_UP is not set
    
    #
    # Interrupt Configuration
    #
    # CONFIG_DYNAMIC_INTERRUPTS is not set
    CONFIG_GEN_SW_ISR_TABLE=y
    CONFIG_ARCH_SW_ISR_TABLE_ALIGN=0
    CONFIG_GEN_IRQ_START_VECTOR=0
    # CONFIG_EXTRA_EXCEPTION_INFO is not set
    # end of Interrupt Configuration
    
    # CONFIG_INIT_ARCH_HW_AT_BOOT is not set
    # end of General Architecture Options
    
    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_THREAD_ABORT=y
    CONFIG_CPU_HAS_MPU=y
    CONFIG_MPU=y
    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
    #
    # CONFIG_CACHE_MANAGEMENT is not set
    # end of Cache Options
    
    #
    # 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=y
    # CONFIG_KERNEL_LOG_LEVEL_DBG is not set
    CONFIG_KERNEL_LOG_LEVEL=3
    CONFIG_MULTITHREADING=y
    CONFIG_NUM_COOP_PRIORITIES=16
    CONFIG_MAIN_THREAD_PRIORITY=0
    CONFIG_COOP_ENABLED=y
    CONFIG_PREEMPT_ENABLED=y
    CONFIG_PRIORITY_CEILING=0
    CONFIG_NUM_METAIRQ_PRIORITIES=0
    # CONFIG_SCHED_DEADLINE is not set
    # CONFIG_SCHED_CPU_MASK is not set
    CONFIG_THREAD_STACK_INFO=y
    CONFIG_THREAD_CUSTOM_DATA=y
    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_INIT_STACKS is not set
    CONFIG_BOOT_BANNER=y
    CONFIG_BOOT_DELAY=0
    # CONFIG_THREAD_MONITOR is not set
    # CONFIG_THREAD_NAME is not set
    # CONFIG_THREAD_RUNTIME_STATS is not set
    # end of Kernel Debugging and Metrics
    
    #
    # Work Queue Options
    #
    CONFIG_SYSTEM_WORKQUEUE_PRIORITY=-1
    # 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_POLL is not set
    # 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_NUM_PIPE_ASYNC_MSGS=10
    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_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_IDLE=y
    CONFIG_TICKLESS_IDLE_THRESH=3
    CONFIG_TICKLESS_KERNEL=y
    # end of General Kernel Options
    
    CONFIG_HAS_DTS=y
    CONFIG_HAS_DTS_GPIO=y
    
    #
    # Device Drivers
    #
    # CONFIG_IEEE802154 is not set
    # CONFIG_LORA is not set
    CONFIG_UART_CONSOLE_ON_DEV_NAME="UART_0"
    CONFIG_CONSOLE=y
    CONFIG_CONSOLE_INPUT_MAX_LINE_LEN=128
    CONFIG_CONSOLE_HAS_DRIVER=y
    # CONFIG_CONSOLE_HANDLER is not set
    CONFIG_UART_CONSOLE=y
    CONFIG_UART_CONSOLE_INIT_PRIORITY=60
    # CONFIG_UART_CONSOLE_DEBUG_SERVER_HOOKS is not set
    # CONFIG_UART_CONSOLE_MCUMGR is not set
    # CONFIG_USB_UART_CONSOLE is not set
    # CONFIG_RAM_CONSOLE is not set
    # CONFIG_IPM_CONSOLE_SENDER is not set
    # CONFIG_IPM_CONSOLE_RECEIVER is not set
    # CONFIG_IPM_CONSOLE is not set
    # CONFIG_UART_PIPE is not set
    # CONFIG_UART_MCUMGR is not set
    # CONFIG_SEMIHOST_CONSOLE 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=y
    # CONFIG_UART_CONSOLE_LOG_LEVEL_DBG is not set
    CONFIG_UART_CONSOLE_LOG_LEVEL=3
    # CONFIG_GSM_MUX is not set
    CONFIG_HAS_SEGGER_RTT=y
    # CONFIG_USE_SEGGER_RTT is not set
    # CONFIG_EC_HOST_CMD_PERIPH is not set
    # CONFIG_NET_LOOPBACK is not set
    
    #
    # Capabilities
    #
    CONFIG_SERIAL_HAS_DRIVER=y
    CONFIG_SERIAL_SUPPORT_ASYNC=y
    CONFIG_SERIAL_SUPPORT_INTERRUPT=y
    # CONFIG_UART_ASYNC_API is not set
    # CONFIG_UART_LINE_CTRL is not set
    # CONFIG_UART_DRV_CMD 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_NRF_PARITY_BIT is not set
    CONFIG_UART_0_NRF_TX_BUFFER_SIZE=32
    CONFIG_NRF_UARTE_PERIPHERAL=y
    # CONFIG_UART_ALTERA_JTAG is not set
    # CONFIG_UART_XLNX_UARTLITE is not set
    
    #
    # Interrupt Controllers
    #
    # CONFIG_SWERV_PIC is not set
    # CONFIG_MULTI_LEVEL_INTERRUPTS is not set
    # end of Interrupt Controllers
    
    #
    # Timer Drivers
    #
    CONFIG_NRF_RTC_TIMER_USER_CHAN_COUNT=0
    # CONFIG_SYSTEM_CLOCK_NO_WAIT is not set
    # CONFIG_SYSTEM_CLOCK_WAIT_FOR_AVAILABILITY is not set
    CONFIG_SYSTEM_CLOCK_WAIT_FOR_STABILITY=y
    CONFIG_SYSTEM_CLOCK_DISABLE=y
    # 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
    # end of Timer Drivers
    
    # CONFIG_ENTROPY_GENERATOR is not set
    # CONFIG_PCIE is not set
    # CONFIG_PCIE_ENDPOINT 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=y
    # CONFIG_GPIO_LOG_LEVEL_DBG is not set
    CONFIG_GPIO_LOG_LEVEL=3
    # CONFIG_GPIO_DW is not set
    CONFIG_GPIO_NRFX=y
    CONFIG_GPIO_NRF_INIT_PRIORITY=40
    CONFIG_GPIO_NRF_P0=y
    # CONFIG_GPIO_ITE_IT8XXX2 is not set
    # CONFIG_GPIO_INTEL_APL is not set
    # CONFIG_GPIO_XLNX_AXI is not set
    # CONFIG_GPIO_EMUL is not set
    # CONFIG_SHARED_IRQ is not set
    # CONFIG_I2S is not set
    # CONFIG_PWM is not set
    # CONFIG_PINMUX is not set
    # CONFIG_ADC is not set
    # CONFIG_DAC 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=y
    # CONFIG_CLOCK_CONTROL_LOG_LEVEL_DBG is not set
    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 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 is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_30PPM is not set
    CONFIG_CLOCK_CONTROL_NRF_K32SRC_20PPM=y
    CONFIG_CLOCK_CONTROL_NRF_ACCURACY=20
    # CONFIG_PTP_CLOCK is not set
    CONFIG_IPM=y
    # CONFIG_IPM_MHU is not set
    # CONFIG_IPM_NRF_SINGLE_INSTANCE is not set
    
    #
    # IPM Message Channel [0] configuration
    #
    # end of IPM Message Channel [0] configuration
    
    #
    # IPM Message Channel [1] configuration
    #
    # end of IPM Message Channel [1] configuration
    
    #
    # IPM Message Channel [2] configuration
    #
    # CONFIG_IPM_MSG_CH_2_ENABLE is not set
    # end of IPM Message Channel [2] configuration
    
    #
    # IPM Message Channel [3] configuration
    #
    # CONFIG_IPM_MSG_CH_3_ENABLE is not set
    # end of IPM Message Channel [3] configuration
    
    #
    # IPM Message Channel [4] configuration
    #
    # CONFIG_IPM_MSG_CH_4_ENABLE is not set
    # end of IPM Message Channel [4] configuration
    
    #
    # IPM Message Channel [5] configuration
    #
    # CONFIG_IPM_MSG_CH_5_ENABLE is not set
    # end of IPM Message Channel [5] configuration
    
    #
    # IPM Message Channel [6] configuration
    #
    # CONFIG_IPM_MSG_CH_6_ENABLE is not set
    # end of IPM Message Channel [6] configuration
    
    #
    # IPM Message Channel [7] configuration
    #
    # CONFIG_IPM_MSG_CH_7_ENABLE is not set
    # end of IPM Message Channel [7] configuration
    
    #
    # IPM Message Channel [8] configuration
    #
    # CONFIG_IPM_MSG_CH_8_ENABLE is not set
    # end of IPM Message Channel [8] configuration
    
    #
    # IPM Message Channel [9] configuration
    #
    # CONFIG_IPM_MSG_CH_9_ENABLE is not set
    # end of IPM Message Channel [9] configuration
    
    #
    # IPM Message Channel [10] configuration
    #
    # CONFIG_IPM_MSG_CH_10_ENABLE is not set
    # end of IPM Message Channel [10] configuration
    
    #
    # IPM Message Channel [11] configuration
    #
    # CONFIG_IPM_MSG_CH_11_ENABLE is not set
    # end of IPM Message Channel [11] configuration
    
    #
    # IPM Message Channel [12] configuration
    #
    # CONFIG_IPM_MSG_CH_12_ENABLE is not set
    # end of IPM Message Channel [12] configuration
    
    #
    # IPM Message Channel [13] configuration
    #
    # CONFIG_IPM_MSG_CH_13_ENABLE is not set
    # end of IPM Message Channel [13] configuration
    
    #
    # IPM Message Channel [14] configuration
    #
    # CONFIG_IPM_MSG_CH_14_ENABLE is not set
    # end of IPM Message Channel [14] configuration
    
    #
    # IPM Message Channel [15] configuration
    #
    # CONFIG_IPM_MSG_CH_15_ENABLE is not set
    # end of IPM Message Channel [15] configuration
    
    # CONFIG_IPM_INTEL_ADSP is not set
    # CONFIG_IPM_LOG_LEVEL_OFF is not set
    # CONFIG_IPM_LOG_LEVEL_ERR is not set
    # CONFIG_IPM_LOG_LEVEL_WRN is not set
    CONFIG_IPM_LOG_LEVEL_INF=y
    # CONFIG_IPM_LOG_LEVEL_DBG is not set
    CONFIG_IPM_LOG_LEVEL=3
    # CONFIG_FLASH is not set
    # CONFIG_COUNTER is not set
    # CONFIG_DMA is not set
    # CONFIG_USB is not set
    # CONFIG_CRYPTO is not set
    # CONFIG_DISPLAY is not set
    # CONFIG_LED_STRIP is not set
    # CONFIG_LED is not set
    # CONFIG_CAN is not set
    # CONFIG_AUDIO is not set
    # CONFIG_NEURAL_NET_ACCEL is not set
    # CONFIG_HWINFO is not set
    # CONFIG_ESPI is not set
    # CONFIG_PS2 is not set
    # CONFIG_VIDEO is not set
    # CONFIG_EEPROM is not set
    # CONFIG_PECI is not set
    # CONFIG_PECI_INTERRUPT_DRIVEN is not set
    # CONFIG_REGULATOR is not set
    # CONFIG_MEMC is not set
    # CONFIG_VIRTUALIZATION is not set
    # end of Device Drivers
    
    #
    # C Library
    #
    CONFIG_MINIMAL_LIBC=y
    # CONFIG_NEWLIB_LIBC is not set
    # CONFIG_EXTERNAL_LIBC is not set
    CONFIG_HAS_NEWLIB_LIBC_NANO=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_STDOUT_CONSOLE=y
    # end of C Library
    
    #
    # Additional libraries
    #
    # CONFIG_FNMATCH is not set
    # CONFIG_LVGL is not set
    
    #
    # OS Support Library
    #
    # CONFIG_JSON_LIBRARY is not set
    # CONFIG_RING_BUFFER is not set
    # CONFIG_BASE64 is not set
    # CONFIG_SYS_HEAP_VALIDATE is not set
    CONFIG_SYS_HEAP_ALLOC_LOOPS=3
    # CONFIG_PRINTK64 is not set
    # CONFIG_PRINTK_SYNC 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
    # end of OS Support Library
    
    CONFIG_POSIX_MAX_FDS=4
    # CONFIG_POSIX_API is not set
    # CONFIG_PTHREAD_IPC is not set
    # CONFIG_POSIX_CLOCK is not set
    CONFIG_MAX_TIMER_COUNT=5
    # CONFIG_POSIX_MQUEUE is not set
    # CONFIG_EVENTFD is not set
    # CONFIG_OPENAMP_RSC_TABLE is not set
    # end of Additional libraries
    
    #
    # Sub Systems and OS Services
    #
    # CONFIG_BT is not set
    
    #
    # 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
    # CONFIG_CPLUSPLUS is not set
    
    #
    # System Monitoring Options
    #
    # CONFIG_BOOT_TIME_MEASUREMENT is not set
    # 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 is not set
    CONFIG_PRINTK=y
    CONFIG_EARLY_CONSOLE=y
    CONFIG_ASSERT=y
    CONFIG_ASSERT_LEVEL=2
    CONFIG_SPIN_VALIDATE=y
    # CONFIG_FORCE_NO_ASSERT is not set
    CONFIG_ASSERT_VERBOSE=y
    # CONFIG_ASSERT_NO_FILE_INFO is not set
    CONFIG_ASSERT_NO_COND_INFO=y
    CONFIG_ASSERT_NO_MSG_INFO=y
    # CONFIG_OBJECT_TRACING is not set
    # CONFIG_OVERRIDE_FRAME_POINTER_DEFAULT is not set
    # CONFIG_DEBUG_INFO is not set
    # CONFIG_OPENOCD_SUPPORT is not set
    # CONFIG_DEBUG_COREDUMP is not set
    # end of Debugging Options
    
    # CONFIG_DISK_ACCESS 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
    # end of Inter Processor Communication
    
    # CONFIG_JWT is not set
    CONFIG_LOG=y
    CONFIG_LOG_MINIMAL=y
    CONFIG_LOG_OVERRIDE_LEVEL=0
    CONFIG_LOG_MAX_LEVEL=4
    # CONFIG_LOG_MIPI_SYST_ENABLE is not set
    
    #
    # Device Management
    #
    
    #
    # Host command handler subsystem
    #
    # CONFIG_EC_HOST_CMD is not set
    # end of Host command handler subsystem
    
    # CONFIG_MCUMGR is not set
    # CONFIG_HAWKBIT is not set
    # CONFIG_UPDATEHUB is not set
    # CONFIG_OSDP is not set
    # end of Device Management
    
    #
    # Networking
    #
    # CONFIG_NET_BUF is not set
    # CONFIG_NETWORKING is not set
    # end of Networking
    
    #
    # Power Management
    #
    # CONFIG_SYS_POWER_MANAGEMENT is not set
    # CONFIG_PM_STATE_LOCK is not set
    # CONFIG_PM_DIRECT_FORCE_MODE is not set
    # CONFIG_PM_DEBUG is not set
    CONFIG_PM_POLICY_RESIDENCY=y
    # CONFIG_PM_POLICY_DUMMY is not set
    # CONFIG_PM_POLICY_APP is not set
    CONFIG_PM_POLICY_RESIDENCY_DEFAULT=y
    # 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=y
    # CONFIG_PM_LOG_LEVEL_DBG is not set
    CONFIG_PM_LOG_LEVEL=3
    # CONFIG_DEVICE_POWER_MANAGEMENT is not set
    # end of Power Management
    
    # CONFIG_SHELL is not set
    # CONFIG_STATS is not set
    # CONFIG_IMG_MANAGER is not set
    
    #
    # Random Number Generators
    #
    # CONFIG_TEST_RANDOM_GENERATOR is not set
    # end of Random Number Generators
    
    #
    # Storage
    #
    # CONFIG_STREAM_FLASH is not set
    # end of Storage
    
    # CONFIG_SETTINGS is not set
    
    #
    # Testing
    #
    # CONFIG_ZTEST is not set
    # CONFIG_ZTEST_MOCKING is not set
    # CONFIG_TEST is not set
    # CONFIG_TEST_USERSPACE is not set
    CONFIG_TEST_ARM_CORTEX_M=y
    # end of Testing
    
    # CONFIG_TIMING_FUNCTIONS is not set
    # CONFIG_TRACING is not set
    # end of Sub Systems and OS Services
    
    CONFIG_TOOLCHAIN_GNUARMEMB=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_CODE_DATA_RELOCATION is not set
    CONFIG_HAS_FLASH_LOAD_OFFSET=y
    # CONFIG_USE_DT_CODE_PARTITION is not set
    # CONFIG_HAVE_CUSTOM_LINKER_SCRIPT is not set
    CONFIG_KERNEL_ENTRY="__start"
    CONFIG_LINKER_SORT_BY_ALIGNMENT=y
    # end of Linker Options
    
    #
    # Compiler Options
    #
    # CONFIG_CODING_GUIDELINE_CHECK is not set
    # CONFIG_NATIVE_APPLICATION is not set
    CONFIG_SIZE_OPTIMIZATIONS=y
    # CONFIG_SPEED_OPTIMIZATIONS is not set
    # CONFIG_DEBUG_OPTIMIZATIONS is not set
    # CONFIG_NO_OPTIMIZATIONS is not set
    CONFIG_COMPILER_OPT=""
    # 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_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_STRIPPED is not set
    # CONFIG_APPLICATION_DEFINED_SYSCALL is not set
    # CONFIG_MAKEFILE_EXPORTS is not set
    # CONFIG_DEPRECATED_ZEPHYR_INT_TYPES is not set
    # end of Build Options
    # end of Build and Link Features
    
    #
    # Boot Options
    #
    # CONFIG_IS_BOOTLOADER is not set
    # CONFIG_BOOTLOADER_MCUBOOT is not set
    CONFIG_REBOOT=y
    # CONFIG_MISRA_SANE is not set
    # end of Boot Options
    
    #
    # Compatibility
    #
    CONFIG_COMPAT_INCLUDES=y
    # end of Compatibility
    
    #
    # Enhanced ShockBurst: Receiver
    #
    CONFIG_ESB_PRX_APP_LOG_LEVEL=4
    # end of Enhanced ShockBurst: Receiver
    

Children
Related