Partition management for multiple peripherals and partitions

Hello everyone,

I'm trying to add an external flash memory to the address range of the main memory. There is already an existing EEPROM, which will be deprecated later, and a Flash memory is added now. Both are connected via SPI. My intention is the following:

  • Leave the EEPROM as it is for now in the configuration
  • Add the flash memory to SPI
  • Define an extended memory space (My intention is to start it at the address 0x90000)
  • Create two partitions for the Flash:
    • Config partition: This needs only be 100 kiB, replacing the functionality of the EEPROM, and will be directly addressed
    • McuBoot swap partition: This will be where the image for the firmware update will be placed. This will be the rest of the memory.

Right now I always get the following warning when building and I'm not sure if I have configured everything correctly:

unit address and first address in 'reg' (0x200090000) don't match for /soc/spi@40004000/flash_at25pe80@2/partitions/partition@0
unit address and first address in 'reg' (0x200090400) don't match for /soc/spi@40004000/flash_at25pe80@2/partitions/partition@1

I have configured my application the following way:

CONFIG_SPI=y
CONFIG_SPI_NOR=y
CONFIG_SPI_NOR_FLASH_LAYOUT_PAGE_SIZE=4096
CONFIG_PM_PARTITION_REGION_LITTLEFS_EXTERNAL=y
CONFIG_PM_PARTITION_REGION_SETTINGS_STORAGE_EXTERNAL=y
CONFIG_PM_PARTITION_REGION_NVS_STORAGE_EXTERNAL=y
CONFIG_PM_OVERRIDE_EXTERNAL_DRIVER_CHECK=y
CONFIG_PM_EXTERNAL_FLASH_MCUBOOT_SECONDARY=y

Device tree (SPI reg 1 is reserved for another device currently in development, but does not need a partition):

&spi1 {
	compatible = "nordic,nrf-spi";
	status = "okay";
	pinctrl-0 = <&spi1_default>;
	pinctrl-1 = <&spi1_sleep>;
	pinctrl-names = "default", "sleep";
	cs-gpios = <&gpio0 11 GPIO_ACTIVE_LOW>, <&gpio0 12 GPIO_ACTIVE_LOW>, <&gpio0 13 GPIO_ACTIVE_LOW>; //SIO_11 MCU_0403_A - SPI_CS1
	eeprom_m95040:eeprom_m95040@0 {
		// M95040 is compatible with atmel at25 eeprom driver
		compatible = "atmel,at25";
		reg = <0>;
		size = <DT_SIZE_K(512)>;
		pagesize = <512>;
		address-width = <24>;
		spi-max-frequency = <8000000>;
		timeout = <5>;
	};
	flash_at25pe80:flash_at25pe80@2 {
		compatible = "jedec,spi-nor";
		status = "okay";
		size = < DT_SIZE_M(8) >;
		reg = < 2 >;
		jedec-id = [1f 25 00];
		spi-max-frequency = < 8000000 >;
	};
};

&flash0 {
	partitions {
		compatible = "fixed-partitions";
		#address-cells = <1>;
		#size-cells = <1>;

		boot_partition: partition@0 {
			label = "mcuboot";
			reg = <0x0 0xc000>;
		};
		slot0_partition: partition@c000 {
			label = "image-0";
			reg = <0xc000 0x32000>;
		};
		slot1_partition: partition@3e000 {
			label = "image-1";
			reg = <0x3e000 0x32000>;
		};
		scratch_partition: partition@70000 {
			label = "image-scratch";
			reg = <0x70000 0xa000>;
		};
		storage_partition: partition@7a000 {
			label = "storage";
			reg = <0x7a000 0x6000>;
		};
	};
};

&flash_at25pe80 {
	partitions {
		compatible = "fixed-partitions";
		#address-cells = < 2 >;
		#size-cells = < 1 >;

		confflash: partition@0 {
			label = "config";
			reg = < 2 0x90000 0x400 >;
		};
		extflash: partition@1 {
			label = "external-flash";
			reg = < 2 0x90400 0xFFC00 >;
		};
	};
};

/{
	chosen {
		zephyr,console = &uart0;
		zephyr,shell-uart = &uart0;
		zephyr,uart-mcumgr = &uart0;
		zephyr,bt-mon-uart = &uart0;
		zephyr,bt-c2h-uart = &uart0;
		zephyr,sram = &sram0;
		zephyr,flash = &flash0;
		zephyr,code-partition = &slot0_partition;
		nordic,pm-ext-flash = &extflash;
	};
}

partition.yml

app:
  address: 0x9200
  end_address: 0x42000
  region: flash_primary
  size: 0x38e00 #App size 227.5 KB
mcuboot:
  address: 0x0
  end_address: 0x9000
  placement:
    before:
    - mcuboot_primary
  region: flash_primary
  size: 0x9000 #38 KB MCU Bootloader
mcuboot_pad:
  address: 0x9000
  end_address: 0x9200
  placement:
    align:
      start: 0x1000
    before:
    - mcuboot_primary_app
  region: flash_primary
  size: 0x200
mcuboot_primary:
  address: 0x9000
  end_address: 0x42000
  orig_span: &id001
  - mcuboot_pad
  - app
  region: flash_primary
  sharers: 0x1
  size: 0x39000
  span: *id001
mcuboot_primary_app:
  address: 0x9200
  end_address: 0x42000
  orig_span: &id002
  - app
  region: flash_primary
  size: 0x38E00
  span: *id002
mcuboot_secondary:
  address: 0x90000
  device: /soc/spi1/flash_at25pe80@2
  end_address: 0x18FFF
  region: external_flash
  size: 0x100000 #1 MiB / 8 Mbit
nvs_storage:
  address: 0x7b000
  end_address: 0x80000
  placement:
    align:
      start: 0x1000
    before:
    - end
  region: flash_primary
  size: 0x5000
sram_primary:
  address: 0x20000000
  end_address: 0x20020000
  region: sram_primary
  size: 0x20000

I have not defined any custom regions, as the documentation is (in my opinion) abysmal for this with too few examples. But I would gladly be proven otherwise.

The goal is for the config partition to be writable by address, and for McuBoot to use the second partition as an extension, although this may be implemented at a later time.

Sadly I have not found an example where multiple SPI devices are used, one of them a flash device and with addressable partitions, so I don't know where the warning is coming from, as it doesn't show what it expects from me.

Much thanks for any help,

Rico

Parents
  • Hi Rico,

    I will support you with this case. Please be informed that unfortunately we might take some days with this. That is because we are understaffed due to the summer vacation season, and it looks like I will need to research a bit for this.

    I would like to confirm about these configurations that you are setting:

    CONFIG_PM_PARTITION_REGION_LITTLEFS_EXTERNAL=y
    CONFIG_PM_PARTITION_REGION_SETTINGS_STORAGE_EXTERNAL=y
    CONFIG_PM_PARTITION_REGION_NVS_STORAGE_EXTERNAL=y

    Do you want all of these regions on external flash? You mentioned you only want some configs and MCUboot secondary there.

    Could you please also share your compiled DTS? It's in <build directory>/zephyr/zephyr.dts.

    Hieu

  • I do not need all of these, if I reread the options again correctly. I falsely understood from the documentation that all three should be set, when it is only one of then.

    The compiled DTS file is the following (the pins are not yet correctly, but it is the complete hardware architecture):

    /dts-v1/;
    
    / {
    	#address-cells = < 0x1 >;
    	#size-cells = < 0x1 >;
    	model = "carl_sensor";
    	compatible = "krafft,carl-sensor";
    	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 = &sram0;
    		zephyr,flash = &flash0;
    		zephyr,code-partition = &slot0_partition;
    		nordic,pm-ext-flash = &extflash;
    	};
    	aliases {
    		pwm-red = &pwm_red;
    		pwm-green = &pwm_green;
    		pwm-blue = &pwm_blue;
    		hall-int = &hall_int;
    		enable-5v = &shdn_ltc3525;
    		tilt1 = &tilt1;
    		tilt2 = &tilt2;
    		eeprom-0 = &eeprom_m95040;
    		exflash = &flash_at25pe80;
    		adc-0 = &ads1219;
    		gyroscope = &adxrs649;
    		accel = &adxl372;
    		rtc = &rv3028;
    		bq35100-ge = &bq35100_ge;
    		bq35100-alarm = &bq35100_alarm;
    		cy15b104 = &cy15b104;
    	};
    	soc {
    		#address-cells = < 0x1 >;
    		#size-cells = < 0x1 >;
    		compatible = "nordic,nRF52833-QIAA", "nordic,nRF52833", "nordic,nRF52", "simple-bus";
    		interrupt-parent = < &nvic >;
    		ranges;
    		nvic: interrupt-controller@e000e100 {
    			#address-cells = < 0x1 >;
    			compatible = "arm,v7m-nvic";
    			reg = < 0xe000e100 0xc00 >;
    			interrupt-controller;
    			#interrupt-cells = < 0x2 >;
    			arm,num-irq-priority-bits = < 0x3 >;
    			phandle = < 0x1 >;
    		};
    		systick: timer@e000e010 {
    			compatible = "arm,armv7m-systick";
    			reg = < 0xe000e010 0x10 >;
    			status = "disabled";
    		};
    		ficr: ficr@10000000 {
    			compatible = "nordic,nrf-ficr";
    			reg = < 0x10000000 0x1000 >;
    			status = "okay";
    		};
    		uicr: uicr@10001000 {
    			compatible = "nordic,nrf-uicr";
    			reg = < 0x10001000 0x1000 >;
    			status = "okay";
    		};
    		sram0: memory@20000000 {
    			compatible = "mmio-sram";
    			reg = < 0x20000000 0x20000 >;
    		};
    		clock: clock@40000000 {
    			compatible = "nordic,nrf-clock";
    			reg = < 0x40000000 0x1000 >;
    			interrupts = < 0x0 0x1 >;
    			status = "okay";
    		};
    		power: power@40000000 {
    			compatible = "nordic,nrf-power";
    			reg = < 0x40000000 0x1000 >;
    			interrupts = < 0x0 0x1 >;
    			status = "okay";
    			#address-cells = < 0x1 >;
    			#size-cells = < 0x1 >;
    			gpregret1: gpregret1@4000051c {
    				compatible = "nordic,nrf-gpregret";
    				reg = < 0x4000051c 0x1 >;
    				status = "okay";
    			};
    			gpregret2: gpregret2@40000520 {
    				compatible = "nordic,nrf-gpregret";
    				reg = < 0x40000520 0x1 >;
    				status = "okay";
    			};
    		};
    		radio: radio@40001000 {
    			compatible = "nordic,nrf-radio";
    			reg = < 0x40001000 0x1000 >;
    			interrupts = < 0x1 0x1 >;
    			status = "okay";
    			dfe-supported;
    			ieee802154-supported;
    			ble-2mbps-supported;
    			ble-coded-phy-supported;
    			tx-high-power-supported;
    			ieee802154: ieee802154 {
    				compatible = "nordic,nrf-ieee802154";
    				status = "disabled";
    			};
    		};
    		uart0: uart@40002000 {
    			compatible = "nordic,nrf-uarte";
    			reg = < 0x40002000 0x1000 >;
    			interrupts = < 0x2 0x1 >;
    			status = "okay";
    			current-speed = < 0x1c200 >;
    			pinctrl-0 = < &uart0_default >;
    			pinctrl-1 = < &uart0_sleep >;
    			pinctrl-names = "default", "sleep";
    		};
    		i2c0: i2c@40003000 {
    			compatible = "nordic,nrf-twi";
    			#address-cells = < 0x1 >;
    			#size-cells = < 0x0 >;
    			reg = < 0x40003000 0x1000 >;
    			clock-frequency = < 0x61a80 >;
    			interrupts = < 0x3 0x1 >;
    			status = "okay";
    			pinctrl-0 = < &i2c0_default >;
    			pinctrl-1 = < &i2c0_sleep >;
    			pinctrl-names = "default", "sleep";
    			adxl372: adxl372@53 {
    				compatible = "adi,adxl372x";
    				reg = < 0x53 >;
    				int1-gpios = < &gpio0 0x17 0x0 >;
    			};
    			rv3028: rv3028@52 {
    				compatible = "microcrystal,rv3028";
    				reg = < 0x52 >;
    				int-gpios = < &gpio0 0x1e 0x1 >;
    			};
    			ads1219: ads1219@40 {
    				compatible = "ti,ads1219";
    				reg = < 0x40 >;
    				drdy-gpios = < &gpio0 0xb 0x1 >;
    				#io-channel-cells = < 0x1 >;
    				#address-cells = < 0x1 >;
    				#size-cells = < 0x0 >;
    				phandle = < 0xc >;
    				channel@3 {
    					reg = < 0x3 >;
    					zephyr,gain = "ADC_GAIN_1";
    					zephyr,reference = "ADC_REF_EXTERNAL0";
    					zephyr,acquisition-time = < 0x43e8 >;
    					zephyr,resolution = < 0x18 >;
    					zephyr,vref-mv = < 0x1388 >;
    				};
    				channel@4 {
    					reg = < 0x4 >;
    					zephyr,gain = "ADC_GAIN_1";
    					zephyr,reference = "ADC_REF_EXTERNAL0";
    					zephyr,acquisition-time = < 0x43e8 >;
    					zephyr,resolution = < 0x18 >;
    					zephyr,vref-mv = < 0x1388 >;
    				};
    			};
    		};
    		spi0: spi@40003000 {
    			compatible = "nordic,nrf-spim";
    			#address-cells = < 0x1 >;
    			#size-cells = < 0x0 >;
    			reg = < 0x40003000 0x1000 >;
    			interrupts = < 0x3 0x1 >;
    			max-frequency = < 0x7a1200 >;
    			easydma-maxcnt-bits = < 0x10 >;
    			status = "disabled";
    		};
    		i2c1: i2c@40004000 {
    			compatible = "nordic,nrf-twim";
    			#address-cells = < 0x1 >;
    			#size-cells = < 0x0 >;
    			reg = < 0x40004000 0x1000 >;
    			clock-frequency = < 0x186a0 >;
    			interrupts = < 0x4 0x1 >;
    			status = "disabled";
    		};
    		spi1: spi@40004000 {
    			compatible = "nordic,nrf-spi";
    			#address-cells = < 0x1 >;
    			#size-cells = < 0x0 >;
    			reg = < 0x40004000 0x1000 >;
    			interrupts = < 0x4 0x1 >;
    			max-frequency = < 0x7a1200 >;
    			easydma-maxcnt-bits = < 0x10 >;
    			status = "okay";
    			pinctrl-0 = < &spi1_default >;
    			pinctrl-1 = < &spi1_sleep >;
    			pinctrl-names = "default", "sleep";
    			cs-gpios = < &gpio0 0xb 0x1 >, < &gpio0 0xc 0x1 >, < &gpio0 0xd 0x1 >;
    			eeprom_m95040: eeprom_m95040@0 {
    				compatible = "atmel,at25";
    				reg = < 0x0 >;
    				size = < 0x80000 >;
    				pagesize = < 0x200 >;
    				address-width = < 0x18 >;
    				spi-max-frequency = < 0x7a1200 >;
    				timeout = < 0x5 >;
    			};
    			cy15b104: cy15b104@1 {
    				compatible = "infineon,cy15b104";
    				reg = < 0x1 >;
    				size = < 0x400000 >;
    				address-width = < 0x18 >;
    				spi-max-frequency = < 0x2faf080 >;
    				timeout = < 0x5 >;
    			};
    			flash_at25pe80: flash_at25pe80@2 {
    				compatible = "jedec,spi-nor";
    				status = "okay";
    				size = < 0x800000 >;
    				reg = < 0x2 >;
    				jedec-id = [ 1F 25 00 ];
    				spi-max-frequency = < 0x7a1200 >;
    				partitions {
    					compatible = "fixed-partitions";
    					#address-cells = < 0x2 >;
    					#size-cells = < 0x1 >;
    					confflash: partition@0 {
    						label = "config";
    						reg = < 0x2 0x90000 0x400 >;
    					};
    					extflash: partition@1 {
    						label = "external-flash";
    						reg = < 0x2 0x90400 0xffc00 >;
    					};
    				};
    			};
    		};
    		nfct: nfct@40005000 {
    			compatible = "nordic,nrf-nfct";
    			reg = < 0x40005000 0x1000 >;
    			interrupts = < 0x5 0x1 >;
    			status = "okay";
    		};
    		gpiote: gpiote@40006000 {
    			compatible = "nordic,nrf-gpiote";
    			reg = < 0x40006000 0x1000 >;
    			interrupts = < 0x6 0x5 >;
    			status = "okay";
    		};
    		adc: adc@40007000 {
    			compatible = "nordic,nrf-saadc";
    			reg = < 0x40007000 0x1000 >;
    			interrupts = < 0x7 0x1 >;
    			status = "disabled";
    			#io-channel-cells = < 0x1 >;
    		};
    		timer0: timer@40008000 {
    			compatible = "nordic,nrf-timer";
    			status = "disabled";
    			reg = < 0x40008000 0x1000 >;
    			cc-num = < 0x4 >;
    			max-bit-width = < 0x20 >;
    			interrupts = < 0x8 0x1 >;
    			prescaler = < 0x0 >;
    		};
    		timer1: timer@40009000 {
    			compatible = "nordic,nrf-timer";
    			status = "disabled";
    			reg = < 0x40009000 0x1000 >;
    			cc-num = < 0x4 >;
    			max-bit-width = < 0x20 >;
    			interrupts = < 0x9 0x1 >;
    			prescaler = < 0x0 >;
    		};
    		timer2: timer@4000a000 {
    			compatible = "nordic,nrf-timer";
    			status = "disabled";
    			reg = < 0x4000a000 0x1000 >;
    			cc-num = < 0x4 >;
    			max-bit-width = < 0x20 >;
    			interrupts = < 0xa 0x1 >;
    			prescaler = < 0x0 >;
    			phandle = < 0xb >;
    		};
    		rtc0: rtc@4000b000 {
    			compatible = "nordic,nrf-rtc";
    			reg = < 0x4000b000 0x1000 >;
    			cc-num = < 0x3 >;
    			interrupts = < 0xb 0x1 >;
    			status = "disabled";
    			clock-frequency = < 0x8000 >;
    			prescaler = < 0x1 >;
    		};
    		temp: temp@4000c000 {
    			compatible = "nordic,nrf-temp";
    			reg = < 0x4000c000 0x1000 >;
    			interrupts = < 0xc 0x1 >;
    			status = "okay";
    		};
    		rng: random@4000d000 {
    			compatible = "nordic,nrf-rng";
    			reg = < 0x4000d000 0x1000 >;
    			interrupts = < 0xd 0x1 >;
    			status = "okay";
    		};
    		ecb: ecb@4000e000 {
    			compatible = "nordic,nrf-ecb";
    			reg = < 0x4000e000 0x1000 >;
    			interrupts = < 0xe 0x1 >;
    			status = "okay";
    		};
    		ccm: ccm@4000f000 {
    			compatible = "nordic,nrf-ccm";
    			reg = < 0x4000f000 0x1000 >;
    			interrupts = < 0xf 0x1 >;
    			length-field-length-8-bits;
    			status = "okay";
    		};
    		wdt: wdt0: watchdog@40010000 {
    			compatible = "nordic,nrf-wdt";
    			reg = < 0x40010000 0x1000 >;
    			interrupts = < 0x10 0x1 >;
    			status = "okay";
    		};
    		rtc1: rtc@40011000 {
    			compatible = "nordic,nrf-rtc";
    			reg = < 0x40011000 0x1000 >;
    			cc-num = < 0x4 >;
    			interrupts = < 0x11 0x1 >;
    			status = "disabled";
    			clock-frequency = < 0x8000 >;
    			prescaler = < 0x1 >;
    		};
    		qdec: qdec0: qdec@40012000 {
    			compatible = "nordic,nrf-qdec";
    			reg = < 0x40012000 0x1000 >;
    			interrupts = < 0x12 0x1 >;
    			status = "disabled";
    		};
    		comp: comparator@40013000 {
    			compatible = "nordic,nrf-comp";
    			reg = < 0x40013000 0x1000 >;
    			interrupts = < 0x13 0x1 >;
    			status = "disabled";
    			#io-channel-cells = < 0x1 >;
    		};
    		egu0: swi0: egu@40014000 {
    			compatible = "nordic,nrf-egu", "nordic,nrf-swi";
    			reg = < 0x40014000 0x1000 >;
    			interrupts = < 0x14 0x1 >;
    			status = "okay";
    		};
    		egu1: swi1: egu@40015000 {
    			compatible = "nordic,nrf-egu", "nordic,nrf-swi";
    			reg = < 0x40015000 0x1000 >;
    			interrupts = < 0x15 0x1 >;
    			status = "okay";
    		};
    		egu2: swi2: egu@40016000 {
    			compatible = "nordic,nrf-egu", "nordic,nrf-swi";
    			reg = < 0x40016000 0x1000 >;
    			interrupts = < 0x16 0x1 >;
    			status = "okay";
    		};
    		egu3: swi3: egu@40017000 {
    			compatible = "nordic,nrf-egu", "nordic,nrf-swi";
    			reg = < 0x40017000 0x1000 >;
    			interrupts = < 0x17 0x1 >;
    			status = "okay";
    		};
    		egu4: swi4: egu@40018000 {
    			compatible = "nordic,nrf-egu", "nordic,nrf-swi";
    			reg = < 0x40018000 0x1000 >;
    			interrupts = < 0x18 0x1 >;
    			status = "okay";
    		};
    		egu5: swi5: egu@40019000 {
    			compatible = "nordic,nrf-egu", "nordic,nrf-swi";
    			reg = < 0x40019000 0x1000 >;
    			interrupts = < 0x19 0x1 >;
    			status = "okay";
    		};
    		timer3: timer@4001a000 {
    			compatible = "nordic,nrf-timer";
    			status = "disabled";
    			reg = < 0x4001a000 0x1000 >;
    			cc-num = < 0x6 >;
    			max-bit-width = < 0x20 >;
    			interrupts = < 0x1a 0x1 >;
    			prescaler = < 0x0 >;
    		};
    		timer4: timer@4001b000 {
    			compatible = "nordic,nrf-timer";
    			status = "disabled";
    			reg = < 0x4001b000 0x1000 >;
    			cc-num = < 0x6 >;
    			max-bit-width = < 0x20 >;
    			interrupts = < 0x1b 0x1 >;
    			prescaler = < 0x0 >;
    		};
    		pwm0: pwm@4001c000 {
    			compatible = "nordic,nrf-pwm";
    			reg = < 0x4001c000 0x1000 >;
    			interrupts = < 0x1c 0x1 >;
    			status = "okay";
    			#pwm-cells = < 0x3 >;
    			pinctrl-0 = < &pwm0_default >;
    			pinctrl-1 = < &pwm0_sleep >;
    			pinctrl-names = "default", "sleep";
    			phandle = < 0xd >;
    		};
    		pdm0: pdm@4001d000 {
    			compatible = "nordic,nrf-pdm";
    			reg = < 0x4001d000 0x1000 >;
    			interrupts = < 0x1d 0x1 >;
    			status = "disabled";
    		};
    		acl: acl@4001e000 {
    			compatible = "nordic,nrf-acl";
    			reg = < 0x4001e000 0x1000 >;
    			status = "okay";
    		};
    		flash_controller: flash-controller@4001e000 {
    			compatible = "nordic,nrf52-flash-controller";
    			reg = < 0x4001e000 0x1000 >;
    			partial-erase;
    			#address-cells = < 0x1 >;
    			#size-cells = < 0x1 >;
    			flash0: flash@0 {
    				compatible = "soc-nv-flash";
    				erase-block-size = < 0x1000 >;
    				write-block-size = < 0x4 >;
    				reg = < 0x0 0x80000 >;
    				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 0x32000 >;
    					};
    					slot1_partition: partition@3e000 {
    						label = "image-1";
    						reg = < 0x3e000 0x32000 >;
    					};
    					scratch_partition: partition@70000 {
    						label = "image-scratch";
    						reg = < 0x70000 0xa000 >;
    					};
    					storage_partition: partition@7a000 {
    						label = "storage";
    						reg = < 0x7a000 0x6000 >;
    					};
    				};
    			};
    		};
    		ppi: ppi@4001f000 {
    			compatible = "nordic,nrf-ppi";
    			reg = < 0x4001f000 0x1000 >;
    			status = "okay";
    		};
    		mwu: mwu@40020000 {
    			compatible = "nordic,nrf-mwu";
    			reg = < 0x40020000 0x1000 >;
    			status = "okay";
    		};
    		pwm1: pwm@40021000 {
    			compatible = "nordic,nrf-pwm";
    			reg = < 0x40021000 0x1000 >;
    			interrupts = < 0x21 0x1 >;
    			status = "disabled";
    			#pwm-cells = < 0x3 >;
    		};
    		pwm2: pwm@40022000 {
    			compatible = "nordic,nrf-pwm";
    			reg = < 0x40022000 0x1000 >;
    			interrupts = < 0x22 0x1 >;
    			status = "disabled";
    			#pwm-cells = < 0x3 >;
    		};
    		spi2: spi@40023000 {
    			compatible = "nordic,nrf-spim";
    			#address-cells = < 0x1 >;
    			#size-cells = < 0x0 >;
    			reg = < 0x40023000 0x1000 >;
    			interrupts = < 0x23 0x1 >;
    			max-frequency = < 0x7a1200 >;
    			easydma-maxcnt-bits = < 0x10 >;
    			status = "disabled";
    		};
    		rtc2: rtc@40024000 {
    			compatible = "nordic,nrf-rtc";
    			reg = < 0x40024000 0x1000 >;
    			cc-num = < 0x4 >;
    			interrupts = < 0x24 0x1 >;
    			status = "disabled";
    			clock-frequency = < 0x8000 >;
    			prescaler = < 0x1 >;
    		};
    		i2s0: i2s@40025000 {
    			compatible = "nordic,nrf-i2s";
    			#address-cells = < 0x1 >;
    			#size-cells = < 0x0 >;
    			reg = < 0x40025000 0x1000 >;
    			interrupts = < 0x25 0x1 >;
    			status = "disabled";
    		};
    		usbd: usbd@40027000 {
    			compatible = "nordic,nrf-usbd";
    			reg = < 0x40027000 0x1000 >;
    			interrupts = < 0x27 0x1 >;
    			num-bidir-endpoints = < 0x1 >;
    			num-in-endpoints = < 0x7 >;
    			num-out-endpoints = < 0x7 >;
    			num-isoin-endpoints = < 0x1 >;
    			num-isoout-endpoints = < 0x1 >;
    			status = "disabled";
    		};
    		uart1: uart@40028000 {
    			compatible = "nordic,nrf-uarte";
    			reg = < 0x40028000 0x1000 >;
    			interrupts = < 0x28 0x1 >;
    			status = "disabled";
    		};
    		pwm3: pwm@4002d000 {
    			compatible = "nordic,nrf-pwm";
    			reg = < 0x4002d000 0x1000 >;
    			interrupts = < 0x2d 0x1 >;
    			status = "disabled";
    			#pwm-cells = < 0x3 >;
    		};
    		spi3: spi@4002f000 {
    			compatible = "nordic,nrf-spim";
    			#address-cells = < 0x1 >;
    			#size-cells = < 0x0 >;
    			reg = < 0x4002f000 0x1000 >;
    			interrupts = < 0x2f 0x1 >;
    			max-frequency = < 0x1e84800 >;
    			easydma-maxcnt-bits = < 0x10 >;
    			rx-delay-supported;
    			rx-delay = < 0x2 >;
    			status = "disabled";
    		};
    		gpio0: gpio@50000000 {
    			compatible = "nordic,nrf-gpio";
    			gpio-controller;
    			reg = < 0x50000000 0x200 0x50000500 0x300 >;
    			#gpio-cells = < 0x2 >;
    			status = "okay";
    			port = < 0x0 >;
    			phandle = < 0x6 >;
    		};
    		gpio1: gpio@50000300 {
    			compatible = "nordic,nrf-gpio";
    			gpio-controller;
    			reg = < 0x50000300 0x200 0x50000800 0x300 >;
    			#gpio-cells = < 0x2 >;
    			ngpios = < 0xa >;
    			status = "okay";
    			port = < 0x1 >;
    			phandle = < 0xe >;
    		};
    	};
    	pinctrl: pin-controller {
    		compatible = "nordic,nrf-pinctrl";
    		uart0_default: uart0_default {
    			phandle = < 0x2 >;
    			group1 {
    				psels = < 0x1d >, < 0x20009 >;
    			};
    			group2 {
    				psels = < 0x1001c >, < 0x3000a >;
    				bias-pull-up;
    			};
    		};
    		uart0_sleep: uart0_sleep {
    			phandle = < 0x3 >;
    			group1 {
    				psels = < 0x1d >, < 0x1001c >, < 0x20009 >, < 0x3000a >;
    				low-power-enable;
    			};
    		};
    		i2c0_default: i2c0_default {
    			phandle = < 0x4 >;
    			group1 {
    				psels = < 0xc001a >, < 0xb001b >;
    			};
    		};
    		i2c0_sleep: i2c0_sleep {
    			phandle = < 0x5 >;
    			group1 {
    				psels = < 0xc001a >, < 0xb001b >;
    				low-power-enable;
    			};
    		};
    		pwm0_default: pwm0_default {
    			phandle = < 0x9 >;
    			group1 {
    				psels = < 0x160018 >, < 0x170016 >, < 0x180015 >;
    				nordic,invert;
    			};
    		};
    		pwm0_sleep: pwm0_sleep {
    			phandle = < 0xa >;
    			group1 {
    				psels = < 0x160018 >, < 0x170016 >, < 0x180015 >;
    				low-power-enable;
    			};
    		};
    		spi1_default: spi1_default {
    			phandle = < 0x7 >;
    			group1 {
    				psels = < 0x40029 >, < 0x50028 >, < 0x60004 >;
    			};
    		};
    		spi1_sleep: spi1_sleep {
    			phandle = < 0x8 >;
    			group1 {
    				psels = < 0x40029 >, < 0x50028 >, < 0x60004 >;
    				low-power-enable;
    			};
    		};
    	};
    	rng_hci: entropy_bt_hci {
    		compatible = "zephyr,bt-hci-entropy";
    		status = "okay";
    	};
    	cpus {
    		#address-cells = < 0x1 >;
    		#size-cells = < 0x0 >;
    		cpu@0 {
    			device_type = "cpu";
    			compatible = "arm,cortex-m4f";
    			reg = < 0x0 >;
    			#address-cells = < 0x1 >;
    			#size-cells = < 0x1 >;
    			itm: itm@e0000000 {
    				compatible = "arm,armv7m-itm";
    				reg = < 0xe0000000 0x1000 >;
    				swo-ref-frequency = < 0x1e84800 >;
    			};
    		};
    	};
    	sw_pwm: sw-pwm {
    		compatible = "nordic,nrf-sw-pwm";
    		status = "disabled";
    		generator = < &timer2 >;
    		clock-prescaler = < 0x0 >;
    		#pwm-cells = < 0x3 >;
    	};
    	zephyr,user {
    		io-channels = < &ads1219 0x3 >, < &ads1219 0x4 >;
    		io-channel-names = "gyro_rate", "gyro_temp";
    	};
    	pwmleds {
    		compatible = "pwm-leds";
    		pwm_red: pwm_red {
    			status = "okay";
    			pwms = < &pwm0 0x0 0x1312d00 0x1 >;
    			label = "PWM_RED";
    		};
    		pwm_green: pwm_green {
    			status = "okay";
    			pwms = < &pwm0 0x1 0x1312d00 0x1 >;
    			label = "PWM_GREEN";
    		};
    		pwm_blue: pwm_blue {
    			status = "okay";
    			pwms = < &pwm0 0x2 0x1312d00 0x1 >;
    			label = "PWM_BLUE";
    		};
    	};
    	control {
    		compatible = "gpio-leds";
    		shdn_ltc3525: shdn_ltc3525 {
    			status = "okay";
    			gpios = < &gpio1 0x6 0x0 >;
    			label = "SHDN_5V";
    		};
    		bq35100_ge: bq35100_ge {
    			status = "okay";
    			gpios = < &gpio1 0x7 0x0 >;
    			label = "GE_EN";
    		};
    	};
    	interrupts {
    		compatible = "gpio-keys";
    		tilt1: tilt1 {
    			status = "okay";
    			gpios = < &gpio0 0x13 0x1 >;
    			label = "TILT1";
    		};
    		tilt2: tilt2 {
    			status = "okay";
    			gpios = < &gpio0 0x19 0x1 >;
    			label = "TILT2";
    		};
    		hall_int: hall_int {
    			status = "okay";
    			gpios = < &gpio1 0x5 0x1 >;
    			label = "ACT";
    		};
    		bq35100_alarm: bq35100_alarm {
    			status = "okay";
    			gpios = < &gpio1 0x3 0x1 >;
    			label = "ALARM";
    		};
    	};
    	adxrs649: adxrs649 {
    		status = "okay";
    		compatible = "adi,adxrs649";
    		io-channels = < &ads1219 0x3 >, < &ads1219 0x4 >;
    		st1-gpios = < &gpio0 0x10 0x0 >;
    	};
    };
    

  • I'm not sure why that did not show up. I deleted the build folder and created a new configuration and I'm now getting several errors for the partition manager:

    -- Found partition manager static configuration: C:/carl-ble-sensor-firmware/partition.yml
    CMake Error at C:/Users/sw2.KRAFFT/ncs/nrf/cmake/partition_manager.cmake:220 (math):
      math cannot parse the expression: " / 8": syntax error, unexpected
      exp_DIVIDE (2).
    Call Stack (most recent call first):
      C:/Users/sw2.KRAFFT/ncs/zephyr/cmake/modules/kernel.cmake:247 (include)
      C:/Users/sw2.KRAFFT/ncs/zephyr/cmake/modules/zephyr_default.cmake:124 (include)
      C:/Users/sw2.KRAFFT/ncs/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)
      C:/Users/sw2.KRAFFT/ncs/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)
      CMakeLists.txt:20 (find_package)
    
    
    usage: partition_manager.py [-h] --sram_primary-size SRAM_PRIMARY_SIZE
                                [--sram_primary-base-address SRAM_PRIMARY_BASE_ADDRESS]
                                [--sram_primary-placement-strategy {start_to_end,end_to_start,complex}]
                                [--sram_primary-device SRAM_PRIMARY_DEVICE]
                                [--sram_primary-default-driver-kconfig SRAM_PRIMARY_DEFAULT_DRIVER_KCONFIG]
                                [--sram_primary-dynamic-partition SRAM_PRIMARY_DYNAMIC_PARTITION]
                                --flash_primary-size FLASH_PRIMARY_SIZE
                                [--flash_primary-base-address FLASH_PRIMARY_BASE_ADDRESS]
                                [--flash_primary-placement-strategy {start_to_end,end_to_start,complex}]
                                [--flash_primary-device FLASH_PRIMARY_DEVICE]
                                [--flash_primary-default-driver-kconfig FLASH_PRIMARY_DEFAULT_DRIVER_KCONFIG]
                                [--flash_primary-dynamic-partition FLASH_PRIMARY_DYNAMIC_PARTITION]
                                --external_flash-size EXTERNAL_FLASH_SIZE
                                [--external_flash-base-address EXTERNAL_FLASH_BASE_ADDRESS]
                                [--external_flash-placement-strategy {start_to_end,end_to_start,complex}]
                                [--external_flash-device EXTERNAL_FLASH_DEVICE]
                                [--external_flash-default-driver-kconfig EXTERNAL_FLASH_DEFAULT_DRIVER_KCONFIG]
                                [--external_flash-dynamic-partition EXTERNAL_FLASH_DYNAMIC_PARTITION]
    partition_manager.py: error: argument --external_flash-size: invalid <lambda> value: 'ERROR'
    CMake Error at C:/Users/sw2.KRAFFT/ncs/nrf/cmake/partition_manager.cmake:304 (message):
      Partition Manager failed, aborting.  Command:
      C:/Users/sw2.KRAFFT/ncs/toolchains/31f4403e35/opt/bin/python.exe;C:/Users/sw2.KRAFFT/ncs/nrf/scripts/partition_manager.py;--input-files;C:/carl-ble-sensor-firmware/build/mcuboot/zephyr/include/generated/pm.yml;C:/carl-ble-sensor-firmware/build/zephyr/include/generated/pm.yml;C:/carl-ble-sensor-firmware/build/modules/nrf/subsys/partition_manager/pm.yml.nvs;--regions;sram_primary;flash_primary;external_flash;--output-partitions;C:/carl-ble-sensor-firmware/build/partitions.yml;--output-regions;C:/carl-ble-sensor-firmware/build/regions.yml;--static-config;C:/carl-ble-sensor-firmware/partition.yml;--sram_primary-size;0x20000;--sram_primary-base-address;0x20000000;--sram_primary-placement-strategy;complex;--sram_primary-dynamic-partition;sram_primary;--flash_primary-size;0x80000;--flash_primary-base-address;0x0;--flash_primary-placement-strategy;complex;--flash_primary-device;flash_controller;--flash_primary-default-driver-kconfig;CONFIG_SOC_FLASH_NRF;--external_flash-size;ERROR;--external_flash-base-address;0;--external_flash-placement-strategy;start_to_end;--external_flash-device;DT_CHOSEN(nordic_pm_ext_flash);--external_flash-default-driver-kconfig;CONFIG_PM_EXTERNAL_FLASH_HAS_DRIVER
    Call Stack (most recent call first):
      C:/Users/sw2.KRAFFT/ncs/zephyr/cmake/modules/kernel.cmake:247 (include)
      C:/Users/sw2.KRAFFT/ncs/zephyr/cmake/modules/zephyr_default.cmake:124 (include)
      C:/Users/sw2.KRAFFT/ncs/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)
      C:/Users/sw2.KRAFFT/ncs/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)
      CMakeLists.txt:20 (find_package)
    
    
    -- Configuring incomplete, errors occurred!
    See also "C:/carl-ble-sensor-firmware/build/CMakeFiles/CMakeOutput.log".
    See also "C:/carl-ble-sensor-firmware/build/CMakeFiles/CMakeError.log".
    FATAL ERROR: command exited with status 1: 'C:\Users\sw2.KRAFFT\ncs\toolchains\31f4403e35\opt\bin\cmake.EXE' '-DWEST_PYTHON=C:\Users\sw2.KRAFFT\ncs\toolchains\31f4403e35\opt\bin\python.exe' '-Bc:\carl-ble-sensor-firmware\build' -GNinja -DBOARD=carl_sensor -DNCS_TOOLCHAIN_VERSION:STRING=NONE -DCONF_FILE:STRING=c:/carl-ble-sensor-firmware/prj.conf -DBOARD_ROOT:STRING=c:/carl-ble-sensor-firmware -DCMAKE_BUILD_TYPE=release '-Sc:\carl-ble-sensor-firmware'

    The Kconfig is here:

    CONFIG_GPIO=y
    # CONFIG_KSCAN is not set
    # CONFIG_INPUT is not set
    # CONFIG_WIFI is not set
    CONFIG_SPI=y
    CONFIG_ADC_INIT_PRIORITY=50
    CONFIG_GPIO_INIT_PRIORITY=40
    CONFIG_EEPROM_INIT_PRIORITY=75
    # CONFIG_UHC_DRIVER is not set
    # CONFIG_REGULATOR is not set
    CONFIG_SENSOR=y
    # CONFIG_WATCHDOG is not set
    # CONFIG_MODEM is not set
    # CONFIG_DISPLAY is not set
    CONFIG_I2C=y
    # CONFIG_BT_HCI_ACL_FLOW_CONTROL is not set
    CONFIG_BT_HCI_VS_EXT=y
    CONFIG_BOARD="carl_sensor"
    CONFIG_BT_CTLR=y
    CONFIG_SOC="nRF52833_QIAA"
    CONFIG_SOC_SERIES="nrf52"
    CONFIG_NUM_IRQS=48
    CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=32768
    CONFIG_CLOCK_CONTROL_INIT_PRIORITY=30
    CONFIG_FLASH_SIZE=512
    CONFIG_FLASH_BASE_ADDRESS=0x0
    CONFIG_ICACHE_LINE_SIZE=32
    CONFIG_DCACHE_LINE_SIZE=32
    CONFIG_HEAP_MEM_POOL_SIZE=0
    CONFIG_ROM_START_OFFSET=0
    CONFIG_PINCTRL=y
    CONFIG_CLOCK_CONTROL=y
    # CONFIG_RESET is not set
    CONFIG_SOC_HAS_TIMING_FUNCTIONS=y
    CONFIG_ARCH_HAS_CUSTOM_BUSY_WAIT=y
    CONFIG_PM=y
    CONFIG_PM_DEVICE=y
    CONFIG_NRF_RTC_TIMER=y
    CONFIG_SYS_CLOCK_TICKS_PER_SEC=32768
    CONFIG_BUILD_OUTPUT_HEX=y
    # CONFIG_FPU is not set
    # CONFIG_MBEDTLS is not set
    # CONFIG_MEMC is not set
    # CONFIG_CODE_DATA_RELOCATION is not set
    # CONFIG_CPU_HAS_CUSTOM_FIXED_SOC_MPU_REGIONS is not set
    CONFIG_TINYCRYPT=y
    # CONFIG_SERIAL is not set
    CONFIG_MAIN_STACK_SIZE=1024
    # CONFIG_SRAM_VECTOR_TABLE is not set
    # CONFIG_BT_USER_PHY_UPDATE is not set
    CONFIG_MP_MAX_NUM_CPUS=1
    CONFIG_PLATFORM_SPECIFIC_INIT=y
    CONFIG_HAS_DTS=y
    
    #
    # Devicetree Info
    #
    CONFIG_DT_HAS_ADI_ADXL372X_ENABLED=y
    CONFIG_DT_HAS_ADI_ADXRS649_ENABLED=y
    CONFIG_DT_HAS_ARM_ARMV7M_ITM_ENABLED=y
    CONFIG_DT_HAS_ARM_CORTEX_M4F_ENABLED=y
    CONFIG_DT_HAS_ARM_V7M_NVIC_ENABLED=y
    CONFIG_DT_HAS_ATMEL_AT25_ENABLED=y
    CONFIG_DT_HAS_FIXED_PARTITIONS_ENABLED=y
    CONFIG_DT_HAS_GPIO_KEYS_ENABLED=y
    CONFIG_DT_HAS_GPIO_LEDS_ENABLED=y
    CONFIG_DT_HAS_INFINEON_CY15B104_ENABLED=y
    CONFIG_DT_HAS_JEDEC_SPI_NOR_ENABLED=y
    CONFIG_DT_HAS_MICROCRYSTAL_RV3028_ENABLED=y
    CONFIG_DT_HAS_MMIO_SRAM_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_ACL_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_CCM_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_CLOCK_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_ECB_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_EGU_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_FICR_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_GPIO_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_GPIOTE_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_GPREGRET_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_MWU_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_NFCT_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_PINCTRL_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_POWER_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_PPI_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_PWM_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_RADIO_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_RNG_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_SPI_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_SWI_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_TEMP_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_TWI_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_UARTE_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_UICR_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_WDT_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF52_FLASH_CONTROLLER_ENABLED=y
    CONFIG_DT_HAS_PWM_LEDS_ENABLED=y
    CONFIG_DT_HAS_SOC_NV_FLASH_ENABLED=y
    CONFIG_DT_HAS_TI_ADS1219_ENABLED=y
    CONFIG_DT_HAS_ZEPHYR_BT_HCI_ENTROPY_ENABLED=y
    # end of Devicetree Info
    
    #
    # Modules
    #
    
    #
    # Available modules.
    #
    
    #
    # nrf (C:/Users/sw2.KRAFFT/ncs/nrf)
    #
    CONFIG_NEWLIB_LIBC_NANO=y
    CONFIG_NUM_METAIRQ_PRIORITIES=0
    CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=4096
    # CONFIG_INIT_STACKS is not set
    
    #
    # Nordic nRF Connect
    #
    CONFIG_WARN_EXPERIMENTAL=y
    CONFIG_PRIVILEGED_STACK_SIZE=1024
    CONFIG_MCUMGR_TRANSPORT_NETBUF_SIZE=2475
    CONFIG_BT_BUF_CMD_TX_COUNT=2
    CONFIG_ENTROPY_GENERATOR=y
    CONFIG_INIT_ARCH_HW_AT_BOOT=y
    CONFIG_NORDIC_QSPI_NOR_FLASH_LAYOUT_PAGE_SIZE=4096
    # CONFIG_GETOPT is not set
    # CONFIG_NCS_SAMPLES_DEFAULTS is not set
    
    #
    # Image build variants
    #
    # CONFIG_NCS_MCUBOOT_IN_BUILD is not set
    # end of Image build variants
    
    # CONFIG_NCS_SAMPLE_MCUMGR_BT_OTA_DFU is not set
    # CONFIG_MCUMGR_TRANSPORT_BT_AUTHEN is not set
    CONFIG_MCUMGR_GRP_ZBASIC=y
    CONFIG_MCUMGR_GRP_ZBASIC_STORAGE_ERASE=y
    # CONFIG_NCS_SAMPLE_MCUMGR_BT_OTA_DFU_SPEEDUP is not set
    CONFIG_BT_L2CAP_TX_MTU=498
    CONFIG_BT_BUF_ACL_TX_SIZE=502
    CONFIG_BT_BUF_ACL_RX_SIZE=502
    CONFIG_BT_CTLR_DATA_LENGTH_MAX=251
    
    #
    # Bootloader
    #
    # CONFIG_BUILD_S1_VARIANT is not set
    # CONFIG_SECURE_BOOT is not set
    CONFIG_PM_PARTITION_SIZE_PROVISION=0x1000
    # CONFIG_B0_MIN_PARTITION_SIZE is not set
    CONFIG_PM_PARTITION_SIZE_B0_IMAGE=0x7000
    # CONFIG_SECURE_BOOT_CRYPTO is not set
    
    #
    # Secure Boot firmware validation
    #
    CONFIG_SB_VALIDATION_INFO_MAGIC=0x86518483
    CONFIG_SB_VALIDATION_POINTER_MAGIC=0x6919b47e
    CONFIG_SB_VALIDATION_INFO_CRYPTO_ID=1
    CONFIG_SB_VALIDATION_INFO_VERSION=2
    CONFIG_SB_VALIDATION_METADATA_OFFSET=0
    CONFIG_SB_VALIDATE_FW_SIGNATURE=y
    # end of Secure Boot firmware validation
    # end of Bootloader
    
    #
    # Bluetooth Low Energy
    #
    CONFIG_BT_MAX_CONN=1
    CONFIG_BT_LL_SOFTDEVICE=y
    
    #
    # SoftDevice Controller
    #
    CONFIG_BT_LL_SOFTDEVICE_BUILD_TYPE_LIB=y
    CONFIG_BT_HCI_TX_STACK_SIZE=1536
    CONFIG_BT_RX_STACK_SIZE=1536
    # CONFIG_BT_CTLR_SDC_LLPM is not set
    CONFIG_BT_CTLR_SDC_PERIPHERAL_COUNT=1
    CONFIG_BT_CTLR_SDC_MAX_CONN_EVENT_LEN_DEFAULT=7500
    CONFIG_BT_CTLR_SDC_TX_PACKET_COUNT=3
    CONFIG_BT_CTLR_SDC_RX_PACKET_COUNT=2
    CONFIG_BT_CTLR_SDC_SCAN_BUFFER_COUNT=3
    CONFIG_BT_CTLR_SDC_PERIODIC_SYNC_BUFFER_COUNT=2
    CONFIG_BT_CTLR_SDC_RX_PRIO=6
    # CONFIG_BT_CTLR_DF is not set
    CONFIG_BT_LL_SOFTDEVICE_PERIPHERAL=y
    # CONFIG_BT_LL_SOFTDEVICE_MULTIROLE is not set
    CONFIG_BT_SDC_ADDITIONAL_MEMORY=0
    CONFIG_BT_CTLR_FAL_SIZE=8
    CONFIG_BT_CTLR_ECDH_LIB_OBERON=y
    # CONFIG_BT_CTLR_ECDH_LIB_TINYCRYPT is not set
    CONFIG_BT_CTLR_ECDH_STACK_SIZE=900
    # CONFIG_BT_CTLR_ECDH_IN_MPSL_WORK is not set
    # CONFIG_BT_CTLR_LE_POWER_CONTROL is not set
    # end of SoftDevice Controller
    
    #
    # BLE Libraries
    #
    # CONFIG_BT_GATT_POOL is not set
    # CONFIG_BT_GATT_DM is not set
    # CONFIG_BT_ADV_PROV is not set
    # CONFIG_BT_CONN_CTX is not set
    
    #
    # Bluetooth Services
    #
    # CONFIG_BT_AMS_CLIENT is not set
    # CONFIG_BT_ANCS_CLIENT is not set
    # CONFIG_BT_BAS_CLIENT is not set
    # CONFIG_BT_BMS is not set
    # CONFIG_BT_CTS_CLIENT is not set
    # CONFIG_BT_DFU_SMP is not set
    # CONFIG_BT_GATTP is not set
    # CONFIG_BT_HIDS is not set
    # CONFIG_BT_HOGP is not set
    # CONFIG_BT_LBS is not set
    # CONFIG_BT_NSMS is not set
    # CONFIG_BT_NUS is not set
    # CONFIG_BT_NUS_CLIENT is not set
    # CONFIG_BT_RSCS is not set
    # CONFIG_BT_THROUGHPUT is not set
    # CONFIG_BT_LATENCY is not set
    # CONFIG_BT_LATENCY_CLIENT is not set
    # CONFIG_BT_HRS_CLIENT is not set
    # CONFIG_BT_DDFS is not set
    # CONFIG_BT_MDS is not set
    # CONFIG_BT_CGMS is not set
    # CONFIG_BT_FAST_PAIR is not set
    CONFIG_BT_DIS=y
    CONFIG_BT_DIS_FW_REV=y
    CONFIG_BT_DIS_FW_REV_STR="v1.3.1-19-g47ba22f6l"
    CONFIG_BT_GATT_AUTO_SEC_REQ=y
    # end of Bluetooth Services
    
    #
    # BLE over nRF RPC
    #
    # CONFIG_BT_RPC is not set
    # CONFIG_BT_RPC_STACK is not set
    # CONFIG_BT_CENTRAL is not set
    CONFIG_BT_PERIPHERAL=y
    # CONFIG_BT_OBSERVER is not set
    CONFIG_BT_BROADCASTER=y
    CONFIG_BT_CONN=y
    # CONFIG_BT_REMOTE_VERSION is not set
    CONFIG_BT_PHY_UPDATE=y
    CONFIG_BT_DATA_LEN_UPDATE=y
    # CONFIG_BT_EXT_ADV is not set
    # CONFIG_BT_DIS_SETTINGS is not set
    CONFIG_BT_DIS_MODEL="CARL SENSOR"
    CONFIG_BT_DIS_MANUF="KRAFFT"
    CONFIG_BT_DIS_PNP=y
    CONFIG_BT_DIS_PNP_VID_SRC=1
    CONFIG_BT_DIS_PNP_VID=0
    CONFIG_BT_DIS_PNP_PID=0
    CONFIG_BT_DIS_PNP_VER=1
    CONFIG_BT_DIS_SERIAL_NUMBER=y
    CONFIG_BT_DIS_SERIAL_NUMBER_STR="1"
    CONFIG_BT_DIS_HW_REV=y
    CONFIG_BT_DIS_HW_REV_STR="v0.0.0"
    # CONFIG_BT_DIS_SW_REV is not set
    CONFIG_BT_BAS=y
    # CONFIG_BT_HRS is not set
    # CONFIG_BT_TPS is not set
    # CONFIG_BT_IAS is not set
    # CONFIG_BT_IAS_CLIENT is not set
    # CONFIG_BT_OTS is not set
    # CONFIG_BT_OTS_CLIENT is not set
    CONFIG_BT_BUF_ACL_TX_COUNT=3
    CONFIG_BT_BUF_ACL_RX_COUNT=6
    CONFIG_BT_BUF_EVT_RX_SIZE=68
    CONFIG_BT_BUF_EVT_RX_COUNT=10
    CONFIG_BT_BUF_EVT_DISCARDABLE_SIZE=43
    CONFIG_BT_BUF_EVT_DISCARDABLE_COUNT=3
    CONFIG_BT_BUF_CMD_TX_SIZE=65
    CONFIG_BT_HAS_HCI_VS=y
    CONFIG_BT_HCI_VS=y
    # CONFIG_BT_HCI_VS_EVT is not set
    # CONFIG_BT_HCI_VS_FATAL_ERROR is not set
    # CONFIG_BT_WAIT_NOP is not set
    CONFIG_BT_RPA=y
    CONFIG_BT_ASSERT=y
    CONFIG_BT_ASSERT_VERBOSE=y
    # CONFIG_BT_ASSERT_PANIC is not set
    CONFIG_BT_DEBUG_NONE=y
    # CONFIG_BT_DEBUG_LOG is not set
    # CONFIG_BT_DEBUG_MONITOR_UART is not set
    # CONFIG_BT_LONG_WQ is not set
    CONFIG_BT_HCI_HOST=y
    # CONFIG_BT_HCI_TX_STACK_SIZE_WITH_PROMPT is not set
    CONFIG_BT_HCI_TX_PRIO=7
    CONFIG_BT_HCI_RESERVE=0
    # CONFIG_BT_RECV_BLOCKING is not set
    # CONFIG_BT_RECV_WORKQ_SYS is not set
    CONFIG_BT_RECV_WORKQ_BT=y
    CONFIG_BT_RX_PRIO=8
    CONFIG_BT_DRIVER_RX_HIGH_PRIO=6
    # CONFIG_BT_AUDIO is not set
    # CONFIG_BT_FILTER_ACCEPT_LIST is not set
    CONFIG_BT_LIM_ADV_TIMEOUT=30
    CONFIG_BT_CONN_TX_USER_DATA_SIZE=8
    CONFIG_BT_CONN_TX_MAX=3
    CONFIG_BT_AUTO_PHY_UPDATE=y
    # CONFIG_BT_USER_DATA_LEN_UPDATE is not set
    CONFIG_BT_AUTO_DATA_LEN_UPDATE=y
    # CONFIG_BT_REMOTE_INFO is not set
    CONFIG_BT_SMP=y
    # CONFIG_BT_PASSKEY_KEYPRESS is not set
    # CONFIG_BT_PRIVACY is not set
    # CONFIG_BT_SIGNING is not set
    # CONFIG_BT_SMP_APP_PAIRING_ACCEPT is not set
    CONFIG_BT_SMP_SC_PAIR_ONLY=y
    # CONFIG_BT_SMP_SC_ONLY is not set
    # CONFIG_BT_SMP_ALLOW_UNAUTH_OVERWRITE is not set
    # CONFIG_BT_ID_UNPAIR_MATCHING_BONDS is not set
    # CONFIG_BT_ID_ALLOW_UNAUTH_OVERWRITE is not set
    # CONFIG_BT_FIXED_PASSKEY is not set
    # CONFIG_BT_USE_DEBUG_KEYS is not set
    CONFIG_BT_BONDABLE=y
    # CONFIG_BT_BONDING_REQUIRED is not set
    # CONFIG_BT_STORE_DEBUG_KEYS is not set
    CONFIG_BT_SMP_ENFORCE_MITM=y
    # CONFIG_BT_KEYS_OVERWRITE_OLDEST is not set
    CONFIG_BT_SMP_MIN_ENC_KEY_SIZE=7
    CONFIG_BT_L2CAP_TX_BUF_COUNT=3
    CONFIG_BT_L2CAP_TX_FRAG_COUNT=2
    # CONFIG_BT_L2CAP_DYNAMIC_CHANNEL is not set
    CONFIG_BT_ATT_ENFORCE_FLOW=y
    CONFIG_BT_ATT_PREPARE_COUNT=0
    CONFIG_BT_ATT_RETRY_ON_SEC_ERR=y
    CONFIG_BT_GATT_AUTO_RESUBSCRIBE=y
    CONFIG_BT_GATT_SERVICE_CHANGED=y
    CONFIG_BT_GATT_DYNAMIC_DB=y
    # CONFIG_BT_GATT_CACHING is not set
    CONFIG_BT_GATT_ENFORCE_SUBSCRIPTION=y
    CONFIG_BT_GATT_CLIENT=y
    CONFIG_BT_GATT_READ_MULTIPLE=y
    CONFIG_BT_GATT_READ_MULT_VAR_LEN=y
    # CONFIG_BT_GATT_AUTO_DISCOVER_CCC is not set
    # CONFIG_BT_GATT_AUTO_UPDATE_MTU is not set
    CONFIG_BT_GAP_AUTO_UPDATE_CONN_PARAMS=y
    # CONFIG_BT_GAP_PERIPHERAL_PREF_PARAMS is not set
    CONFIG_BT_DEVICE_NAME_GATT_WRITABLE=y
    CONFIG_DEVICE_NAME_GATT_WRITABLE_ENCRYPT=y
    # CONFIG_DEVICE_NAME_GATT_WRITABLE_AUTHEN is not set
    CONFIG_BT_MAX_PAIRED=1
    CONFIG_BT_CREATE_CONN_TIMEOUT=3
    CONFIG_BT_CONN_PARAM_UPDATE_TIMEOUT=5000
    CONFIG_BT_CONN_PARAM_RETRY_COUNT=3
    CONFIG_BT_CONN_PARAM_RETRY_TIMEOUT=5000
    CONFIG_BT_DEVICE_NAME_DYNAMIC=y
    CONFIG_BT_DEVICE_NAME_MAX=28
    CONFIG_BT_DEVICE_NAME="Zephyr"
    # CONFIG_BT_DEVICE_APPEARANCE_DYNAMIC is not set
    CONFIG_BT_DEVICE_APPEARANCE=128
    CONFIG_BT_ID_MAX=1
    CONFIG_BT_ECC=y
    # CONFIG_BT_TINYCRYPT_ECC is not set
    # CONFIG_BT_HOST_CCM is not set
    # CONFIG_BT_LOG_SNIFFER_INFO is not set
    # CONFIG_BT_TESTING is not set
    # CONFIG_BT_BREDR is not set
    # CONFIG_BT_HCI_VS_EVT_USER is not set
    CONFIG_BT_CRYPTO=y
    # end of BLE over nRF RPC
    # end of Bluetooth Low Energy
    
    #
    # DFU
    #
    # CONFIG_DFU_MULTI_IMAGE is not set
    # CONFIG_DFU_TARGET is not set
    # end of DFU
    
    # CONFIG_ESB is not set
    # CONFIG_EMDS is not set
    
    #
    # Peripheral CPU DFU (PCD)
    #
    # CONFIG_PCD is not set
    # CONFIG_PCD_APP is not set
    # CONFIG_PCD_NET is not set
    # end of Peripheral CPU DFU (PCD)
    
    #
    # Networking
    #
    
    #
    # Application protocols
    #
    
    #
    # nRF Cloud
    #
    
    #
    # Client ID (nRF Cloud Device ID)
    #
    CONFIG_NRF_CLOUD_CLIENT_ID_SRC_COMPILE_TIME=y
    CONFIG_NRF_CLOUD_CLIENT_ID="my-client-id"
    # end of Client ID (nRF Cloud Device ID)
    
    # CONFIG_NRF_CLOUD_MQTT is not set
    # CONFIG_NRF_CLOUD_FOTA is not set
    # CONFIG_NRF_CLOUD_FOTA_FULL_MODEM_UPDATE is not set
    # CONFIG_NRF_CLOUD_REST is not set
    # CONFIG_NRF_CLOUD_ALERT is not set
    CONFIG_NRF_CLOUD_LOG_OUTPUT_LEVEL=1
    CONFIG_NRF_CLOUD_LOG_BUF_SIZE=256
    # CONFIG_NRF_CLOUD_GATEWAY is not set
    # end of nRF Cloud
    
    # CONFIG_REST_CLIENT is not set
    # CONFIG_DOWNLOAD_CLIENT is not set
    # CONFIG_AWS_IOT is not set
    # CONFIG_AWS_JOBS is not set
    # CONFIG_AZURE_IOT_HUB is not set
    
    #
    # Self-Registration (Zi ZHu Ce)
    #
    # end of Self-Registration (Zi ZHu Ce)
    
    # CONFIG_ICAL_PARSER is not set
    # CONFIG_FTP_CLIENT is not set
    # CONFIG_LWM2M_CLIENT_UTILS is not set
    # CONFIG_WIFI_CREDENTIALS is not set
    # CONFIG_WIFI_CREDENTIALS_STATIC is not set
    # CONFIG_MQTT_HELPER is not set
    # end of Application protocols
    # end of Networking
    
    #
    # NFC
    #
    # CONFIG_NFC_NDEF is not set
    # CONFIG_NFC_NDEF_PARSER is not set
    # CONFIG_NFC_NDEF_PAYLOAD_TYPE_COMMON is not set
    # CONFIG_NFC_T2T_PARSER is not set
    # CONFIG_NFC_T4T_NDEF_FILE is not set
    # CONFIG_NFC_T4T_ISODEP is not set
    # CONFIG_NFC_T4T_APDU is not set
    # CONFIG_NFC_T4T_CC_FILE is not set
    # CONFIG_NFC_T4T_HL_PROCEDURE is not set
    # CONFIG_NFC_PLATFORM is not set
    # CONFIG_NFC_TNEP_TAG is not set
    # CONFIG_NFC_TNEP_POLLER is not set
    # CONFIG_NFC_TNEP_CH is not set
    # end of NFC
    
    # CONFIG_APP_EVENT_MANAGER is not set
    # CONFIG_NRF_PROFILER is not set
    # CONFIG_FW_INFO is not set
    
    #
    # Debug
    #
    # CONFIG_CPU_LOAD is not set
    # CONFIG_PPI_TRACE is not set
    # end of Debug
    
    # CONFIG_SHELL_BT_NUS is not set
    # CONFIG_MPSL_FEM_ONLY is not set
    CONFIG_MPSL_FEM_API_AVAILABLE=y
    # CONFIG_MPSL_FEM_DEVICE_CONFIG_254 is not set
    CONFIG_MPSL_THREAD_COOP_PRIO=6
    CONFIG_MPSL_WORK_STACK_SIZE=1024
    CONFIG_MPSL_TIMESLOT_SESSION_COUNT=0
    # CONFIG_MPSL_ASSERT_HANDLER is not set
    
    #
    # Partition Manager
    #
    CONFIG_PARTITION_MANAGER_ENABLED=y
    CONFIG_FLASH_MAP_CUSTOM=y
    CONFIG_SRAM_SIZE=128
    CONFIG_SRAM_BASE_ADDRESS=0x20000000
    
    #
    # Zephyr subsystem configurations
    #
    CONFIG_PM_PARTITION_SIZE_NVS_STORAGE=0x6000
    CONFIG_PM_PARTITION_REGION_NVS_STORAGE_EXTERNAL=y
    # end of Zephyr subsystem configurations
    
    #
    # NCS subsystem configurations
    #
    # CONFIG_PM_SINGLE_IMAGE is not set
    CONFIG_PM_EXTERNAL_FLASH_HAS_DRIVER=y
    CONFIG_PM_EXTERNAL_FLASH_BASE=0
    CONFIG_PM_EXTERNAL_FLASH_MCUBOOT_SECONDARY=y
    CONFIG_PM_OVERRIDE_EXTERNAL_DRIVER_CHECK=y
    CONFIG_PM_SRAM_BASE=0x20000000
    CONFIG_PM_SRAM_SIZE=0x20000
    # end of Partition Manager
    
    #
    # nRF RPC (Remote Procedure Call) library
    #
    # end of nRF RPC (Remote Procedure Call) library
    
    # CONFIG_ZIGBEE is not set
    
    #
    # Full Modem Firmware Update Management(FMFU)
    #
    # end of Full Modem Firmware Update Management(FMFU)
    
    # CONFIG_CAF is not set
    
    #
    # Nordic IEEE 802.15.4
    #
    # end of Nordic IEEE 802.15.4
    
    # CONFIG_DM_MODULE is not set
    
    #
    # TF-M SPM component configs
    #
    CONFIG_TFM_CONN_HANDLE_MAX_NUM=8
    # end of TF-M SPM component configs
    
    #
    # Libraries
    #
    
    #
    # Binary libraries
    #
    # end of Binary libraries
    
    # CONFIG_ADP536X is not set
    # CONFIG_AT_MONITOR is not set
    # CONFIG_DISABLE_FLASH_PATCH is not set
    # CONFIG_LTE_LINK_CONTROL is not set
    CONFIG_NRF_ACL_FLASH_REGION_SIZE=0x1000
    CONFIG_FPROTECT_BLOCK_SIZE=0x1000
    # CONFIG_FPROTECT is not set
    # CONFIG_AT_CMD_CUSTOM is not set
    # CONFIG_DK_LIBRARY is not set
    # CONFIG_AT_CMD_PARSER is not set
    # CONFIG_MODEM_INFO is not set
    CONFIG_MULTITHREADING_LOCK=y
    # CONFIG_RESET_ON_FATAL_ERROR is not set
    # CONFIG_SMS is not set
    # CONFIG_SUPL_CLIENT_LIB is not set
    # CONFIG_DATE_TIME is not set
    # CONFIG_HW_ID_LIBRARY is not set
    # CONFIG_RAM_POWER_DOWN_LIBRARY is not set
    # CONFIG_WAVE_GEN_LIB is not set
    CONFIG_HW_UNIQUE_KEY_PARTITION_SIZE=0x1000
    # CONFIG_MODEM_JWT is not set
    # CONFIG_QOS is not set
    # CONFIG_SFLOAT is not set
    # CONFIG_CONTIN_ARRAY is not set
    # CONFIG_PCM_MIX is not set
    # CONFIG_TONE is not set
    # CONFIG_PSCM is not set
    # CONFIG_DATA_FIFO is not set
    # CONFIG_FEM_AL_LIB is not set
    # end of Libraries
    
    #
    # Device Drivers
    #
    # CONFIG_BT_DRIVER_QUIRK_NO_AUTO_DLE is not set
    # CONFIG_ETH_RTT is not set
    # CONFIG_BH1749 is not set
    # CONFIG_SENSOR_SIM is not set
    # CONFIG_SENSOR_STUB is not set
    # CONFIG_PMW3360 is not set
    # CONFIG_PAW3212 is not set
    # CONFIG_NRF_SW_LPUART is not set
    CONFIG_NRFX_GPIOTE_NUM_OF_EVT_HANDLERS=1
    CONFIG_CLOCK_CONTROL_MPSL=y
    CONFIG_SOC_FLASH_NRF_RADIO_SYNC_MPSL=y
    CONFIG_SOC_FLASH_NRF_RADIO_SYNC_MPSL_TIMESLOT_SESSION_COUNT=1
    CONFIG_TEMP_NRF5_MPSL=y
    # end of Device Drivers
    
    #
    # External libraries
    #
    # end of External libraries
    
    #
    # Test
    #
    CONFIG_ZTEST_MULTICORE_DEFAULT_SETTINGS=y
    # CONFIG_UNITY is not set
    
    #
    # Mocks
    #
    # CONFIG_MOCK_NRF_MODEM_AT is not set
    # end of Mocks
    # end of Test
    # end of Nordic nRF Connect
    
    CONFIG_ZEPHYR_NRF_MODULE=y
    # end of nrf (C:/Users/sw2.KRAFFT/ncs/nrf)
    
    #
    # hostap (C:/Users/sw2.KRAFFT/ncs/modules/lib/hostap)
    #
    CONFIG_POSIX_MAX_FDS=4
    CONFIG_ZEPHYR_HOSTAP_MODULE=y
    # end of hostap (C:/Users/sw2.KRAFFT/ncs/modules/lib/hostap)
    
    #
    # mcuboot (C:/Users/sw2.KRAFFT/ncs/bootloader/mcuboot)
    #
    
    #
    # MCUboot
    #
    CONFIG_SIGN_IMAGES=y
    # CONFIG_BOOT_BUILD_DIRECT_XIP_VARIANT is not set
    # CONFIG_MCUBOOT_BUILD_STRATEGY_USE_HEX_FILE is not set
    # CONFIG_MCUBOOT_BUILD_STRATEGY_SKIP_BUILD is not set
    CONFIG_MCUBOOT_BUILD_STRATEGY_FROM_SOURCE=y
    CONFIG_MCUBOOT_IMAGE_VERSION="0.0.0+0"
    CONFIG_MCUBOOT_FLASH_WRITE_BLOCK_SIZE=4
    CONFIG_DT_FLASH_WRITE_BLOCK_SIZE=4
    # CONFIG_DFU_MULTI_IMAGE_PACKAGE_BUILD is not set
    CONFIG_ADD_MCUBOOT_MEDIATE_SIM_FLASH_DTS=y
    # end of MCUboot
    
    CONFIG_ZEPHYR_MCUBOOT_MODULE=y
    # end of mcuboot (C:/Users/sw2.KRAFFT/ncs/bootloader/mcuboot)
    
    #
    # mbedtls (C:/Users/sw2.KRAFFT/ncs/modules/crypto/mbedtls)
    #
    CONFIG_ZEPHYR_MBEDTLS_MODULE=y
    CONFIG_MBEDTLS_BUILTIN=y
    # CONFIG_MBEDTLS_LIBRARY is not set
    # end of mbedtls (C:/Users/sw2.KRAFFT/ncs/modules/crypto/mbedtls)
    
    #
    # trusted-firmware-m (C:/Users/sw2.KRAFFT/ncs/modules/tee/tf-m/trusted-firmware-m)
    #
    CONFIG_BOOTLOADER_MCUBOOT=y
    CONFIG_ZEPHYR_TRUSTED_FIRMWARE_M_MODULE=y
    # end of trusted-firmware-m (C:/Users/sw2.KRAFFT/ncs/modules/tee/tf-m/trusted-firmware-m)
    
    #
    # cjson (C:/Users/sw2.KRAFFT/ncs/modules/lib/cjson)
    #
    CONFIG_ZEPHYR_CJSON_MODULE=y
    # end of cjson (C:/Users/sw2.KRAFFT/ncs/modules/lib/cjson)
    
    #
    # azure-sdk-for-c (C:/Users/sw2.KRAFFT/ncs/modules/lib/azure-sdk-for-c)
    #
    # CONFIG_AZURE_SDK is not set
    CONFIG_ZEPHYR_AZURE_SDK_FOR_C_MODULE=y
    # end of azure-sdk-for-c (C:/Users/sw2.KRAFFT/ncs/modules/lib/azure-sdk-for-c)
    
    #
    # cirrus-logic (C:/Users/sw2.KRAFFT/ncs/modules/hal/cirrus-logic)
    #
    # CONFIG_HW_CODEC_CIRRUS_LOGIC is not set
    CONFIG_ZEPHYR_CIRRUS_LOGIC_MODULE=y
    # end of cirrus-logic (C:/Users/sw2.KRAFFT/ncs/modules/hal/cirrus-logic)
    
    #
    # openthread (C:/Users/sw2.KRAFFT/ncs/modules/lib/openthread)
    #
    # CONFIG_OPENTHREAD is not set
    CONFIG_ZEPHYR_OPENTHREAD_MODULE=y
    # end of openthread (C:/Users/sw2.KRAFFT/ncs/modules/lib/openthread)
    
    #
    # memfault-firmware-sdk (C:/Users/sw2.KRAFFT/ncs/modules/lib/memfault-firmware-sdk)
    #
    # CONFIG_MEMFAULT is not set
    CONFIG_ZEPHYR_MEMFAULT_FIRMWARE_SDK_MODULE=y
    # end of memfault-firmware-sdk (C:/Users/sw2.KRAFFT/ncs/modules/lib/memfault-firmware-sdk)
    
    #
    # canopennode (C:/Users/sw2.KRAFFT/ncs/modules/lib/canopennode)
    #
    CONFIG_ZEPHYR_CANOPENNODE_MODULE=y
    # end of canopennode (C:/Users/sw2.KRAFFT/ncs/modules/lib/canopennode)
    
    #
    # chre (C:/Users/sw2.KRAFFT/ncs/modules/lib/chre)
    #
    CONFIG_ZEPHYR_CHRE_MODULE=y
    # CONFIG_CHRE is not set
    # end of chre (C:/Users/sw2.KRAFFT/ncs/modules/lib/chre)
    
    #
    # fatfs (C:/Users/sw2.KRAFFT/ncs/modules/fs/fatfs)
    #
    CONFIG_ZEPHYR_FATFS_MODULE=y
    # end of fatfs (C:/Users/sw2.KRAFFT/ncs/modules/fs/fatfs)
    
    #
    # hal_nordic (C:/Users/sw2.KRAFFT/ncs/modules/hal/nordic)
    #
    CONFIG_ZEPHYR_HAL_NORDIC_MODULE=y
    CONFIG_HAS_NORDIC_DRIVERS=y
    
    #
    # Nordic drivers
    #
    # CONFIG_NRF_802154_SOURCE_HAL_NORDIC is not set
    # CONFIG_NRF_802154_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 is not set
    # CONFIG_NRFX_COMP is not set
    # CONFIG_NRFX_EGU0 is not set
    # CONFIG_NRFX_EGU1 is not set
    # CONFIG_NRFX_EGU2 is not set
    # CONFIG_NRFX_EGU3 is not set
    # CONFIG_NRFX_EGU4 is not set
    # CONFIG_NRFX_EGU5 is not set
    CONFIG_NRFX_GPIOTE=y
    # CONFIG_NRFX_I2S is not set
    # CONFIG_NRFX_NFCT is not set
    CONFIG_NRFX_NVMC=y
    # CONFIG_NRFX_PDM is not set
    # CONFIG_NRFX_POWER is not set
    # CONFIG_NRFX_PPI is not set
    CONFIG_NRFX_PWM=y
    CONFIG_NRFX_PWM0=y
    # CONFIG_NRFX_PWM1 is not set
    # CONFIG_NRFX_PWM2 is not set
    # CONFIG_NRFX_PWM3 is not set
    # CONFIG_NRFX_QDEC is not set
    # CONFIG_NRFX_RNG is not set
    # CONFIG_NRFX_RTC0 is not set
    # CONFIG_NRFX_RTC1 is not set
    # CONFIG_NRFX_RTC2 is not set
    # CONFIG_NRFX_SAADC is not set
    CONFIG_NRFX_SPI=y
    CONFIG_NRFX_SPI1=y
    # CONFIG_NRFX_SPIM0 is not set
    # CONFIG_NRFX_SPIM2 is not set
    # CONFIG_NRFX_SPIM3 is not set
    # CONFIG_NRFX_SYSTICK is not set
    # CONFIG_NRFX_TEMP is not set
    # CONFIG_NRFX_TIMER0 is not set
    # CONFIG_NRFX_TIMER1 is not set
    # CONFIG_NRFX_TIMER2 is not set
    # CONFIG_NRFX_TIMER3 is not set
    # CONFIG_NRFX_TIMER4 is not set
    CONFIG_NRFX_TWI=y
    CONFIG_NRFX_TWI0=y
    # CONFIG_NRFX_TWIM1 is not set
    # CONFIG_NRFX_UARTE0 is not set
    # CONFIG_NRFX_UARTE1 is not set
    # CONFIG_NRFX_USBD is not set
    # CONFIG_NRFX_WDT0 is not set
    
    #
    # Peripheral Resource Sharing module
    #
    # CONFIG_NRFX_PRS_BOX_0 is not set
    # CONFIG_NRFX_PRS_BOX_1 is not set
    # CONFIG_NRFX_PRS_BOX_2 is not set
    # CONFIG_NRFX_PRS_BOX_3 is not set
    # CONFIG_NRFX_PRS_BOX_4 is not set
    # end of Peripheral Resource Sharing module
    # end of nrfx drivers
    # end of hal_nordic (C:/Users/sw2.KRAFFT/ncs/modules/hal/nordic)
    
    #
    # liblc3 (C:/Users/sw2.KRAFFT/ncs/modules/lib/liblc3)
    #
    CONFIG_ZEPHYR_LIBLC3_MODULE=y
    # end of liblc3 (C:/Users/sw2.KRAFFT/ncs/modules/lib/liblc3)
    
    #
    # littlefs (C:/Users/sw2.KRAFFT/ncs/modules/fs/littlefs)
    #
    CONFIG_ZEPHYR_LITTLEFS_MODULE=y
    # end of littlefs (C:/Users/sw2.KRAFFT/ncs/modules/fs/littlefs)
    
    #
    # loramac-node (C:/Users/sw2.KRAFFT/ncs/modules/lib/loramac-node)
    #
    CONFIG_ZEPHYR_LORAMAC_NODE_MODULE=y
    # CONFIG_HAS_SEMTECH_RADIO_DRIVERS is not set
    # end of loramac-node (C:/Users/sw2.KRAFFT/ncs/modules/lib/loramac-node)
    
    #
    # lvgl (C:/Users/sw2.KRAFFT/ncs/modules/lib/gui/lvgl)
    #
    CONFIG_ZEPHYR_LVGL_MODULE=y
    # end of lvgl (C:/Users/sw2.KRAFFT/ncs/modules/lib/gui/lvgl)
    
    #
    # lz4 (C:/Users/sw2.KRAFFT/ncs/modules/lib/lz4)
    #
    CONFIG_ZEPHYR_LZ4_MODULE=y
    CONFIG_LZ4=y
    # end of lz4 (C:/Users/sw2.KRAFFT/ncs/modules/lib/lz4)
    
    #
    # nanopb (C:/Users/sw2.KRAFFT/ncs/modules/lib/nanopb)
    #
    CONFIG_ZEPHYR_NANOPB_MODULE=y
    # CONFIG_NANOPB is not set
    # end of nanopb (C:/Users/sw2.KRAFFT/ncs/modules/lib/nanopb)
    
    #
    # picolibc (C:/Users/sw2.KRAFFT/ncs/modules/lib/picolibc)
    #
    # CONFIG_PICOLIBC_MODULE is not set
    CONFIG_ZEPHYR_PICOLIBC_MODULE=y
    # end of picolibc (C:/Users/sw2.KRAFFT/ncs/modules/lib/picolibc)
    
    #
    # segger (C:/Users/sw2.KRAFFT/ncs/modules/debug/segger)
    #
    CONFIG_ZEPHYR_SEGGER_MODULE=y
    CONFIG_HAS_SEGGER_RTT=y
    # CONFIG_USE_SEGGER_RTT is not set
    # end of segger (C:/Users/sw2.KRAFFT/ncs/modules/debug/segger)
    
    #
    # TraceRecorder (C:/Users/sw2.KRAFFT/ncs/modules/debug/TraceRecorder)
    #
    CONFIG_ZEPHYR_TRACERECORDER_MODULE=y
    # end of TraceRecorder (C:/Users/sw2.KRAFFT/ncs/modules/debug/TraceRecorder)
    
    #
    # uoscore-uedhoc (C:/Users/sw2.KRAFFT/ncs/modules/lib/uoscore-uedhoc)
    #
    CONFIG_ZEPHYR_UOSCORE_UEDHOC_MODULE=y
    # end of uoscore-uedhoc (C:/Users/sw2.KRAFFT/ncs/modules/lib/uoscore-uedhoc)
    
    #
    # zcbor (C:/Users/sw2.KRAFFT/ncs/modules/lib/zcbor)
    #
    CONFIG_ZEPHYR_ZCBOR_MODULE=y
    CONFIG_ZCBOR=y
    # CONFIG_ZCBOR_CANONICAL is not set
    # CONFIG_ZCBOR_STOP_ON_ERROR is not set
    # CONFIG_ZCBOR_VERBOSE is not set
    # end of zcbor (C:/Users/sw2.KRAFFT/ncs/modules/lib/zcbor)
    
    #
    # zscilib (C:/Users/sw2.KRAFFT/ncs/modules/lib/zscilib)
    #
    # CONFIG_ZSL is not set
    CONFIG_ZEPHYR_ZSCILIB_MODULE=y
    # end of zscilib (C:/Users/sw2.KRAFFT/ncs/modules/lib/zscilib)
    
    #
    # bliss (C:/carl-ble-sensor-firmware/deps/bliss)
    #
    CONFIG_BLISS=y
    CONFIG_BLISS_DIAGNOSTIC=y
    CONFIG_BLISS_RESET_BUFF_SIZE=3
    CONFIG_BLISS_ADV_NAME="CARL_Sensor"
    CONFIG_BLISS_STACK_SIZE=1024
    CONFIG_BLISS_QP_EVENT_STORAGE=10
    CONFIG_BLISS_PRIO=1
    CONFIG_BLISS_CONNECT_SYNC=y
    CONFIG_BLISS_PHYPHOX=y
    CONFIG_BLISS_EVENT_QUEUE_SIZE=30
    CONFIG_BLISS_SENSOR_MAX=2
    # CONFIG_BLISS_DFU_CONTROL is not set
    CONFIG_BLISS_RTC_HOUR_SYNC=4
    CONFIG_BLISS_IDLE_DATA_TIMEOUT=30
    CONFIG_BLISS_IDLE_STATUS_TIMEOUT=120
    CONFIG_BLISS_ACTIVE_STATUS_TIMEOUT=120
    CONFIG_BLISS_SYNC_TIMEOUT=5
    CONFIG_BLISS_SYNC_RETRIES=3
    CONFIG_BLISS_ADV_TIMEOUT_DATA=5
    CONFIG_BLISS_ADV_TIMEOUT_MAINTENANCE=10
    CONFIG_BLISS_ADV_WAIT_TIME=10
    CONFIG_BLISS_ADV_RETRIES=5
    CONFIG_BLISS_EVENT_RATE=20
    CONFIG_BLISS_MAX_NOTIFY_RATE=20
    CONFIG_ZEPHYR_BLISS_MODULE=y
    # end of bliss (C:/carl-ble-sensor-firmware/deps/bliss)
    
    #
    # qpcpp (C:/carl-ble-sensor-firmware/deps/qpcpp)
    #
    CONFIG_QPCPP=y
    CONFIG_ZEPHYR_QPCPP_MODULE=y
    # end of qpcpp (C:/carl-ble-sensor-firmware/deps/qpcpp)
    
    #
    # phyphox_ble (C:/carl-ble-sensor-firmware/deps/zephyr_phyphox-ble)
    #
    CONFIG_PHYPHOX_BLE=y
    CONFIG_PHYPHOX_BLE_TX_SIZE=100
    CONFIG_ZEPHYR_PHYPHOX_BLE_MODULE=y
    # end of phyphox_ble (C:/carl-ble-sensor-firmware/deps/zephyr_phyphox-ble)
    
    #
    # ble_utils (C:/carl-ble-sensor-firmware/deps/ble_utils)
    #
    CONFIG_BLE_UTILS=y
    CONFIG_BLE_UTILS_MAX_ATTR=10
    CONFIG_ZEPHYR_BLE_UTILS_MODULE=y
    # end of ble_utils (C:/carl-ble-sensor-firmware/deps/ble_utils)
    
    #
    # drivers (C:/carl-ble-sensor-firmware/deps/drivers)
    #
    CONFIG_ADC_ADS1219=y
    CONFIG_ADC_ADS1219_ADC_CHANNEL_COUNT=1
    # CONFIG_ADC_ADS1219_INT is not set
    CONFIG_ADXRS649=y
    CONFIG_ADXL372X=y
    # CONFIG_ADXL372_PEAK_DETECT_MODE is not set
    CONFIG_ADXL372_MEASUREMENT_MODE=y
    CONFIG_ADXL372_FIFO_BYPASSED=y
    # CONFIG_ADXL372_FIFO_STREAMED is not set
    # CONFIG_ADXL372_FIFO_TRIGGERED is not set
    # CONFIG_ADXL372_FIFO_OLD_SAVED is not set
    # CONFIG_ADXL372_FIFO_XYZ is not set
    # CONFIG_ADXL372_FIFO_X is not set
    # CONFIG_ADXL372_FIFO_Y is not set
    # CONFIG_ADXL372_FIFO_XY is not set
    # CONFIG_ADXL372_FIFO_Z is not set
    # CONFIG_ADXL372_FIFO_XZ is not set
    # CONFIG_ADXL372_FIFO_YZ is not set
    CONFIG_ADXL372_FIFO_XYZ_PEAK=y
    CONFIG_ADXL372_FIFO_SAMPLES=128
    CONFIG_ADXL372_FIFO_FORMAT_OPT=7
    CONFIG_ADXL372_FIFO_MODE_OPT=0
    CONFIG_ADXL372_ACTIVITY_THRESHOLD=5000
    CONFIG_ADXL372_INACTIVITY_THRESHOLD=5000
    CONFIG_ADXL372_ACTIVITY_TIME=1
    CONFIG_ADXL372_INACTIVITY_TIME=2
    CONFIG_ADXL372_REFERENCED_ACTIVITY_DETECTION_MODE=y
    # CONFIG_ADXL372_TRIGGER_NONE is not set
    CONFIG_ADXL372_TRIGGER_GLOBAL_THREAD=y
    # CONFIG_ADXL372_TRIGGER_OWN_THREAD is not set
    CONFIG_ADXL372_TRIGGER=y
    CONFIG_RTC_RV3028=y
    CONFIG_CY15B104=y
    # CONFIG_CY15B104_SLEEP_IDLE is not set
    CONFIG_ZEPHYR_DRIVERS_MODULE=y
    # end of drivers (C:/carl-ble-sensor-firmware/deps/drivers)
    
    #
    # bq35100 (C:/carl-ble-sensor-firmware/deps/bq35100)
    #
    CONFIG_BQ35100=y
    CONFIG_ZEPHYR_BQ35100_MODULE=y
    # end of bq35100 (C:/carl-ble-sensor-firmware/deps/bq35100)
    
    #
    # nrfxlib (C:/Users/sw2.KRAFFT/ncs/nrfxlib)
    #
    
    #
    # Nordic nrfxlib
    #
    CONFIG_NRF_MODEM_SHMEM_CTRL_SIZE=0x4e8
    # CONFIG_NFC_T2T_NRFXLIB is not set
    # CONFIG_NFC_T4T_NRFXLIB is not set
    CONFIG_MPSL=y
    CONFIG_MPSL_BUILD_TYPE_LIB=y
    
    #
    # Crypto libraries for nRF5x SOCs.
    #
    CONFIG_NRFXLIB_CRYPTO=y
    CONFIG_NRF_OBERON=y
    # CONFIG_NRF_CC310_BL is not set
    # end of Crypto libraries for nRF5x SOCs.
    
    #
    # nrf_security module
    #
    # CONFIG_NORDIC_SECURITY_BACKEND is not set
    # CONFIG_NRF_SECURITY is not set
    # end of nrf_security module
    
    # CONFIG_NRF_RPC is not set
    CONFIG_NRF_802154_SOURCE_NRFXLIB=y
    # CONFIG_GZLL is not set
    # CONFIG_NRF_DM is not set
    # CONFIG_LC3_PLC_DISABLED is not set
    CONFIG_LC3_ENC_CHAN_MAX=1
    CONFIG_LC3_DEC_CHAN_MAX=1
    
    #
    # Encoder sample rates
    #
    CONFIG_LC3_ENC_SAMPLE_RATE_8KHZ_SUPPORT=y
    CONFIG_LC3_ENC_SAMPLE_RATE_16KHZ_SUPPORT=y
    CONFIG_LC3_ENC_SAMPLE_RATE_24KHZ_SUPPORT=y
    CONFIG_LC3_ENC_SAMPLE_RATE_32KHZ_SUPPORT=y
    CONFIG_LC3_ENC_SAMPLE_RATE_441KHZ_SUPPORT=y
    CONFIG_LC3_ENC_SAMPLE_RATE_48KHZ_SUPPORT=y
    # end of Encoder sample rates
    
    #
    # Decoder sample rates
    #
    CONFIG_LC3_DEC_SAMPLE_RATE_8KHZ_SUPPORT=y
    CONFIG_LC3_DEC_SAMPLE_RATE_16KHZ_SUPPORT=y
    CONFIG_LC3_DEC_SAMPLE_RATE_24KHZ_SUPPORT=y
    CONFIG_LC3_DEC_SAMPLE_RATE_32KHZ_SUPPORT=y
    CONFIG_LC3_DEC_SAMPLE_RATE_441KHZ_SUPPORT=y
    CONFIG_LC3_DEC_SAMPLE_RATE_48KHZ_SUPPORT=y
    # end of Decoder sample rates
    
    # CONFIG_NRF_FUEL_GAUGE is not set
    # end of Nordic nrfxlib
    
    CONFIG_ZEPHYR_NRFXLIB_MODULE=y
    # end of nrfxlib (C:/Users/sw2.KRAFFT/ncs/nrfxlib)
    
    #
    # connectedhomeip (C:/Users/sw2.KRAFFT/ncs/modules/lib/matter)
    #
    # CONFIG_CHIP is not set
    # CONFIG_CHIP_LOG_SIZE_OPTIMIZATION is not set
    CONFIG_ZEPHYR_CONNECTEDHOMEIP_MODULE=y
    # end of connectedhomeip (C:/Users/sw2.KRAFFT/ncs/modules/lib/matter)
    
    #
    # Optional modules. Make sure they're installed, via the project manifest.
    #
    CONFIG_HAS_CMSIS_CORE=y
    CONFIG_HAS_CMSIS_CORE_M=y
    # CONFIG_CMSIS_DSP is not set
    # CONFIG_CMSIS_NN is not set
    # CONFIG_LIBMETAL is not set
    # CONFIG_LVGL is not set
    # CONFIG_HAS_MEC_HAL is not set
    # CONFIG_HAS_MPFS_HAL is not set
    # CONFIG_OPENAMP is not set
    # CONFIG_SOF is not set
    # CONFIG_MIPI_SYST_LIB is not set
    # CONFIG_HAS_TELINK_DRIVERS is not set
    # CONFIG_TINYCRYPT_CTR_PRNG is not set
    # CONFIG_TINYCRYPT_SHA256 is not set
    # CONFIG_TINYCRYPT_ECC_DH is not set
    # CONFIG_TINYCRYPT_ECC_DSA is not set
    CONFIG_TINYCRYPT_AES=y
    # CONFIG_TINYCRYPT_AES_CBC is not set
    # CONFIG_TINYCRYPT_AES_CTR is not set
    # CONFIG_TINYCRYPT_AES_CCM is not set
    CONFIG_TINYCRYPT_AES_CMAC=y
    # CONFIG_MCUBOOT_BOOTUTIL_LIB is not set
    
    #
    # Unavailable modules, please install those via the project manifest.
    #
    
    #
    # hal_gigadevice module not available.
    #
    
    #
    # Trusted-firmware-a module not available.
    #
    
    #
    # THRIFT module not available.
    #
    # end of Modules
    
    CONFIG_BOARD_REVISION="$BOARD_REVISION"
    # CONFIG_NET_DRIVERS is not set
    CONFIG_BOARD_CARL_SENSOR=y
    
    #
    # Board Options
    #
    CONFIG_BOARD_ENABLE_DCDC=y
    # end of Board Options
    
    # CONFIG_SOC_SERIES_BEETLE is not set
    # CONFIG_SOC_SERIES_ARM_DESIGNSTART is not set
    # CONFIG_SOC_SERIES_FVP_AEMV8R_AARCH32 is not set
    # CONFIG_SOC_SERIES_MPS2 is not set
    # CONFIG_SOC_SERIES_MPS3 is not set
    # CONFIG_SOC_SERIES_MUSCA_B1 is not set
    # CONFIG_SOC_SERIES_MUSCA_S1 is not set
    # CONFIG_SOC_SERIES_AST10X0 is not set
    # CONFIG_SOC_SERIES_SAMC20 is not set
    # CONFIG_SOC_SERIES_SAMC21 is not set
    # CONFIG_SOC_SERIES_SAMD20 is not set
    # CONFIG_SOC_SERIES_SAMD21 is not set
    # CONFIG_SOC_SERIES_SAMD51 is not set
    # CONFIG_SOC_SERIES_SAME51 is not set
    # CONFIG_SOC_SERIES_SAME53 is not set
    # CONFIG_SOC_SERIES_SAME54 is not set
    # CONFIG_SOC_SERIES_SAML21 is not set
    # CONFIG_SOC_SERIES_SAMR21 is not set
    # CONFIG_SOC_SERIES_SAMR34 is not set
    # CONFIG_SOC_SERIES_SAMR35 is not set
    # CONFIG_SOC_SERIES_SAM3X is not set
    # CONFIG_SOC_SERIES_SAM4E is not set
    # CONFIG_SOC_SERIES_SAM4L is not set
    # CONFIG_SOC_SERIES_SAM4S is not set
    # CONFIG_SOC_SERIES_SAME70 is not set
    # CONFIG_SOC_SERIES_SAMV71 is not set
    # CONFIG_SOC_SERIES_VALKYRIE is not set
    # CONFIG_SOC_SERIES_VIPER is not set
    # CONFIG_SOC_SERIES_PSOC62 is not set
    # CONFIG_SOC_SERIES_PSOC63 is not set
    # CONFIG_SOC_SERIES_GD32A50X is not set
    # CONFIG_SOC_SERIES_GD32E10X is not set
    # CONFIG_SOC_SERIES_GD32E50X is not set
    # CONFIG_SOC_SERIES_GD32F3X0 is not set
    # CONFIG_SOC_SERIES_GD32F403 is not set
    # CONFIG_SOC_SERIES_GD32F4XX is not set
    # CONFIG_SOC_SERIES_GD32L23X is not set
    # CONFIG_SOC_SERIES_PSOC_60 is not set
    # CONFIG_SOC_SERIES_PSOC_61 is not set
    # CONFIG_SOC_SERIES_PSOC_62 is not set
    # CONFIG_SOC_SERIES_PSOC_63 is not set
    # CONFIG_SOC_SERIES_PSOC_64 is not set
    # CONFIG_SOC_SERIES_XMC_4XXX is not set
    # CONFIG_SOC_SERIES_CYCLONE5 is not set
    # CONFIG_SOC_SERIES_MEC1501X is not set
    # CONFIG_SOC_SERIES_MEC1701X is not set
    # CONFIG_SOC_SERIES_MEC172X is not set
    # CONFIG_SOC_SERIES_NRF51X is not set
    CONFIG_SOC_SERIES_NRF52X=y
    # CONFIG_SOC_SERIES_NRF53X is not set
    # CONFIG_SOC_SERIES_NRF91X is not set
    # CONFIG_SOC_SERIES_NPCX7 is not set
    # CONFIG_SOC_SERIES_NPCX9 is not set
    # CONFIG_SOC_SERIES_M48X is not set
    # CONFIG_SOC_SERIES_IMX_6X_M4 is not set
    # CONFIG_SOC_SERIES_IMX7_M4 is not set
    # CONFIG_SOC_SERIES_IMX8ML_M7 is not set
    # CONFIG_SOC_SERIES_IMX8MM_M4 is not set
    # CONFIG_SOC_SERIES_IMX8MQ_M4 is not set
    # CONFIG_SOC_SERIES_IMX_RT5XX is not set
    # CONFIG_SOC_SERIES_IMX_RT6XX is not set
    # CONFIG_SOC_SERIES_IMX_RT is not set
    # CONFIG_SOC_SERIES_KINETIS_K2X is not set
    # CONFIG_SOC_SERIES_KINETIS_K6X is not set
    # CONFIG_SOC_SERIES_KINETIS_K8X is not set
    # CONFIG_SOC_SERIES_KINETIS_KE1XF is not set
    # CONFIG_SOC_SERIES_KINETIS_KL2X is not set
    # CONFIG_SOC_SERIES_KINETIS_KV5X is not set
    # CONFIG_SOC_SERIES_KINETIS_KWX is not set
    # CONFIG_SOC_SERIES_LPC11U6X is not set
    # CONFIG_SOC_SERIES_LPC51U68 is not set
    # CONFIG_SOC_SERIES_LPC54XXX is not set
    # CONFIG_SOC_SERIES_LPC55XXX is not set
    # CONFIG_SOC_SERIES_S32ZE_R52 is not set
    # CONFIG_SOC_EOS_S3 is not set
    # CONFIG_SOC_SERIES_RCAR_GEN3 is not set
    # CONFIG_SOC_SERIES_DA1469X is not set
    # CONFIG_SOC_SERIES_RP2XXX is not set
    # CONFIG_SOC_SERIES_EFM32GG11B is not set
    # CONFIG_SOC_SERIES_EFM32HG is not set
    # CONFIG_SOC_SERIES_EFM32JG12B is not set
    # CONFIG_SOC_SERIES_EFM32PG12B is not set
    # CONFIG_SOC_SERIES_EFM32PG1B is not set
    # CONFIG_SOC_SERIES_EFM32WG is not set
    # CONFIG_SOC_SERIES_EFR32BG13P is not set
    # CONFIG_SOC_SERIES_EFR32BG22 is not set
    # CONFIG_SOC_SERIES_EFR32FG13P is not set
    # CONFIG_SOC_SERIES_EFR32FG1P is not set
    # CONFIG_SOC_SERIES_EFR32MG12P is not set
    # CONFIG_SOC_SERIES_EFR32MG21 is not set
    # CONFIG_SOC_SERIES_EFR32MG24 is not set
    # CONFIG_SOC_SERIES_STM32C0X is not set
    # CONFIG_SOC_SERIES_STM32F0X is not set
    # CONFIG_SOC_SERIES_STM32F1X is not set
    # CONFIG_SOC_SERIES_STM32F2X is not set
    # CONFIG_SOC_SERIES_STM32F3X is not set
    # CONFIG_SOC_SERIES_STM32F4X is not set
    # CONFIG_SOC_SERIES_STM32F7X is not set
    # CONFIG_SOC_SERIES_STM32G0X is not set
    # CONFIG_SOC_SERIES_STM32G4X is not set
    # CONFIG_SOC_SERIES_STM32H5X is not set
    # CONFIG_SOC_SERIES_STM32H7X is not set
    # CONFIG_SOC_SERIES_STM32L0X is not set
    # CONFIG_SOC_SERIES_STM32L1X is not set
    # CONFIG_SOC_SERIES_STM32L4X is not set
    # CONFIG_SOC_SERIES_STM32L5X is not set
    # CONFIG_SOC_SERIES_STM32MP1X is not set
    # CONFIG_SOC_SERIES_STM32U5X is not set
    # CONFIG_SOC_SERIES_STM32WBX is not set
    # CONFIG_SOC_SERIES_STM32WLX is not set
    # CONFIG_SOC_TI_LM3S6965 is not set
    # CONFIG_SOC_SERIES_CC13X2_CC26X2 is not set
    # CONFIG_SOC_SERIES_CC13X2X7_CC26X2X7 is not set
    # CONFIG_SOC_SERIES_CC32XX is not set
    # CONFIG_SOC_SERIES_MSP432P4XX is not set
    # CONFIG_SOC_SERIES_XILINX_XC7ZXXX is not set
    # CONFIG_SOC_SERIES_XILINX_XC7ZXXXS is not set
    # CONFIG_SOC_XILINX_ZYNQMP_RPU is not set
    
    #
    # Hardware Configuration
    #
    CONFIG_CPU_HAS_ARM_MPU=y
    CONFIG_HAS_SWO=y
    CONFIG_SOC_FAMILY="nordic_nrf"
    CONFIG_SOC_FAMILY_NRF=y
    CONFIG_HAS_HW_NRF_ACL=y
    CONFIG_HAS_HW_NRF_CCM=y
    CONFIG_HAS_HW_NRF_CCM_LFLEN_8BIT=y
    CONFIG_HAS_HW_NRF_CLOCK=y
    CONFIG_HAS_HW_NRF_ECB=y
    CONFIG_HAS_HW_NRF_EGU0=y
    CONFIG_HAS_HW_NRF_EGU1=y
    CONFIG_HAS_HW_NRF_EGU2=y
    CONFIG_HAS_HW_NRF_EGU3=y
    CONFIG_HAS_HW_NRF_EGU4=y
    CONFIG_HAS_HW_NRF_EGU5=y
    CONFIG_HAS_HW_NRF_GPIO0=y
    CONFIG_HAS_HW_NRF_GPIO1=y
    CONFIG_HAS_HW_NRF_GPIOTE=y
    CONFIG_HAS_HW_NRF_MWU=y
    CONFIG_HAS_HW_NRF_NFCT=y
    CONFIG_HAS_HW_NRF_NVMC_PE=y
    CONFIG_HAS_HW_NRF_POWER=y
    CONFIG_HAS_HW_NRF_PPI=y
    CONFIG_HAS_HW_NRF_PWM0=y
    CONFIG_HAS_HW_NRF_RADIO_BLE_2M=y
    CONFIG_HAS_HW_NRF_RADIO_BLE_CODED=y
    CONFIG_HAS_HW_NRF_RADIO_DFE=y
    CONFIG_HAS_HW_NRF_RADIO_IEEE802154=y
    CONFIG_HAS_HW_NRF_RADIO_TX_PWR_HIGH=y
    CONFIG_HAS_HW_NRF_RNG=y
    CONFIG_HAS_HW_NRF_SPI1=y
    CONFIG_HAS_HW_NRF_SWI0=y
    CONFIG_HAS_HW_NRF_SWI1=y
    CONFIG_HAS_HW_NRF_SWI2=y
    CONFIG_HAS_HW_NRF_SWI3=y
    CONFIG_HAS_HW_NRF_SWI4=y
    CONFIG_HAS_HW_NRF_SWI5=y
    CONFIG_HAS_HW_NRF_TEMP=y
    CONFIG_HAS_HW_NRF_TWI0=y
    CONFIG_HAS_HW_NRF_UARTE0=y
    CONFIG_HAS_HW_NRF_WDT0=y
    CONFIG_SOC_NRF52833=y
    # CONFIG_SOC_NRF52805_CAAA is not set
    # CONFIG_SOC_NRF52810_QFAA is not set
    # CONFIG_SOC_NRF52811_QFAA is not set
    # CONFIG_SOC_NRF52820_QDAA is not set
    # CONFIG_SOC_NRF52832_CIAA is not set
    # CONFIG_SOC_NRF52832_QFAA is not set
    # CONFIG_SOC_NRF52832_QFAB is not set
    CONFIG_SOC_NRF52833_QIAA=y
    # CONFIG_SOC_NRF52840_QIAA is not set
    CONFIG_SOC_DCDC_NRF52X=y
    CONFIG_GPIO_AS_PINRESET=y
    CONFIG_NRF_ENABLE_ICACHE=y
    CONFIG_NRF_RTC_TIMER_USER_CHAN_COUNT=0
    CONFIG_NRF_SOC_SECURE_SUPPORTED=y
    # CONFIG_NFCT_PINS_AS_GPIOS is not set
    CONFIG_NRF_APPROTECT_USE_UICR=y
    # CONFIG_NRF_APPROTECT_LOCK is not set
    # CONFIG_NRF_TRACE_PORT is not set
    # CONFIG_BUILD_OUTPUT_INFO_HEADER is not set
    # end of Hardware Configuration
    
    CONFIG_SOC_COMPATIBLE_NRF=y
    CONFIG_SOC_COMPATIBLE_NRF52X=y
    CONFIG_SOC_COMPATIBLE_NRF52833=y
    
    #
    # ARM Options
    #
    CONFIG_ARCH="arm"
    CONFIG_CPU_CORTEX=y
    # CONFIG_CODE_DATA_RELOCATION_SRAM is not set
    CONFIG_CPU_CORTEX_M=y
    # CONFIG_ARM_ZIMAGE_HEADER is not set
    CONFIG_ISA_THUMB2=y
    CONFIG_ASSEMBLER_ISA_THUMB2=y
    CONFIG_COMPILER_ISA_THUMB2=y
    CONFIG_STACK_ALIGN_DOUBLE_WORD=y
    # CONFIG_RUNTIME_NMI is not set
    CONFIG_FAULT_DUMP=2
    CONFIG_ARM_STACK_PROTECTION=y
    CONFIG_CPU_CORTEX_M4=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_PROGRAMMABLE_FAULT_PRIOS=y
    CONFIG_ARMV7_M_ARMV8_M_MAINLINE=y
    CONFIG_ARMV7_M_ARMV8_M_FP=y
    
    #
    # ARM Cortex-M0/M0+/M1/M3/M4/M7/M23/M33 options
    #
    CONFIG_GEN_ISR_TABLES=y
    CONFIG_ZERO_LATENCY_IRQS=y
    CONFIG_ZERO_LATENCY_LEVELS=1
    # CONFIG_SW_VECTOR_RELAY is not set
    # CONFIG_CORTEX_M_DWT is not set
    # CONFIG_CORTEX_M_DEBUG_MONITOR_HOOK is not set
    # CONFIG_TRAP_UNALIGNED_ACCESS is not set
    # end of ARM Cortex-M0/M0+/M1/M3/M4/M7/M23/M33 options
    
    CONFIG_NULL_POINTER_EXCEPTION_DETECTION_NONE=y
    # CONFIG_NULL_POINTER_EXCEPTION_DETECTION_DWT is not set
    # CONFIG_NULL_POINTER_EXCEPTION_DETECTION_MPU is not set
    CONFIG_GEN_IRQ_VECTOR_TABLE=y
    CONFIG_ARM_MPU=y
    CONFIG_ARM_MPU_REGION_MIN_ALIGN_AND_SIZE=32
    CONFIG_MPU_STACK_GUARD=y
    CONFIG_MPU_ALLOW_FLASH_WRITE=y
    # CONFIG_MPU_DISABLE_BACKGROUND_MAP is not set
    # CONFIG_CUSTOM_SECTION_ALIGN is not set
    CONFIG_CUSTOM_SECTION_MIN_ALIGN_SIZE=32
    # end of ARM Options
    
    CONFIG_ARM=y
    CONFIG_ARCH_IS_SET=y
    
    #
    # General Architecture Options
    #
    # CONFIG_SEMIHOST is not set
    CONFIG_LITTLE_ENDIAN=y
    CONFIG_HW_STACK_PROTECTION=y
    # CONFIG_USERSPACE is not set
    CONFIG_KOBJECT_TEXT_AREA=256
    CONFIG_KOBJECT_DATA_AREA_RESERVE_EXTRA_PERCENT=100
    CONFIG_KOBJECT_RODATA_AREA_EXTRA_BYTES=16
    CONFIG_GEN_PRIV_STACKS=y
    # CONFIG_STACK_GROWS_UP is not set
    
    #
    # Interrupt Configuration
    #
    # CONFIG_DYNAMIC_INTERRUPTS is not set
    CONFIG_ARCH_IRQ_VECTOR_TABLE_ALIGN=4
    CONFIG_IRQ_VECTOR_TABLE_JUMP_BY_ADDRESS=y
    # CONFIG_IRQ_VECTOR_TABLE_JUMP_BY_CODE is not set
    CONFIG_GEN_SW_ISR_TABLE=y
    CONFIG_ARCH_SW_ISR_TABLE_ALIGN=4
    CONFIG_GEN_IRQ_START_VECTOR=0
    CONFIG_EXTRA_EXCEPTION_INFO=y
    # CONFIG_SIMPLIFIED_EXCEPTION_CODES is not set
    # end of Interrupt Configuration
    # end of General Architecture Options
    
    CONFIG_ARCH_HAS_SINGLE_THREAD_SUPPORT=y
    CONFIG_ARCH_HAS_TIMING_FUNCTIONS=y
    CONFIG_ARCH_HAS_STACK_PROTECTION=y
    CONFIG_ARCH_HAS_USERSPACE=y
    CONFIG_ARCH_HAS_EXECUTABLE_PAGE_BIT=y
    CONFIG_ARCH_HAS_RAMFUNC_SUPPORT=y
    CONFIG_ARCH_HAS_NESTED_EXCEPTION_DETECTION=y
    CONFIG_ARCH_SUPPORTS_COREDUMP=y
    CONFIG_ARCH_SUPPORTS_ARCH_HW_INIT=y
    CONFIG_ARCH_HAS_EXTRA_EXCEPTION_INFO=y
    CONFIG_ARCH_HAS_THREAD_LOCAL_STORAGE=y
    CONFIG_ARCH_HAS_SUSPEND_TO_RAM=y
    CONFIG_ARCH_HAS_THREAD_ABORT=y
    CONFIG_ARCH_HAS_CODE_DATA_RELOCATION=y
    CONFIG_CPU_HAS_FPU=y
    CONFIG_CPU_HAS_MPU=y
    CONFIG_MPU=y
    CONFIG_MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT=y
    CONFIG_SRAM_REGION_PERMISSIONS=y
    
    #
    # Floating Point Options
    #
    # end of Floating Point Options
    
    #
    # Cache Options
    #
    # end of Cache Options
    
    CONFIG_TOOLCHAIN_HAS_BUILTIN_FFS=y
    
    #
    # General Kernel Options
    #
    CONFIG_MULTITHREADING=y
    CONFIG_NUM_COOP_PRIORITIES=16
    CONFIG_NUM_PREEMPT_PRIORITIES=15
    CONFIG_MAIN_THREAD_PRIORITY=0
    CONFIG_COOP_ENABLED=y
    CONFIG_PREEMPT_ENABLED=y
    CONFIG_PRIORITY_CEILING=-127
    # CONFIG_SCHED_DEADLINE is not set
    # CONFIG_SCHED_CPU_MASK is not set
    CONFIG_IDLE_STACK_SIZE=320
    CONFIG_ISR_STACK_SIZE=2048
    CONFIG_THREAD_STACK_INFO=y
    # CONFIG_THREAD_CUSTOM_DATA is not set
    CONFIG_ERRNO=y
    CONFIG_SCHED_DUMB=y
    # CONFIG_SCHED_SCALABLE is not set
    # CONFIG_SCHED_MULTIQ is not set
    # CONFIG_WAITQ_SCALABLE is not set
    CONFIG_WAITQ_DUMB=y
    
    #
    # Kernel Debugging and Metrics
    #
    CONFIG_BOOT_BANNER=y
    CONFIG_BOOT_DELAY=0
    # CONFIG_THREAD_MONITOR is not set
    CONFIG_THREAD_NAME=y
    CONFIG_THREAD_MAX_NAME_LEN=32
    # CONFIG_THREAD_RUNTIME_STATS is not set
    # end of Kernel Debugging and Metrics
    
    #
    # Work Queue Options
    #
    CONFIG_SYSTEM_WORKQUEUE_PRIORITY=-1
    # CONFIG_SYSTEM_WORKQUEUE_NO_YIELD is not set
    # end of Work Queue Options
    
    #
    # Atomic Operations
    #
    CONFIG_ATOMIC_OPERATIONS_BUILTIN=y
    # end of Atomic Operations
    
    #
    # Timer API Options
    #
    CONFIG_TIMESLICING=y
    CONFIG_TIMESLICE_SIZE=0
    CONFIG_TIMESLICE_PRIORITY=0
    # CONFIG_TIMESLICE_PER_THREAD is not set
    CONFIG_POLL=y
    # end of Timer API Options
    
    #
    # Other Kernel Object Options
    #
    # CONFIG_MEM_SLAB_TRACE_MAX_UTILIZATION is not set
    CONFIG_NUM_MBOX_ASYNC_MSGS=10
    # CONFIG_EVENTS is not set
    # CONFIG_PIPES is not set
    CONFIG_KERNEL_MEM_POOL=y
    # end of Other Kernel Object Options
    
    CONFIG_ARCH_HAS_CUSTOM_SWAP_TO_MAIN=y
    CONFIG_SWAP_NONATOMIC=y
    CONFIG_SYS_CLOCK_EXISTS=y
    CONFIG_TIMEOUT_64BIT=y
    CONFIG_SYS_CLOCK_MAX_TIMEOUT_DAYS=365
    CONFIG_XIP=y
    
    #
    # Initialization Priorities
    #
    CONFIG_KERNEL_INIT_PRIORITY_OBJECTS=30
    CONFIG_KERNEL_INIT_PRIORITY_DEFAULT=40
    CONFIG_KERNEL_INIT_PRIORITY_DEVICE=50
    CONFIG_APPLICATION_INIT_PRIORITY=90
    # end of Initialization Priorities
    
    #
    # Security Options
    #
    # CONFIG_STACK_CANARIES is not set
    CONFIG_STACK_POINTER_RANDOM=0
    # end of Security Options
    
    #
    # SMP Options
    #
    CONFIG_MP_NUM_CPUS=1
    # end of SMP Options
    
    CONFIG_TICKLESS_KERNEL=y
    CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE=y
    # CONFIG_THREAD_LOCAL_STORAGE is not set
    # end of General Kernel Options
    
    #
    # Device Options
    #
    # end of Device Options
    
    #
    # Virtual Memory Support
    #
    # end of Virtual Memory Support
    
    #
    # Device Drivers
    #
    CONFIG_ADC=y
    # CONFIG_ADC_ASYNC is not set
    # CONFIG_AUDIO is not set
    CONFIG_BBRAM=y
    CONFIG_BBRAM_INIT_PRIORITY=10
    # CONFIG_CACHE is not set
    # CONFIG_CAN is not set
    CONFIG_CLOCK_CONTROL_NRF_FORCE_ALT=y
    CONFIG_CLOCK_CONTROL_NRF=y
    CONFIG_CLOCK_CONTROL_NRF_K32SRC_RC=y
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_XTAL is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_SYNTH is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_EXT_LOW_SWING is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_EXT_FULL_SWING is not set
    CONFIG_CLOCK_CONTROL_NRF_K32SRC_RC_CALIBRATION=y
    CONFIG_CLOCK_CONTROL_NRF_CALIBRATION_LF_ALWAYS_ON=y
    CONFIG_CLOCK_CONTROL_NRF_CALIBRATION_PERIOD=4000
    CONFIG_CLOCK_CONTROL_NRF_CALIBRATION_MAX_SKIP=1
    CONFIG_CLOCK_CONTROL_NRF_CALIBRATION_TEMP_DIFF=2
    CONFIG_CLOCK_CONTROL_NRF_K32SRC_500PPM=y
    # 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 is not set
    CONFIG_CLOCK_CONTROL_NRF_ACCURACY=500
    # CONFIG_CONSOLE is not set
    # CONFIG_COREDUMP_DEVICE is not set
    # CONFIG_COUNTER is not set
    # CONFIG_CRYPTO is not set
    # CONFIG_DAC is not set
    # CONFIG_DAI is not set
    # CONFIG_DISK_DRIVERS is not set
    # CONFIG_DMA is not set
    # CONFIG_EDAC is not set
    CONFIG_EEPROM=y
    CONFIG_EEPROM_AT2X=y
    # CONFIG_EMUL_EEPROM_AT2X is not set
    CONFIG_EEPROM_AT25=y
    CONFIG_EEPROM_AT2X_INIT_PRIORITY=80
    CONFIG_ENTROPY_INIT_PRIORITY=50
    CONFIG_ENTROPY_NRF5_RNG=y
    # CONFIG_ENTROPY_NRF5_BIAS_CORRECTION is not set
    CONFIG_ENTROPY_NRF5_THR_POOL_SIZE=8
    CONFIG_ENTROPY_NRF5_THR_THRESHOLD=4
    CONFIG_ENTROPY_NRF5_ISR_POOL_SIZE=16
    CONFIG_ENTROPY_NRF5_ISR_THRESHOLD=12
    CONFIG_ENTROPY_BT_HCI=y
    CONFIG_ENTROPY_HAS_DRIVER=y
    # CONFIG_ESPI is not set
    CONFIG_FLASH_HAS_DRIVER_ENABLED=y
    CONFIG_FLASH_HAS_PAGE_LAYOUT=y
    CONFIG_FLASH_JESD216=y
    CONFIG_FLASH=y
    # CONFIG_FLASH_JESD216_API is not set
    CONFIG_FLASH_PAGE_LAYOUT=y
    CONFIG_FLASH_INIT_PRIORITY=50
    CONFIG_SOC_FLASH_NRF=y
    # CONFIG_SOC_FLASH_NRF_RADIO_SYNC_NONE is not set
    # CONFIG_SOC_FLASH_NRF_PARTIAL_ERASE is not set
    CONFIG_SOC_FLASH_NRF_TIMEOUT_MULTIPLIER=10
    # CONFIG_SOC_FLASH_NRF_UICR is not set
    # CONFIG_SOC_FLASH_NRF_EMULATE_ONE_BYTE_WRITE_ACCESS is not set
    CONFIG_SPI_NOR=y
    CONFIG_SPI_NOR_SFDP_MINIMAL=y
    # CONFIG_SPI_NOR_SFDP_DEVICETREE is not set
    # CONFIG_SPI_NOR_SFDP_RUNTIME is not set
    CONFIG_SPI_NOR_INIT_PRIORITY=80
    CONFIG_SPI_NOR_CS_WAIT_DELAY=0
    CONFIG_SPI_NOR_FLASH_LAYOUT_PAGE_SIZE=4096
    # CONFIG_SPI_NOR_IDLE_IN_DPD is not set
    # CONFIG_FPGA is not set
    # CONFIG_FUEL_GAUGE is not set
    # CONFIG_GPIO_GET_DIRECTION is not set
    # CONFIG_GPIO_GET_CONFIG is not set
    # CONFIG_GPIO_HOGS is not set
    # CONFIG_GPIO_ENABLE_DISABLE_INTERRUPT is not set
    CONFIG_GPIO_NRFX=y
    CONFIG_HWINFO=y
    CONFIG_HWINFO_NRF=y
    # CONFIG_I2C_CALLBACK is not set
    # CONFIG_I2C_TARGET is not set
    CONFIG_I2C_NRFX=y
    CONFIG_I2C_NRFX_TRANSFER_TIMEOUT=500
    CONFIG_I2C_0_NRF_TWI=y
    CONFIG_I2C_INIT_PRIORITY=50
    # CONFIG_I2S is not set
    # CONFIG_I3C is not set
    # CONFIG_SMBUS is not set
    
    #
    # Interrupt controller drivers
    #
    CONFIG_INTC_INIT_PRIORITY=40
    # CONFIG_MULTI_LEVEL_INTERRUPTS is not set
    # CONFIG_INTC_ESP32 is not set
    # end of Interrupt controller drivers
    
    # CONFIG_IPM is not set
    # CONFIG_LED is not set
    # CONFIG_LED_STRIP is not set
    # CONFIG_LORA is not set
    # CONFIG_MBOX is not set
    # CONFIG_MDIO is not set
    # CONFIG_MIPI_DSI is not set
    
    #
    # Miscellaneous Drivers
    #
    # CONFIG_GROVE_LCD_RGB is not set
    # end of Miscellaneous Drivers
    
    # CONFIG_MM_DRV is not set
    # CONFIG_NEURAL_NET_ACCEL is not set
    # CONFIG_PCIE is not set
    # CONFIG_PCIE_ENDPOINT is not set
    # CONFIG_PECI is not set
    CONFIG_PINCTRL_STORE_REG=y
    # CONFIG_PINCTRL_DYNAMIC is not set
    CONFIG_PINCTRL_NRF=y
    # CONFIG_PM_CPU_OPS is not set
    # CONFIG_POWER_DOMAIN is not set
    # CONFIG_PS2 is not set
    # CONFIG_PTP_CLOCK is not set
    CONFIG_PWM=y
    CONFIG_PWM_INIT_PRIORITY=50
    # CONFIG_PWM_CAPTURE is not set
    CONFIG_PWM_NRFX=y
    # CONFIG_RETAINED_MEM is not set
    CONFIG_RTC=y
    CONFIG_RTC_ALARM=y
    # CONFIG_RTC_UPDATE is not set
    # CONFIG_RTC_CALIBRATION is not set
    # CONFIG_SDHC is not set
    CONFIG_SENSOR_INIT_PRIORITY=90
    # CONFIG_SENSOR_INFO is not set
    
    #
    # Device Drivers
    #
    CONFIG_TEMP_NRF5_FORCE_ALT=y
    CONFIG_TEMP_NRF5=y
    CONFIG_TMP112_FULL_SCALE_RUNTIME=y
    CONFIG_TMP112_SAMPLING_FREQUENCY_RUNTIME=y
    CONFIG_VCMP_IT8XXX2_INIT_PRIORITY=90
    # CONFIG_SPI_ASYNC is not set
    # CONFIG_SPI_RTIO is not set
    # CONFIG_SPI_SLAVE is not set
    # CONFIG_SPI_EXTENDED_MODES is not set
    CONFIG_SPI_INIT_PRIORITY=70
    CONFIG_SPI_COMPLETION_TIMEOUT_TOLERANCE=200
    CONFIG_SPI_NRFX=y
    CONFIG_SPI_1_NRF_SPI=y
    # CONFIG_SYSCON is not set
    
    #
    # Timer drivers
    #
    # CONFIG_TIMER_READS_ITS_FREQUENCY_AT_RUNTIME is not set
    # CONFIG_SYSTEM_CLOCK_SLOPPY_IDLE is not set
    CONFIG_SYSTEM_CLOCK_INIT_PRIORITY=0
    CONFIG_TICKLESS_CAPABLE=y
    CONFIG_SYSTEM_TIMER_HAS_DISABLE_SUPPORT=y
    CONFIG_NRF_RTC_TIMER_LOCK_ZERO_LATENCY_IRQS=y
    # CONFIG_NRF_RTC_TIMER_TRIGGER_OVERFLOW is not set
    # CONFIG_SYSTEM_CLOCK_NO_WAIT is not set
    # CONFIG_SYSTEM_CLOCK_WAIT_FOR_AVAILABILITY is not set
    CONFIG_SYSTEM_CLOCK_WAIT_FOR_STABILITY=y
    # end of Timer drivers
    
    # CONFIG_USB_BC12 is not set
    # CONFIG_UDC_DRIVER is not set
    # CONFIG_UVB is not set
    # CONFIG_USB_DEVICE_DRIVER is not set
    # CONFIG_USBC_TCPC_DRIVER is not set
    # CONFIG_USBC_VBUS_DRIVER is not set
    # CONFIG_VIDEO is not set
    # CONFIG_VIRTUALIZATION is not set
    # CONFIG_W1 is not set
    # end of Device Drivers
    
    #
    # C Library
    #
    CONFIG_REQUIRES_FULL_LIBC=y
    CONFIG_SUPPORT_MINIMAL_LIBC=y
    CONFIG_PICOLIBC_SUPPORTED=y
    # CONFIG_PICOLIBC is not set
    CONFIG_NEWLIB_LIBC=y
    # CONFIG_EXTERNAL_LIBC is not set
    CONFIG_HAS_NEWLIB_LIBC_NANO=y
    CONFIG_NEWLIB_LIBC_MIN_REQUIRED_HEAP_SIZE=2048
    # CONFIG_NEWLIB_LIBC_FLOAT_PRINTF is not set
    # CONFIG_NEWLIB_LIBC_FLOAT_SCANF is not set
    # CONFIG_NEWLIB_LIBC_HEAP_LISTENER is not set
    # end of C Library
    
    #
    # C++ Language Support
    #
    CONFIG_CPP=y
    # CONFIG_STD_CPP98 is not set
    # CONFIG_STD_CPP11 is not set
    # CONFIG_STD_CPP14 is not set
    CONFIG_STD_CPP17=y
    # CONFIG_STD_CPP2A is not set
    # CONFIG_STD_CPP20 is not set
    # CONFIG_STD_CPP2B is not set
    CONFIG_REQUIRES_FULL_LIBCPP=y
    CONFIG_GLIBCXX_LIBCPP=y
    # CONFIG_EXTERNAL_LIBCPP is not set
    CONFIG_CPP_MAIN=y
    # CONFIG_CPP_RTTI is not set
    CONFIG_CPP_STATIC_INIT_GNU=y
    
    #
    # Deprecated
    #
    CONFIG_CPLUSPLUS=y
    CONFIG_LIB_CPLUSPLUS=y
    # CONFIG_RTTI is not set
    # end of Deprecated
    # end of C++ Language Support
    
    #
    # Additional libraries
    #
    
    #
    # Hash Function Support
    #
    # CONFIG_SYS_HASH_FUNC32 is not set
    # end of Hash Function Support
    
    #
    # Hashmap (Hash Table) Support
    #
    # CONFIG_SYS_HASH_MAP is not set
    # end of Hashmap (Hash Table) Support
    
    #
    # OS Support Library
    #
    # CONFIG_JSON_LIBRARY is not set
    # CONFIG_RING_BUFFER is not set
    CONFIG_NOTIFY=y
    # CONFIG_BASE64 is not set
    CONFIG_CRC=y
    # CONFIG_PRINTK_SYNC is not set
    # CONFIG_MPSC_PBUF is not set
    CONFIG_ONOFF=y
    # CONFIG_SPSC_PBUF is not set
    # CONFIG_SHARED_MULTI_HEAP is not set
    # CONFIG_WINSTREAM is not set
    CONFIG_REBOOT=y
    # CONFIG_UTF8 is not set
    CONFIG_CBPRINTF_COMPLETE=y
    # CONFIG_CBPRINTF_NANO is not set
    CONFIG_CBPRINTF_FULL_INTEGRAL=y
    # CONFIG_CBPRINTF_REDUCED_INTEGRAL is not set
    # CONFIG_CBPRINTF_FP_SUPPORT is not set
    # CONFIG_CBPRINTF_FP_A_SUPPORT is not set
    # CONFIG_CBPRINTF_FP_ALWAYS_A is not set
    CONFIG_CBPRINTF_N_SPECIFIER=y
    # CONFIG_CBPRINTF_LIBC_SUBSTS is not set
    # CONFIG_CBPRINTF_PACKAGE_LONGDOUBLE is not set
    # CONFIG_CBPRINTF_STATIC_PACKAGE_CHECK_ALIGNMENT is not set
    
    #
    # Heap and Memory Allocation
    #
    # CONFIG_SYS_HEAP_VALIDATE is not set
    CONFIG_SYS_HEAP_ALLOC_LOOPS=3
    # CONFIG_SYS_HEAP_RUNTIME_STATS is not set
    # CONFIG_SYS_HEAP_LISTENER is not set
    CONFIG_SYS_HEAP_SMALL_ONLY=y
    # CONFIG_SYS_HEAP_BIG_ONLY is not set
    # CONFIG_SYS_HEAP_AUTO is not set
    # CONFIG_SYS_MEM_BLOCKS is not set
    # end of Heap and Memory Allocation
    # end of OS Support Library
    
    # CONFIG_POSIX_API is not set
    # CONFIG_POSIX_CLOCK is not set
    CONFIG_MAX_TIMER_COUNT=5
    CONFIG_TIMER_CREATE_WAIT=100
    # CONFIG_POSIX_MQUEUE is not set
    # CONFIG_EVENTFD is not set
    # CONFIG_FNMATCH is not set
    # CONFIG_OPENAMP_RSC_TABLE is not set
    # CONFIG_SMF is not set
    # end of Additional libraries
    
    #
    # Subsystems and OS Services
    #
    CONFIG_BT=y
    CONFIG_BT_HCI=y
    # CONFIG_BT_CUSTOM is not set
    # CONFIG_BT_HCI_RAW is not set
    # CONFIG_BT_HCI_RAW_H4 is not set
    # CONFIG_BT_HCI_RAW_CMD_EXT is not set
    CONFIG_BT_CONN_TX=y
    # CONFIG_BT_SCA_UPDATE is not set
    
    #
    # Bluetooth buffer configuration
    #
    # end of Bluetooth buffer configuration
    
    #
    # Bluetooth Host
    #
    
    #
    # L2CAP Options
    #
    # end of L2CAP Options
    
    #
    # ATT and GATT Options
    #
    # end of ATT and GATT Options
    
    #
    # GATT Services
    #
    # end of GATT Services
    # end of Bluetooth Host
    
    CONFIG_BT_CTLR_LE_ENC_SUPPORT=y
    CONFIG_BT_CTLR_EXT_REJ_IND_SUPPORT=y
    CONFIG_BT_CTLR_DATA_LEN_UPDATE_SUPPORT=y
    CONFIG_BT_CTLR_PRIVACY_SUPPORT=y
    CONFIG_BT_CTLR_EXT_SCAN_FP_SUPPORT=y
    CONFIG_BT_CTLR_PHY_UPDATE_SUPPORT=y
    CONFIG_BT_CTLR_PHY_2M_SUPPORT=y
    CONFIG_BT_CTLR_PHY_CODED_SUPPORT=y
    CONFIG_BT_CTLR_ADV_EXT_SUPPORT=y
    CONFIG_BT_CTLR_ADV_PERIODIC_SUPPORT=y
    CONFIG_BT_CTLR_ADV_PERIODIC_RSP_SUPPORT=y
    CONFIG_BT_CTLR_SYNC_PERIODIC_SUPPORT=y
    CONFIG_BT_CTLR_SYNC_PERIODIC_RSP_SUPPORT=y
    CONFIG_BT_CTLR_SYNC_TRANSFER_SENDER_SUPPORT=y
    CONFIG_BT_CTLR_SYNC_TRANSFER_RECEIVER_SUPPORT=y
    CONFIG_BT_CTLR_CHAN_SEL_2_SUPPORT=y
    CONFIG_BT_CTLR_SCA_UPDATE_SUPPORT=y
    CONFIG_BT_CTLR_CONN_RSSI_SUPPORT=y
    CONFIG_BT_CTLR_ECDH_SUPPORT=y
    # CONFIG_BT_LL_SW_SPLIT is not set
    
    #
    # BLE Controller configuration
    #
    CONFIG_BT_CTLR_CRYPTO=y
    CONFIG_BT_CTLR_HCI_VS_BUILD_INFO=""
    CONFIG_BT_CTLR_AD_DATA_BACKUP=y
    CONFIG_BT_CTLR_RX_BUFFERS=1
    # CONFIG_BT_CTLR_TX_PWR_PLUS_8 is not set
    # CONFIG_BT_CTLR_TX_PWR_PLUS_7 is not set
    # CONFIG_BT_CTLR_TX_PWR_PLUS_6 is not set
    # CONFIG_BT_CTLR_TX_PWR_PLUS_5 is not set
    # CONFIG_BT_CTLR_TX_PWR_PLUS_4 is not set
    # CONFIG_BT_CTLR_TX_PWR_PLUS_3 is not set
    # CONFIG_BT_CTLR_TX_PWR_PLUS_2 is not set
    CONFIG_BT_CTLR_TX_PWR_0=y
    # CONFIG_BT_CTLR_TX_PWR_MINUS_4 is not set
    # CONFIG_BT_CTLR_TX_PWR_MINUS_8 is not set
    # CONFIG_BT_CTLR_TX_PWR_MINUS_12 is not set
    # CONFIG_BT_CTLR_TX_PWR_MINUS_16 is not set
    # CONFIG_BT_CTLR_TX_PWR_MINUS_20 is not set
    # CONFIG_BT_CTLR_TX_PWR_MINUS_40 is not set
    CONFIG_BT_CTLR_TX_PWR_ANTENNA=0
    # CONFIG_BT_CTLR_TX_PWR_DYNAMIC_CONTROL is not set
    
    #
    # BLE Controller features
    #
    CONFIG_BT_CTLR_LE_ENC=y
    CONFIG_BT_CTLR_ECDH=y
    CONFIG_BT_CTLR_EXT_REJ_IND=y
    CONFIG_BT_CTLR_LE_PING=y
    CONFIG_BT_CTLR_DATA_LENGTH=y
    CONFIG_BT_CTLR_PHY=y
    # CONFIG_BT_CTLR_CONN_RSSI is not set
    # CONFIG_BT_CTLR_FILTER_ACCEPT_LIST is not set
    CONFIG_BT_CTLR_PRIVACY=y
    CONFIG_BT_CTLR_RL_SIZE=8
    CONFIG_BT_CTLR_PHY_2M=y
    # CONFIG_BT_CTLR_PHY_CODED is not set
    CONFIG_BT_CTLR_CHAN_SEL_2=y
    # CONFIG_BT_CTLR_ADV_EXT is not set
    # CONFIG_BT_CTLR_SET_HOST_FEATURE is not set
    # CONFIG_BT_CTLR_HCI_CODEC_AND_DELAY_INFO is not set
    CONFIG_BT_CTLR_DF_CTE_TX_SUPPORT=y
    # CONFIG_BT_CTLR_ASSERT_HANDLER is not set
    # CONFIG_BT_CTLR_TEST is not set
    # CONFIG_BT_SHELL is not set
    # CONFIG_BT_EAD is not set
    CONFIG_BT_COMPANY_ID=0x05F1
    
    #
    # Controller Area Network (CAN) bus subsystem
    #
    # CONFIG_ISOTP is not set
    # end of Controller Area Network (CAN) bus subsystem
    
    # CONFIG_CONSOLE_SUBSYS is not set
    
    #
    # System Monitoring Options
    #
    # CONFIG_THREAD_ANALYZER is not set
    # end of System Monitoring Options
    
    #
    # Debugging Options
    #
    # CONFIG_DEBUG is not set
    CONFIG_STACK_USAGE=y
    # CONFIG_STACK_SENTINEL is not set
    CONFIG_PRINTK=y
    CONFIG_EARLY_CONSOLE=y
    # CONFIG_ASSERT is not set
    # CONFIG_FORCE_NO_ASSERT is not set
    CONFIG_ASSERT_VERBOSE=y
    # CONFIG_ASSERT_NO_FILE_INFO is not set
    # CONFIG_ASSERT_NO_COND_INFO is not set
    # CONFIG_ASSERT_NO_MSG_INFO is not set
    # CONFIG_ASSERT_TEST is not set
    # CONFIG_OVERRIDE_FRAME_POINTER_DEFAULT is not set
    # CONFIG_DEBUG_INFO is not set
    # CONFIG_DEBUG_THREAD_INFO is not set
    # CONFIG_DEBUG_COREDUMP is not set
    # end of Debugging Options
    
    # CONFIG_DISK_ACCESS is not set
    # CONFIG_DSP is not set
    # CONFIG_EMUL is not set
    # CONFIG_CHARACTER_FRAMEBUFFER is not set
    
    #
    # File Systems
    #
    # CONFIG_FILE_SYSTEM is not set
    # CONFIG_FCB is not set
    CONFIG_NVS=y
    # CONFIG_NVS_LOOKUP_CACHE is not set
    # end of File Systems
    
    #
    # Inter Processor Communication
    #
    # CONFIG_RPMSG_SERVICE is not set
    # CONFIG_IPC_SERVICE is not set
    # end of Inter Processor Communication
    
    # CONFIG_JWT is not set
    
    #
    # Logging
    #
    # CONFIG_LOG is not set
    # CONFIG_LOG_OUTPUT is not set
    # end of Logging
    
    #
    # Device Management
    #
    
    #
    # Host command handler subsystem
    #
    # CONFIG_EC_HOST_CMD is not set
    # CONFIG_EC_HOST_CMD_BACKEND_SHI is not set
    # end of Host command handler subsystem
    
    CONFIG_MCUMGR=y
    # CONFIG_MCUMGR_MGMT_NOTIFICATION_HOOKS is not set
    CONFIG_MCUMGR_SMP_CBOR_MAX_MAIN_MAP_ENTRIES=15
    CONFIG_MCUMGR_SMP_CBOR_MIN_DECODING_LEVELS=0
    CONFIG_MCUMGR_SMP_CBOR_MAX_DECODING_LEVELS=0
    # CONFIG_MCUMGR_SMP_VERBOSE_ERR_RESPONSE is not set
    # CONFIG_MCUMGR_SMP_LEGACY_RC_BEHAVIOUR is not set
    
    #
    # Command Handlers
    #
    # CONFIG_MCUMGR_GRP_OS is not set
    # end of Command Handlers
    
    #
    # Transports and Transport Related Configuration Options
    #
    CONFIG_MCUMGR_TRANSPORT_WORKQUEUE_STACK_SIZE=2048
    CONFIG_MCUMGR_TRANSPORT_WORKQUEUE_THREAD_PRIO=3
    CONFIG_MCUMGR_TRANSPORT_REASSEMBLY=y
    CONFIG_MCUMGR_TRANSPORT_NETBUF_COUNT=4
    CONFIG_MCUMGR_TRANSPORT_NETBUF_USER_DATA_SIZE=8
    CONFIG_MCUMGR_TRANSPORT_BT=y
    CONFIG_MCUMGR_TRANSPORT_BT_REASSEMBLY=y
    # end of Transports and Transport Related Configuration Options
    
    # CONFIG_OSDP is not set
    # end of Device Management
    
    # CONFIG_MODBUS is not set
    
    #
    # Networking
    #
    CONFIG_NET_BUF=y
    # CONFIG_NET_BUF_LOG is not set
    # CONFIG_NET_BUF_POOL_USAGE is not set
    # CONFIG_NETWORKING is not set
    # end of Networking
    
    #
    # Power Management
    #
    # CONFIG_PM_S2RAM is not set
    CONFIG_PM_POLICY_DEFAULT=y
    # CONFIG_PM_POLICY_CUSTOM is not set
    CONFIG_PM_DEVICE_POWER_DOMAIN=y
    # CONFIG_PM_DEVICE_POWER_DOMAIN_DYNAMIC is not set
    # CONFIG_PM_DEVICE_RUNTIME is not set
    # end of Power Management
    
    #
    # Portability
    #
    # end of Portability
    
    #
    # Random Number Generators
    #
    # CONFIG_TEST_RANDOM_GENERATOR is not set
    # CONFIG_ENTROPY_DEVICE_RANDOM_GENERATOR is not set
    # CONFIG_XOROSHIRO_RANDOM_GENERATOR is not set
    CONFIG_XOSHIRO_RANDOM_GENERATOR=y
    CONFIG_CSPRING_ENABLED=y
    CONFIG_HARDWARE_DEVICE_CS_GENERATOR=y
    # CONFIG_CTR_DRBG_CSPRNG_GENERATOR is not set
    # end of Random Number Generators
    
    # CONFIG_RTIO is not set
    
    #
    # SD
    #
    # CONFIG_MMC_STACK is not set
    # CONFIG_SDMMC_STACK is not set
    # CONFIG_SDIO_STACK is not set
    # end of SD
    
    # CONFIG_SETTINGS is not set
    # CONFIG_SHELL is not set
    # CONFIG_STATS is not set
    
    #
    # Storage
    #
    CONFIG_FLASH_MAP=y
    # CONFIG_FLASH_AREA_CHECK_INTEGRITY is not set
    # CONFIG_STREAM_FLASH is not set
    # end of Storage
    
    # CONFIG_TASK_WDT is not set
    
    #
    # Testing
    #
    # CONFIG_ZTEST is not set
    # CONFIG_ZTEST_MOCKING is not set
    # CONFIG_ZTRESS is not set
    # CONFIG_TEST is not set
    CONFIG_COVERAGE_GCOV_HEAP_SIZE=16384
    # CONFIG_TEST_USERSPACE is not set
    # end of Testing
    
    # CONFIG_TIMING_FUNCTIONS is not set
    # CONFIG_TRACING is not set
    # CONFIG_USB_DEVICE_STACK is not set
    # CONFIG_USB_DEVICE_STACK_NEXT is not set
    # CONFIG_USB_HOST_STACK is not set
    # CONFIG_USBC_STACK is not set
    # CONFIG_ZBUS is not set
    # end of Subsystems and OS Services
    
    CONFIG_TOOLCHAIN_ZEPHYR_0_16=y
    CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_THREAD_LOCAL_STORAGE=y
    
    #
    # Build and Link Features
    #
    
    #
    # Linker Options
    #
    # CONFIG_LINKER_ORPHAN_SECTION_PLACE is not set
    CONFIG_LINKER_ORPHAN_SECTION_WARN=y
    # CONFIG_LINKER_ORPHAN_SECTION_ERROR is not set
    CONFIG_HAS_FLASH_LOAD_OFFSET=y
    CONFIG_USE_DT_CODE_PARTITION=y
    CONFIG_FLASH_LOAD_OFFSET=0xc000
    CONFIG_FLASH_LOAD_SIZE=0x32000
    CONFIG_LD_LINKER_SCRIPT_SUPPORTED=y
    CONFIG_LD_LINKER_TEMPLATE=y
    # CONFIG_CMAKE_LINKER_GENERATOR is not set
    # CONFIG_HAVE_CUSTOM_LINKER_SCRIPT is not set
    CONFIG_KERNEL_ENTRY="__start"
    CONFIG_LINKER_SORT_BY_ALIGNMENT=y
    CONFIG_SRAM_OFFSET=0
    
    #
    # Linker Sections
    #
    # CONFIG_LINKER_USE_BOOT_SECTION is not set
    # CONFIG_LINKER_USE_PINNED_SECTION is not set
    CONFIG_LINKER_GENERIC_SECTIONS_PRESENT_AT_BOOT=y
    CONFIG_LINKER_LAST_SECTION_ID=y
    CONFIG_LINKER_LAST_SECTION_ID_PATTERN=0xE015E015
    CONFIG_LINKER_USE_RELAX=y
    # end of Linker Sections
    # end of Linker Options
    
    #
    # Compiler Options
    #
    # CONFIG_CODING_GUIDELINE_CHECK is not set
    # CONFIG_NATIVE_APPLICATION is not set
    # CONFIG_COMPILER_FREESTANDING 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_WARNINGS_AS_ERRORS is not set
    # CONFIG_COMPILER_SAVE_TEMPS is not set
    CONFIG_COMPILER_COLOR_DIAGNOSTICS=y
    # CONFIG_FORTIFY_SOURCE_NONE is not set
    CONFIG_FORTIFY_SOURCE_COMPILE_TIME=y
    # CONFIG_FORTIFY_SOURCE_RUN_TIME is not set
    CONFIG_COMPILER_OPT=""
    # CONFIG_MISRA_SANE is not set
    # end of Compiler Options
    
    # CONFIG_ASSERT_ON_ERRORS is not set
    # CONFIG_NO_RUNTIME_CHECKS is not set
    CONFIG_RUNTIME_ERROR_CHECKS=y
    
    #
    # Build Options
    #
    CONFIG_KERNEL_BIN_NAME="zephyr"
    CONFIG_OUTPUT_STAT=y
    # CONFIG_OUTPUT_SYMBOLS is not set
    CONFIG_OUTPUT_DISASSEMBLY=y
    # CONFIG_OUTPUT_DISASSEMBLE_ALL is not set
    CONFIG_OUTPUT_PRINT_MEMORY_USAGE=y
    # CONFIG_CLEANUP_INTERMEDIATE_FILES is not set
    # CONFIG_BUILD_NO_GAP_FILL is not set
    CONFIG_BUILD_OUTPUT_BIN=y
    # CONFIG_BUILD_OUTPUT_EXE is not set
    # CONFIG_BUILD_OUTPUT_S19 is not set
    # CONFIG_BUILD_OUTPUT_UF2 is not set
    # CONFIG_BUILD_OUTPUT_STRIPPED is not set
    # CONFIG_APPLICATION_DEFINED_SYSCALL is not set
    # CONFIG_MAKEFILE_EXPORTS is not set
    CONFIG_BUILD_OUTPUT_META=y
    # CONFIG_BUILD_OUTPUT_META_STATE_PROPAGATE is not set
    CONFIG_BUILD_OUTPUT_STRIP_PATHS=y
    # end of Build Options
    
    CONFIG_DEPRECATED=y
    CONFIG_WARN_DEPRECATED=y
    CONFIG_ENFORCE_ZEPHYR_STDINT=y
    # end of Build and Link Features
    
    #
    # Boot Options
    #
    # CONFIG_IS_BOOTLOADER is not set
    CONFIG_MCUBOOT_CMAKE_WEST_SIGN_PARAMS="--quiet"
    CONFIG_MCUBOOT_SIGNATURE_KEY_FILE="keys/mcuboot_sign.pem"
    CONFIG_MCUBOOT_ENCRYPTION_KEY_FILE=""
    CONFIG_MCUBOOT_EXTRA_IMGTOOL_ARGS=""
    # CONFIG_MCUBOOT_GENERATE_UNSIGNED_IMAGE is not set
    CONFIG_MCUBOOT_GENERATE_CONFIRMED_IMAGE=y
    # CONFIG_MCUBOOT_BOOTLOADER_MODE_SINGLE_APP is not set
    CONFIG_MCUBOOT_BOOTLOADER_MODE_SWAP_WITHOUT_SCRATCH=y
    # CONFIG_MCUBOOT_BOOTLOADER_MODE_SWAP_SCRATCH is not set
    # CONFIG_MCUBOOT_BOOTLOADER_MODE_DIRECT_XIP is not set
    # CONFIG_BOOTLOADER_BOSSA is not set
    # end of Boot Options
    
    #
    # Compatibility
    #
    CONFIG_COMPAT_INCLUDES=y
    # end of Compatibility
    

    The partitions.yml is not created, most likely because of the error above. I'm also not trusting the memory report as long as the partition manager does not work correctly.

    As well as the compiled device tree:

    /dts-v1/;
    
    / {
    	#address-cells = < 0x1 >;
    	#size-cells = < 0x1 >;
    	model = "carl_sensor";
    	compatible = "krafft,carl-sensor";
    	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 = &sram0;
    		zephyr,flash = &flash0;
    		zephyr,code-partition = &slot0_partition;
    		nordic,pm-ext-flash = &extflash;
    	};
    	aliases {
    		pwm-red = &pwm_red;
    		pwm-green = &pwm_green;
    		pwm-blue = &pwm_blue;
    		hall-int = &hall_int;
    		enable-5v = &shdn_ltc3525;
    		tilt1 = &tilt1;
    		tilt2 = &tilt2;
    		eeprom-0 = &eeprom_m95040;
    		exflash = &flash_at25pe80;
    		adc-0 = &ads1219;
    		gyroscope = &adxrs649;
    		accel = &adxl372;
    		rtc = &rv3028;
    		bq35100-ge = &bq35100_ge;
    		bq35100-alarm = &bq35100_alarm;
    		cy15b104 = &cy15b104;
    	};
    	soc {
    		#address-cells = < 0x1 >;
    		#size-cells = < 0x1 >;
    		compatible = "nordic,nRF52833-QIAA", "nordic,nRF52833", "nordic,nRF52", "simple-bus";
    		interrupt-parent = < &nvic >;
    		ranges;
    		nvic: interrupt-controller@e000e100 {
    			#address-cells = < 0x1 >;
    			compatible = "arm,v7m-nvic";
    			reg = < 0xe000e100 0xc00 >;
    			interrupt-controller;
    			#interrupt-cells = < 0x2 >;
    			arm,num-irq-priority-bits = < 0x3 >;
    			phandle = < 0x1 >;
    		};
    		systick: timer@e000e010 {
    			compatible = "arm,armv7m-systick";
    			reg = < 0xe000e010 0x10 >;
    			status = "disabled";
    		};
    		ficr: ficr@10000000 {
    			compatible = "nordic,nrf-ficr";
    			reg = < 0x10000000 0x1000 >;
    			status = "okay";
    		};
    		uicr: uicr@10001000 {
    			compatible = "nordic,nrf-uicr";
    			reg = < 0x10001000 0x1000 >;
    			status = "okay";
    		};
    		sram0: memory@20000000 {
    			compatible = "mmio-sram";
    			reg = < 0x20000000 0x20000 >;
    		};
    		clock: clock@40000000 {
    			compatible = "nordic,nrf-clock";
    			reg = < 0x40000000 0x1000 >;
    			interrupts = < 0x0 0x1 >;
    			status = "okay";
    		};
    		power: power@40000000 {
    			compatible = "nordic,nrf-power";
    			reg = < 0x40000000 0x1000 >;
    			interrupts = < 0x0 0x1 >;
    			status = "okay";
    			#address-cells = < 0x1 >;
    			#size-cells = < 0x1 >;
    			gpregret1: gpregret1@4000051c {
    				compatible = "nordic,nrf-gpregret";
    				reg = < 0x4000051c 0x1 >;
    				status = "okay";
    			};
    			gpregret2: gpregret2@40000520 {
    				compatible = "nordic,nrf-gpregret";
    				reg = < 0x40000520 0x1 >;
    				status = "okay";
    			};
    		};
    		radio: radio@40001000 {
    			compatible = "nordic,nrf-radio";
    			reg = < 0x40001000 0x1000 >;
    			interrupts = < 0x1 0x1 >;
    			status = "okay";
    			dfe-supported;
    			ieee802154-supported;
    			ble-2mbps-supported;
    			ble-coded-phy-supported;
    			tx-high-power-supported;
    			ieee802154: ieee802154 {
    				compatible = "nordic,nrf-ieee802154";
    				status = "disabled";
    			};
    		};
    		uart0: uart@40002000 {
    			compatible = "nordic,nrf-uarte";
    			reg = < 0x40002000 0x1000 >;
    			interrupts = < 0x2 0x1 >;
    			status = "okay";
    			current-speed = < 0x1c200 >;
    			pinctrl-0 = < &uart0_default >;
    			pinctrl-1 = < &uart0_sleep >;
    			pinctrl-names = "default", "sleep";
    		};
    		i2c0: i2c@40003000 {
    			compatible = "nordic,nrf-twi";
    			#address-cells = < 0x1 >;
    			#size-cells = < 0x0 >;
    			reg = < 0x40003000 0x1000 >;
    			clock-frequency = < 0x61a80 >;
    			interrupts = < 0x3 0x1 >;
    			status = "okay";
    			pinctrl-0 = < &i2c0_default >;
    			pinctrl-1 = < &i2c0_sleep >;
    			pinctrl-names = "default", "sleep";
    			adxl372: adxl372@53 {
    				compatible = "adi,adxl372x";
    				reg = < 0x53 >;
    				int1-gpios = < &gpio0 0x17 0x0 >;
    			};
    			rv3028: rv3028@52 {
    				compatible = "microcrystal,rv3028";
    				reg = < 0x52 >;
    				int-gpios = < &gpio0 0x1e 0x1 >;
    			};
    			ads1219: ads1219@40 {
    				compatible = "ti,ads1219";
    				reg = < 0x40 >;
    				drdy-gpios = < &gpio0 0xb 0x1 >;
    				#io-channel-cells = < 0x1 >;
    				#address-cells = < 0x1 >;
    				#size-cells = < 0x0 >;
    				phandle = < 0xc >;
    				channel@3 {
    					reg = < 0x3 >;
    					zephyr,gain = "ADC_GAIN_1";
    					zephyr,reference = "ADC_REF_EXTERNAL0";
    					zephyr,acquisition-time = < 0x43e8 >;
    					zephyr,resolution = < 0x18 >;
    					zephyr,vref-mv = < 0x1388 >;
    				};
    				channel@4 {
    					reg = < 0x4 >;
    					zephyr,gain = "ADC_GAIN_1";
    					zephyr,reference = "ADC_REF_EXTERNAL0";
    					zephyr,acquisition-time = < 0x43e8 >;
    					zephyr,resolution = < 0x18 >;
    					zephyr,vref-mv = < 0x1388 >;
    				};
    			};
    		};
    		spi0: spi@40003000 {
    			compatible = "nordic,nrf-spim";
    			#address-cells = < 0x1 >;
    			#size-cells = < 0x0 >;
    			reg = < 0x40003000 0x1000 >;
    			interrupts = < 0x3 0x1 >;
    			max-frequency = < 0x7a1200 >;
    			easydma-maxcnt-bits = < 0x10 >;
    			status = "disabled";
    		};
    		i2c1: i2c@40004000 {
    			compatible = "nordic,nrf-twim";
    			#address-cells = < 0x1 >;
    			#size-cells = < 0x0 >;
    			reg = < 0x40004000 0x1000 >;
    			clock-frequency = < 0x186a0 >;
    			interrupts = < 0x4 0x1 >;
    			status = "disabled";
    		};
    		spi1: spi@40004000 {
    			compatible = "nordic,nrf-spi";
    			#address-cells = < 0x1 >;
    			#size-cells = < 0x0 >;
    			reg = < 0x40004000 0x1000 >;
    			interrupts = < 0x4 0x1 >;
    			max-frequency = < 0x7a1200 >;
    			easydma-maxcnt-bits = < 0x10 >;
    			status = "okay";
    			pinctrl-0 = < &spi1_default >;
    			pinctrl-1 = < &spi1_sleep >;
    			pinctrl-names = "default", "sleep";
    			cs-gpios = < &gpio0 0x15 0x1 >, < &gpio0 0x16 0x1 >, < &gpio0 0x17 0x1 >;
    			eeprom_m95040: eeprom_m95040@0 {
    				compatible = "atmel,at25";
    				reg = < 0x0 >;
    				size = < 0x80000 >;
    				pagesize = < 0x200 >;
    				address-width = < 0x18 >;
    				spi-max-frequency = < 0x7a1200 >;
    				timeout = < 0x5 >;
    			};
    			cy15b104: cy15b104@1 {
    				compatible = "infineon,cy15b104";
    				reg = < 0x1 >;
    				size = < 0x400000 >;
    				address-width = < 0x18 >;
    				spi-max-frequency = < 0x2faf080 >;
    				timeout = < 0x5 >;
    			};
    			flash_at25pe80: flash_at25pe80@2 {
    				compatible = "jedec,spi-nor";
    				status = "okay";
    				size = < 0x800000 >;
    				reg = < 0x2 >;
    				jedec-id = [ 1F 25 00 ];
    				spi-max-frequency = < 0x7a1200 >;
    				partitions {
    					compatible = "fixed-partitions";
    					#address-cells = < 0x2 >;
    					#size-cells = < 0x1 >;
    					confflash: partition@0 {
    						label = "config";
    						reg = < 0x2 0x90000 0x400 >;
    					};
    					extflash: partition@1 {
    						label = "external-flash";
    						reg = < 0x2 0x90400 0xffc00 >;
    					};
    				};
    			};
    		};
    		nfct: nfct@40005000 {
    			compatible = "nordic,nrf-nfct";
    			reg = < 0x40005000 0x1000 >;
    			interrupts = < 0x5 0x1 >;
    			status = "okay";
    		};
    		gpiote: gpiote@40006000 {
    			compatible = "nordic,nrf-gpiote";
    			reg = < 0x40006000 0x1000 >;
    			interrupts = < 0x6 0x5 >;
    			status = "okay";
    		};
    		adc: adc@40007000 {
    			compatible = "nordic,nrf-saadc";
    			reg = < 0x40007000 0x1000 >;
    			interrupts = < 0x7 0x1 >;
    			status = "disabled";
    			#io-channel-cells = < 0x1 >;
    		};
    		timer0: timer@40008000 {
    			compatible = "nordic,nrf-timer";
    			status = "disabled";
    			reg = < 0x40008000 0x1000 >;
    			cc-num = < 0x4 >;
    			max-bit-width = < 0x20 >;
    			interrupts = < 0x8 0x1 >;
    			prescaler = < 0x0 >;
    		};
    		timer1: timer@40009000 {
    			compatible = "nordic,nrf-timer";
    			status = "disabled";
    			reg = < 0x40009000 0x1000 >;
    			cc-num = < 0x4 >;
    			max-bit-width = < 0x20 >;
    			interrupts = < 0x9 0x1 >;
    			prescaler = < 0x0 >;
    		};
    		timer2: timer@4000a000 {
    			compatible = "nordic,nrf-timer";
    			status = "disabled";
    			reg = < 0x4000a000 0x1000 >;
    			cc-num = < 0x4 >;
    			max-bit-width = < 0x20 >;
    			interrupts = < 0xa 0x1 >;
    			prescaler = < 0x0 >;
    			phandle = < 0xb >;
    		};
    		rtc0: rtc@4000b000 {
    			compatible = "nordic,nrf-rtc";
    			reg = < 0x4000b000 0x1000 >;
    			cc-num = < 0x3 >;
    			interrupts = < 0xb 0x1 >;
    			status = "disabled";
    			clock-frequency = < 0x8000 >;
    			prescaler = < 0x1 >;
    		};
    		temp: temp@4000c000 {
    			compatible = "nordic,nrf-temp";
    			reg = < 0x4000c000 0x1000 >;
    			interrupts = < 0xc 0x1 >;
    			status = "okay";
    		};
    		rng: random@4000d000 {
    			compatible = "nordic,nrf-rng";
    			reg = < 0x4000d000 0x1000 >;
    			interrupts = < 0xd 0x1 >;
    			status = "okay";
    		};
    		ecb: ecb@4000e000 {
    			compatible = "nordic,nrf-ecb";
    			reg = < 0x4000e000 0x1000 >;
    			interrupts = < 0xe 0x1 >;
    			status = "okay";
    		};
    		ccm: ccm@4000f000 {
    			compatible = "nordic,nrf-ccm";
    			reg = < 0x4000f000 0x1000 >;
    			interrupts = < 0xf 0x1 >;
    			length-field-length-8-bits;
    			status = "okay";
    		};
    		wdt: wdt0: watchdog@40010000 {
    			compatible = "nordic,nrf-wdt";
    			reg = < 0x40010000 0x1000 >;
    			interrupts = < 0x10 0x1 >;
    			status = "okay";
    		};
    		rtc1: rtc@40011000 {
    			compatible = "nordic,nrf-rtc";
    			reg = < 0x40011000 0x1000 >;
    			cc-num = < 0x4 >;
    			interrupts = < 0x11 0x1 >;
    			status = "disabled";
    			clock-frequency = < 0x8000 >;
    			prescaler = < 0x1 >;
    		};
    		qdec: qdec0: qdec@40012000 {
    			compatible = "nordic,nrf-qdec";
    			reg = < 0x40012000 0x1000 >;
    			interrupts = < 0x12 0x1 >;
    			status = "disabled";
    		};
    		comp: comparator@40013000 {
    			compatible = "nordic,nrf-comp";
    			reg = < 0x40013000 0x1000 >;
    			interrupts = < 0x13 0x1 >;
    			status = "disabled";
    			#io-channel-cells = < 0x1 >;
    		};
    		egu0: swi0: egu@40014000 {
    			compatible = "nordic,nrf-egu", "nordic,nrf-swi";
    			reg = < 0x40014000 0x1000 >;
    			interrupts = < 0x14 0x1 >;
    			status = "okay";
    		};
    		egu1: swi1: egu@40015000 {
    			compatible = "nordic,nrf-egu", "nordic,nrf-swi";
    			reg = < 0x40015000 0x1000 >;
    			interrupts = < 0x15 0x1 >;
    			status = "okay";
    		};
    		egu2: swi2: egu@40016000 {
    			compatible = "nordic,nrf-egu", "nordic,nrf-swi";
    			reg = < 0x40016000 0x1000 >;
    			interrupts = < 0x16 0x1 >;
    			status = "okay";
    		};
    		egu3: swi3: egu@40017000 {
    			compatible = "nordic,nrf-egu", "nordic,nrf-swi";
    			reg = < 0x40017000 0x1000 >;
    			interrupts = < 0x17 0x1 >;
    			status = "okay";
    		};
    		egu4: swi4: egu@40018000 {
    			compatible = "nordic,nrf-egu", "nordic,nrf-swi";
    			reg = < 0x40018000 0x1000 >;
    			interrupts = < 0x18 0x1 >;
    			status = "okay";
    		};
    		egu5: swi5: egu@40019000 {
    			compatible = "nordic,nrf-egu", "nordic,nrf-swi";
    			reg = < 0x40019000 0x1000 >;
    			interrupts = < 0x19 0x1 >;
    			status = "okay";
    		};
    		timer3: timer@4001a000 {
    			compatible = "nordic,nrf-timer";
    			status = "disabled";
    			reg = < 0x4001a000 0x1000 >;
    			cc-num = < 0x6 >;
    			max-bit-width = < 0x20 >;
    			interrupts = < 0x1a 0x1 >;
    			prescaler = < 0x0 >;
    		};
    		timer4: timer@4001b000 {
    			compatible = "nordic,nrf-timer";
    			status = "disabled";
    			reg = < 0x4001b000 0x1000 >;
    			cc-num = < 0x6 >;
    			max-bit-width = < 0x20 >;
    			interrupts = < 0x1b 0x1 >;
    			prescaler = < 0x0 >;
    		};
    		pwm0: pwm@4001c000 {
    			compatible = "nordic,nrf-pwm";
    			reg = < 0x4001c000 0x1000 >;
    			interrupts = < 0x1c 0x1 >;
    			status = "okay";
    			#pwm-cells = < 0x3 >;
    			pinctrl-0 = < &pwm0_default >;
    			pinctrl-1 = < &pwm0_sleep >;
    			pinctrl-names = "default", "sleep";
    			phandle = < 0xd >;
    		};
    		pdm0: pdm@4001d000 {
    			compatible = "nordic,nrf-pdm";
    			reg = < 0x4001d000 0x1000 >;
    			interrupts = < 0x1d 0x1 >;
    			status = "disabled";
    		};
    		acl: acl@4001e000 {
    			compatible = "nordic,nrf-acl";
    			reg = < 0x4001e000 0x1000 >;
    			status = "okay";
    		};
    		flash_controller: flash-controller@4001e000 {
    			compatible = "nordic,nrf52-flash-controller";
    			reg = < 0x4001e000 0x1000 >;
    			partial-erase;
    			#address-cells = < 0x1 >;
    			#size-cells = < 0x1 >;
    			flash0: flash@0 {
    				compatible = "soc-nv-flash";
    				erase-block-size = < 0x1000 >;
    				write-block-size = < 0x4 >;
    				reg = < 0x0 0x80000 >;
    				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 0x32000 >;
    					};
    					slot1_partition: partition@3e000 {
    						label = "image-1";
    						reg = < 0x3e000 0x32000 >;
    					};
    					scratch_partition: partition@70000 {
    						label = "image-scratch";
    						reg = < 0x70000 0xa000 >;
    					};
    					storage_partition: partition@7a000 {
    						label = "storage";
    						reg = < 0x7a000 0x6000 >;
    					};
    				};
    			};
    		};
    		ppi: ppi@4001f000 {
    			compatible = "nordic,nrf-ppi";
    			reg = < 0x4001f000 0x1000 >;
    			status = "okay";
    		};
    		mwu: mwu@40020000 {
    			compatible = "nordic,nrf-mwu";
    			reg = < 0x40020000 0x1000 >;
    			status = "okay";
    		};
    		pwm1: pwm@40021000 {
    			compatible = "nordic,nrf-pwm";
    			reg = < 0x40021000 0x1000 >;
    			interrupts = < 0x21 0x1 >;
    			status = "disabled";
    			#pwm-cells = < 0x3 >;
    		};
    		pwm2: pwm@40022000 {
    			compatible = "nordic,nrf-pwm";
    			reg = < 0x40022000 0x1000 >;
    			interrupts = < 0x22 0x1 >;
    			status = "disabled";
    			#pwm-cells = < 0x3 >;
    		};
    		spi2: spi@40023000 {
    			compatible = "nordic,nrf-spim";
    			#address-cells = < 0x1 >;
    			#size-cells = < 0x0 >;
    			reg = < 0x40023000 0x1000 >;
    			interrupts = < 0x23 0x1 >;
    			max-frequency = < 0x7a1200 >;
    			easydma-maxcnt-bits = < 0x10 >;
    			status = "disabled";
    		};
    		rtc2: rtc@40024000 {
    			compatible = "nordic,nrf-rtc";
    			reg = < 0x40024000 0x1000 >;
    			cc-num = < 0x4 >;
    			interrupts = < 0x24 0x1 >;
    			status = "disabled";
    			clock-frequency = < 0x8000 >;
    			prescaler = < 0x1 >;
    		};
    		i2s0: i2s@40025000 {
    			compatible = "nordic,nrf-i2s";
    			#address-cells = < 0x1 >;
    			#size-cells = < 0x0 >;
    			reg = < 0x40025000 0x1000 >;
    			interrupts = < 0x25 0x1 >;
    			status = "disabled";
    		};
    		usbd: usbd@40027000 {
    			compatible = "nordic,nrf-usbd";
    			reg = < 0x40027000 0x1000 >;
    			interrupts = < 0x27 0x1 >;
    			num-bidir-endpoints = < 0x1 >;
    			num-in-endpoints = < 0x7 >;
    			num-out-endpoints = < 0x7 >;
    			num-isoin-endpoints = < 0x1 >;
    			num-isoout-endpoints = < 0x1 >;
    			status = "disabled";
    		};
    		uart1: uart@40028000 {
    			compatible = "nordic,nrf-uarte";
    			reg = < 0x40028000 0x1000 >;
    			interrupts = < 0x28 0x1 >;
    			status = "disabled";
    		};
    		pwm3: pwm@4002d000 {
    			compatible = "nordic,nrf-pwm";
    			reg = < 0x4002d000 0x1000 >;
    			interrupts = < 0x2d 0x1 >;
    			status = "disabled";
    			#pwm-cells = < 0x3 >;
    		};
    		spi3: spi@4002f000 {
    			compatible = "nordic,nrf-spim";
    			#address-cells = < 0x1 >;
    			#size-cells = < 0x0 >;
    			reg = < 0x4002f000 0x1000 >;
    			interrupts = < 0x2f 0x1 >;
    			max-frequency = < 0x1e84800 >;
    			easydma-maxcnt-bits = < 0x10 >;
    			rx-delay-supported;
    			rx-delay = < 0x2 >;
    			status = "disabled";
    		};
    		gpio0: gpio@50000000 {
    			compatible = "nordic,nrf-gpio";
    			gpio-controller;
    			reg = < 0x50000000 0x200 0x50000500 0x300 >;
    			#gpio-cells = < 0x2 >;
    			status = "okay";
    			port = < 0x0 >;
    			phandle = < 0x6 >;
    		};
    		gpio1: gpio@50000300 {
    			compatible = "nordic,nrf-gpio";
    			gpio-controller;
    			reg = < 0x50000300 0x200 0x50000800 0x300 >;
    			#gpio-cells = < 0x2 >;
    			ngpios = < 0xa >;
    			status = "okay";
    			port = < 0x1 >;
    			phandle = < 0xe >;
    		};
    	};
    	pinctrl: pin-controller {
    		compatible = "nordic,nrf-pinctrl";
    		uart0_default: uart0_default {
    			phandle = < 0x2 >;
    			group1 {
    				psels = < 0x1d >, < 0x20009 >;
    			};
    			group2 {
    				psels = < 0x1001c >, < 0x3000a >;
    				bias-pull-up;
    			};
    		};
    		uart0_sleep: uart0_sleep {
    			phandle = < 0x3 >;
    			group1 {
    				psels = < 0x1d >, < 0x1001c >, < 0x20009 >, < 0x3000a >;
    				low-power-enable;
    			};
    		};
    		i2c0_default: i2c0_default {
    			phandle = < 0x4 >;
    			group1 {
    				psels = < 0xc001a >, < 0xb001b >;
    			};
    		};
    		i2c0_sleep: i2c0_sleep {
    			phandle = < 0x5 >;
    			group1 {
    				psels = < 0xc001a >, < 0xb001b >;
    				low-power-enable;
    			};
    		};
    		pwm0_default: pwm0_default {
    			phandle = < 0x9 >;
    			group1 {
    				psels = < 0x16000d >, < 0x17000e >, < 0x18000f >;
    				nordic,invert;
    			};
    		};
    		pwm0_sleep: pwm0_sleep {
    			phandle = < 0xa >;
    			group1 {
    				psels = < 0x16000d >, < 0x17000e >, < 0x18000f >;
    				low-power-enable;
    			};
    		};
    		spi1_default: spi1_default {
    			phandle = < 0x7 >;
    			group1 {
    				psels = < 0x40029 >, < 0x50028 >, < 0x60004 >;
    			};
    		};
    		spi1_sleep: spi1_sleep {
    			phandle = < 0x8 >;
    			group1 {
    				psels = < 0x40029 >, < 0x50028 >, < 0x60004 >;
    				low-power-enable;
    			};
    		};
    	};
    	rng_hci: entropy_bt_hci {
    		compatible = "zephyr,bt-hci-entropy";
    		status = "okay";
    	};
    	cpus {
    		#address-cells = < 0x1 >;
    		#size-cells = < 0x0 >;
    		cpu@0 {
    			device_type = "cpu";
    			compatible = "arm,cortex-m4f";
    			reg = < 0x0 >;
    			#address-cells = < 0x1 >;
    			#size-cells = < 0x1 >;
    			itm: itm@e0000000 {
    				compatible = "arm,armv7m-itm";
    				reg = < 0xe0000000 0x1000 >;
    				swo-ref-frequency = < 0x1e84800 >;
    			};
    		};
    	};
    	sw_pwm: sw-pwm {
    		compatible = "nordic,nrf-sw-pwm";
    		status = "disabled";
    		generator = < &timer2 >;
    		clock-prescaler = < 0x0 >;
    		#pwm-cells = < 0x3 >;
    	};
    	zephyr,user {
    		io-channels = < &ads1219 0x3 >, < &ads1219 0x4 >;
    		io-channel-names = "gyro_rate", "gyro_temp";
    	};
    	pwmleds {
    		compatible = "pwm-leds";
    		pwm_red: pwm_red {
    			status = "okay";
    			pwms = < &pwm0 0x0 0x1312d00 0x1 >;
    			label = "PWM_RED";
    		};
    		pwm_green: pwm_green {
    			status = "okay";
    			pwms = < &pwm0 0x1 0x1312d00 0x1 >;
    			label = "PWM_GREEN";
    		};
    		pwm_blue: pwm_blue {
    			status = "okay";
    			pwms = < &pwm0 0x2 0x1312d00 0x1 >;
    			label = "PWM_BLUE";
    		};
    	};
    	control {
    		compatible = "gpio-leds";
    		shdn_ltc3525: shdn_ltc3525 {
    			status = "okay";
    			gpios = < &gpio1 0x6 0x0 >;
    			label = "SHDN_5V";
    		};
    		bq35100_ge: bq35100_ge {
    			status = "okay";
    			gpios = < &gpio1 0x7 0x0 >;
    			label = "GE_EN";
    		};
    	};
    	interrupts {
    		compatible = "gpio-keys";
    		tilt1: tilt1 {
    			status = "okay";
    			gpios = < &gpio0 0x13 0x1 >;
    			label = "TILT1";
    		};
    		tilt2: tilt2 {
    			status = "okay";
    			gpios = < &gpio0 0x14 0x1 >;
    			label = "TILT2";
    		};
    		hall_int: hall_int {
    			status = "okay";
    			gpios = < &gpio1 0x5 0x1 >;
    			label = "ACT";
    		};
    		bq35100_alarm: bq35100_alarm {
    			status = "okay";
    			gpios = < &gpio1 0x3 0x1 >;
    			label = "ALARM";
    		};
    	};
    	adxrs649: adxrs649 {
    		status = "okay";
    		compatible = "adi,adxrs649";
    		io-channels = < &ads1219 0x3 >, < &ads1219 0x4 >;
    		st1-gpios = < &gpio0 0x12 0x0 >;
    	};
    };
    

    It took me entirely too long to notice that the partition file is no input file, but only an output file, so my changes to a local file named 'partition.yml' do nothing. But then I must be missing something.

  • The only part with a " / 8" in your partition.yml file is in a comment in the mcuboot_secondary section.

    Please see if you can remove it or rephrase it. I understand that YAML is supposed to support inline comment, but there seem to be an issue with the parser, so let's work around it for now.

  • This error:

    CMake Error at C:/Users/sw2.KRAFFT/ncs/nrf/cmake/partition_manager.cmake:220 (math):
      math cannot parse the expression: " / 8": syntax error, unexpected
      exp_DIVIDE (2).

    is not dependant on my file. I even removed the comment without a change. It points to a function in the partition_manager.cmake file:

    dt_chosen(ext_flash_dev PROPERTY nordic,pm-ext-flash)
    if (DEFINED ext_flash_dev)
      dt_prop(num_bits PATH ${ext_flash_dev} PROPERTY size)
      math(EXPR num_bytes "${num_bits} / 8")
    
      set(external_flash_driver_kconfig CONFIG_PM_EXTERNAL_FLASH_HAS_DRIVER)
    
      add_region(
        NAME external_flash
        SIZE ${num_bytes}
        BASE ${CONFIG_PM_EXTERNAL_FLASH_BASE}
        PLACEMENT start_to_end
        DEVICE "DT_CHOSEN(nordic_pm_ext_flash)"
        DEFAULT_DRIVER_KCONFIG ${external_flash_driver_kconfig}
        )
    endif()
    

    I think the size given in num_bytes is somehow wrong (or num_bits?) but the size I have given in the device tree for the external partition (0xFFC00) is dividible by 8, so I'm not sure where this error is coming from.

    Otherwise the main zephyr.cmake has the following lines:

    # At the moment we only can use the bootloader in release mode.
    # There is not enough space to debug the application
    # with the bootloader enabled as the application size is reduced to half
    # of its size (~256kb) 
    if (CMAKE_BUILD_TYPE STREQUAL release)
        set(OVERLAY_CONFIG ${OVERLAY_CONFIG} ${ROOT_DIR}/conf/bootloader_dfu.conf)
        # Main application configuration
        set(PM_STATIC_YML_FILE ${ROOT_DIR}/partition.yml)
    endif()

    This references the partition.yml above. But, as I said, removing the comment changes nothing here.

  • This is very odd. I have supported multiple cases with the static Partition Manager configurations before.

    Without knowing the internal of the Partition Manager scripts, and based on just the difference, can you try renaming the file to pm_static.yml and do a pristine build? I will also look into it at the same time.

  • Does this mean that the files are otherwise correct, like the size values and the device tree in general?

    I am always doing pristine builds, as otherwise the build does not even try to start the partition manager script and just skips over it. So everytime I delete the build folder and have to build from start, I imagine until it works properly.

    Apart from configurations, NO custom scripts are used for partitions. The scripts only handle the inclusion of the bootloader and partition manager for a release build. If I rename the script, the same error occurs.

    As the error happens in the script delivered by Nordic, maybe it is something in the device tree that is wrong?

Reply
  • Does this mean that the files are otherwise correct, like the size values and the device tree in general?

    I am always doing pristine builds, as otherwise the build does not even try to start the partition manager script and just skips over it. So everytime I delete the build folder and have to build from start, I imagine until it works properly.

    Apart from configurations, NO custom scripts are used for partitions. The scripts only handle the inclusion of the bootloader and partition manager for a release build. If I rename the script, the same error occurs.

    As the error happens in the script delivered by Nordic, maybe it is something in the device tree that is wrong?

Children
  • To double check here, when you mentioned renaming of the script file, did you rename partition_manager.cmake or your partition.yml file? I'm sory I was not clear, but I meant renaming the partition.yml configuration file, not any script file.

    Edit: Sorry, I reread your replies and see that I misunderstood you. I hope it is clear that if you want to provide a partitioning configuration to the Partition Manager, then you need to use pm_static.yml file, as described in the documentation I linked.

    In any cases, I think my last guess was not correct, so my apology, but please restore all the file names.

    Bjoern Bialy said:
    As the error happens in the script delivered by Nordic, maybe it is something in the device tree that is wrong?

    You are likely right here. I think the partition_manager.cmake is unable to parse the macro DT_SIZE_M that you used to define the size of the external flash device. Could you please try using 8388608 instead of DT_SIZE_M(8)?

    I attempted to build with your files today and was able to detect a few issues:

    • You are trying to define the partitions in the overlay file. Please note that while you use the Partition Manager, the Partition Manager will override all partitioning done in Devicetree (DT).

      In your setup, you want MCUboot, and therefore Partition Manager will always be enabled.
      Therefore, please don't setup the partitions in the DT.
      Your specific partitioning requirements should be configured with pm_static.yml.

    • You are choosing a partition on your DT as the chosen pm-ext-flash node. This won't work.
      pm-ext-flash expects an external flash node. In other word, you need to specify your flash_at25pe80 device.

    • Please remember to apply all DT overlay to both the main application and the mcuboot child image.
      You haven't mentioned this, and I think you have already done it, or you would have had many build issues.

    • The unit address and first address in 'reg' (0x2000XYZW) don't match warning messages you receive comes from your partitioning setup in the DT. It seems that you are not defining the partition properly here.
      Details are below, since as mentioned above, this partitioning section could be removed altogether.

    From here on, I will explain the initial issue in your question with some information I found in my research.

    The concern was regarding these warnings:

    unit address and first address in 'reg' (0x200090000) don't match for /soc/spi@40004000/flash_at25pe80@2/partitions/partition@0
    unit address and first address in 'reg' (0x200090400) don't match for /soc/spi@40004000/flash_at25pe80@2/partitions/partition@1

    And the root cause is this section in your overlay file:

    	partitions {
    		compatible = "fixed-partitions";
    		#address-cells = < 2 >;
    		#size-cells = < 1 >;
    
    		confflash: partition@0 {
    			label = "config";
    			reg = < 2 0x90000 0x400 >;
    		};
    		extflash: partition@1 {
    			label = "external-flash";
    			reg = < 2 0x90400 0xFFC00 >;
    		};
    	};

    Consider this hypothetical pseudo-code DT node:

    some_partition: partition@12345678 {
            label = "human readable name";
            reg = <0xABCD0000 0x00001000>;
    };

    Then the unit address is the 12345678 part, and the first-address-in-reg is the 0xABCD0000 part.

    This is defined in the Devicetree spec. Refer to: https://devicetree-specification.readthedocs.io/en/latest/chapter2-devicetree-basics.html, section 2.2.

    Other than that, I also find your value for the address-cells and the start offset of the partitions strange. Please review why you decided those value like that.

    In the Devicetree spec I linked above, you can also find the address-cells and size-cells properties explained in section 2.3.5.

    Finally, here is how the section should be to avoid the value. This is without concerning about the correctness of the values.

    &flash_at25pe80 {
    	partitions {
    		compatible = "fixed-partitions";
    		#address-cells = < 1 >;
    		#size-cells = < 1 >;
    
    		confflash: partition@90000 {
    			label = "config";
    			reg = < 0x90000 0x400 >;
    		};
    		extflash: partition@90400 {
    			label = "external-flash";
    			reg = < 0x90400 0xFFC00 >;
    		};
    	};
    };


    Finally, I apologize that my replies thus far have been off the mark.

  • Thank you for your extensive answer! I have learned a lot and will most likely rebuild the configuration regarding anything with the partitioning and bootloader.

    I now have a new problem. When building with activated mcuboot, the build just fails after compiling:

    FATAL ERROR: command exited with status 1: 'C:\Users\sw2.KRAFFT\ncs\toolchains\31f4403e35\opt\bin\cmake.EXE' --build 'd:\GitLab\carl-ble-sensor-firmware\build'

    The only thing I found is that the build process can't seem to find the SPI configuration:

    c:/users/sw2.krafft/ncs/toolchains/31f4403e35/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/bin/ld.bfd.exe: zephyr/drivers/flash/libdrivers__flash.a(spi_nor.c.obj):(.rodata.spi_nor_config_0+0x0): undefined reference to `__device_dts_ord_100'

    But it worked fine without the bootloader. Mcuboot and the application use the same device tree, as I can see in the dts files in the build folder, but it somehow can't find it.

  • Have you enabled CONFIG_SPI in MCUboot?

    The simplest way to do so is by adding an overlay file for the mcuboot child image in <project root>/child_image/mcuboot.conf.

    There are other ways explained in the Image Specific Variables section of this page: https://developer.nordicsemi.com/nRF_Connect_SDK/doc/2.4.1/nrf/app_dev/multi_image/index.html#image-specific-variables.

  • CONFIG_SPI is enabled, it appears in the build configuration in Mcuboot:

    #
    # MCUboot-specific configuration options
    #
    # CONFIG_BOOT_USE_MIN_PARTITION_SIZE is not set
    CONFIG_PM_PARTITION_SIZE_MCUBOOT_SCRATCH=0x1e000
    CONFIG_PM_PARTITION_SIZE_MCUBOOT_PAD=0x200
    CONFIG_PM_PARTITION_SIZE_MCUBOOT=0xc000
    CONFIG_MCUBOOT_NRF_CLEANUP_PERIPHERAL=y
    CONFIG_BOOT_SIGNATURE_KEY_FILE="D:/GitLab/carl-ble-sensor-firmware/keys/mcuboot_sign.pem"
    CONFIG_BOOT_ERASE_PROGRESSIVELY=y
    # CONFIG_BOOT_IMAGE_ACCESS_HOOKS is not set
    CONFIG_MCUBOOT=y
    CONFIG_BOOT_USE_MBEDTLS=y
    # CONFIG_NRF_CC310_BL is not set
    
    #
    # MCUBoot settings
    #
    # CONFIG_SINGLE_APPLICATION_SLOT is not set
    # CONFIG_BOOT_SIGNATURE_TYPE_NONE is not set
    CONFIG_BOOT_SIGNATURE_TYPE_RSA=y
    CONFIG_BOOT_SIGNATURE_TYPE_RSA_LEN=2048
    # CONFIG_BOOT_SIGNATURE_TYPE_ECDSA_P256 is not set
    # CONFIG_BOOT_SIGNATURE_TYPE_ED25519 is not set
    CONFIG_MCUBOOT_CLEANUP_ARM_CORE=y
    CONFIG_MBEDTLS_CFG_FILE="mcuboot-mbedtls-cfg.h"
    # CONFIG_BOOT_HW_KEY is not set
    CONFIG_BOOT_VALIDATE_SLOT0=y
    CONFIG_BOOT_PREFER_SWAP_MOVE=y
    # CONFIG_BOOT_SWAP_USING_SCRATCH is not set
    # CONFIG_BOOT_UPGRADE_ONLY is not set
    CONFIG_BOOT_SWAP_USING_MOVE=y
    # CONFIG_BOOT_DIRECT_XIP is not set
    # CONFIG_BOOT_RAM_LOAD is not set
    # CONFIG_BOOT_BOOTSTRAP is not set
    # CONFIG_BOOT_SWAP_SAVE_ENCTLV is not set
    # CONFIG_BOOT_ENCRYPT_RSA is not set
    # CONFIG_BOOT_ENCRYPT_EC256 is not set
    # CONFIG_BOOT_ENCRYPT_X25519 is not set
    CONFIG_BOOT_MAX_IMG_SECTORS=256
    # CONFIG_MEASURED_BOOT is not set
    # CONFIG_BOOT_SHARE_DATA is not set
    CONFIG_BOOT_FIH_PROFILE_OFF=y
    # CONFIG_BOOT_FIH_PROFILE_LOW is not set
    # CONFIG_BOOT_FIH_PROFILE_MEDIUM is not set
    # CONFIG_BOOT_FIH_PROFILE_HIGH is not set
    CONFIG_BOOT_USB_DFU_NO=y
    # CONFIG_BOOT_USB_DFU_WAIT is not set
    # CONFIG_BOOT_USB_DFU_GPIO is not set
    # CONFIG_ZEPHYR_TRY_MASS_ERASE is not set
    # CONFIG_BOOT_USE_BENCH is not set
    # CONFIG_MCUBOOT_LOG_LEVEL_OFF is not set
    # CONFIG_MCUBOOT_LOG_LEVEL_ERR is not set
    # CONFIG_MCUBOOT_LOG_LEVEL_WRN is not set
    # CONFIG_MCUBOOT_LOG_LEVEL_INF is not set
    # CONFIG_MCUBOOT_LOG_LEVEL_DBG is not set
    CONFIG_MCUBOOT_LOG_LEVEL_DEFAULT=y
    CONFIG_MCUBOOT_LOG_LEVEL=0
    CONFIG_MCUBOOT_LOG_THREAD_STACK_SIZE=768
    # CONFIG_MCUBOOT_INDICATION_LED is not set
    # CONFIG_MCUBOOT_SERIAL is not set
    # CONFIG_BOOT_INTR_VEC_RELOC is not set
    CONFIG_UPDATEABLE_IMAGE_NUMBER=1
    CONFIG_BOOT_WATCHDOG_FEED=y
    # CONFIG_MCUBOOT_ACTION_HOOKS is not set
    # end of MCUBoot settings
    
    CONFIG_MCUBOOT_DEVICE_SETTINGS=y
    
    #
    # Zephyr configuration options
    #
    # CONFIG_MULTITHREADING is not set
    CONFIG_USB_DEVICE_PRODUCT="MCUBOOT"
    CONFIG_GPIO=y
    # CONFIG_KSCAN is not set
    # CONFIG_INPUT is not set
    # CONFIG_WIFI is not set
    CONFIG_SPI=y
    CONFIG_GPIO_INIT_PRIORITY=40
    # CONFIG_UHC_DRIVER is not set
    # CONFIG_REGULATOR is not set
    # CONFIG_SENSOR is not set
    # CONFIG_WATCHDOG is not set
    # CONFIG_MODEM is not set
    # CONFIG_DISPLAY is not set
    # CONFIG_I2C is not set
    CONFIG_BOARD="carl_sensor"
    CONFIG_SOC="nRF52833_QIAA"
    CONFIG_SOC_SERIES="nrf52"
    CONFIG_NUM_IRQS=48
    CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=32768
    CONFIG_CLOCK_CONTROL_INIT_PRIORITY=30
    CONFIG_FLASH_SIZE=512
    CONFIG_FLASH_BASE_ADDRESS=0x0
    CONFIG_ICACHE_LINE_SIZE=32
    CONFIG_DCACHE_LINE_SIZE=32
    CONFIG_HEAP_MEM_POOL_SIZE=0
    CONFIG_ROM_START_OFFSET=0
    CONFIG_PINCTRL=y
    CONFIG_CLOCK_CONTROL=y
    # CONFIG_RESET is not set
    CONFIG_SOC_HAS_TIMING_FUNCTIONS=y
    CONFIG_ARCH_HAS_CUSTOM_BUSY_WAIT=y
    # CONFIG_PM is not set
    # CONFIG_PM_DEVICE is not set
    CONFIG_LOG_DOMAIN_NAME=""
    CONFIG_NRF_RTC_TIMER=y
    CONFIG_SYS_CLOCK_TICKS_PER_SEC=32768
    CONFIG_BUILD_OUTPUT_HEX=y
    # CONFIG_FPU is not set
    CONFIG_MBEDTLS=y
    # CONFIG_MEMC is not set
    # CONFIG_CODE_DATA_RELOCATION is not set
    # CONFIG_CPU_HAS_CUSTOM_FIXED_SOC_MPU_REGIONS is not set
    # CONFIG_TINYCRYPT is not set
    # CONFIG_SERIAL is not set
    CONFIG_MAIN_STACK_SIZE=10240
    # CONFIG_SRAM_VECTOR_TABLE is not set
    CONFIG_MP_MAX_NUM_CPUS=1
    CONFIG_PLATFORM_SPECIFIC_INIT=y
    CONFIG_HAS_DTS=y
    
    #
    # Devicetree Info
    #
    CONFIG_DT_HAS_ADI_ADXRS649_ENABLED=y
    CONFIG_DT_HAS_ARM_ARMV7M_ITM_ENABLED=y
    CONFIG_DT_HAS_ARM_CORTEX_M4F_ENABLED=y
    CONFIG_DT_HAS_ARM_V7M_NVIC_ENABLED=y
    CONFIG_DT_HAS_ATMEL_AT25_ENABLED=y
    CONFIG_DT_HAS_GPIO_KEYS_ENABLED=y
    CONFIG_DT_HAS_GPIO_LEDS_ENABLED=y
    CONFIG_DT_HAS_JEDEC_SPI_NOR_ENABLED=y
    CONFIG_DT_HAS_MICROCRYSTAL_RV3028_ENABLED=y
    CONFIG_DT_HAS_MMIO_SRAM_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_ACL_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_CCM_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_CLOCK_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_ECB_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_EGU_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_FICR_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_GPIO_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_GPIOTE_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_GPREGRET_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_MWU_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_NFCT_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_PINCTRL_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_POWER_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_PPI_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_PWM_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_RADIO_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_RNG_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_SPI_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_SWI_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_TEMP_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_UARTE_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_UICR_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF_WDT_ENABLED=y
    CONFIG_DT_HAS_NORDIC_NRF52_FLASH_CONTROLLER_ENABLED=y
    CONFIG_DT_HAS_PWM_LEDS_ENABLED=y
    CONFIG_DT_HAS_SOC_NV_FLASH_ENABLED=y
    CONFIG_DT_HAS_TI_ADS1219_ENABLED=y
    CONFIG_DT_HAS_ZEPHYR_BT_HCI_ENTROPY_ENABLED=y
    # end of Devicetree Info
    
    #
    # Modules
    #
    
    #
    # Available modules.
    #
    
    #
    # nrf (C:/Users/sw2.KRAFFT/ncs/nrf)
    #
    CONFIG_NUM_METAIRQ_PRIORITIES=0
    CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=1024
    # CONFIG_INIT_STACKS is not set
    
    #
    # Nordic nRF Connect
    #
    CONFIG_WARN_EXPERIMENTAL=y
    CONFIG_PRIVILEGED_STACK_SIZE=1024
    # CONFIG_ENTROPY_GENERATOR is not set
    CONFIG_INIT_ARCH_HW_AT_BOOT=y
    CONFIG_NORDIC_QSPI_NOR_FLASH_LAYOUT_PAGE_SIZE=4096
    # CONFIG_GETOPT is not set
    # CONFIG_NCS_SAMPLES_DEFAULTS is not set
    
    #
    # Image build variants
    #
    CONFIG_NCS_MCUBOOT_IN_BUILD=y
    # end of Image build variants
    
    #
    # Bootloader
    #
    # CONFIG_BUILD_S1_VARIANT is not set
    # CONFIG_SECURE_BOOT is not set
    CONFIG_PM_PARTITION_SIZE_PROVISION=0x1000
    # CONFIG_B0_MIN_PARTITION_SIZE is not set
    CONFIG_PM_PARTITION_SIZE_B0_IMAGE=0x7000
    # CONFIG_SECURE_BOOT_CRYPTO is not set
    
    #
    # Secure Boot firmware validation
    #
    CONFIG_SB_VALIDATION_INFO_MAGIC=0x86518483
    CONFIG_SB_VALIDATION_POINTER_MAGIC=0x6919b47e
    CONFIG_SB_VALIDATION_INFO_CRYPTO_ID=1
    CONFIG_SB_VALIDATION_INFO_VERSION=2
    CONFIG_SB_VALIDATION_METADATA_OFFSET=0
    CONFIG_SB_VALIDATE_FW_SIGNATURE=y
    # end of Secure Boot firmware validation
    # end of Bootloader
    
    #
    # Bluetooth Low Energy
    #
    
    #
    # BLE over nRF RPC
    #
    # end of BLE over nRF RPC
    # end of Bluetooth Low Energy
    
    #
    # DFU
    #
    # CONFIG_DFU_MULTI_IMAGE is not set
    # CONFIG_DFU_TARGET is not set
    # end of DFU
    
    # CONFIG_ESB is not set
    # CONFIG_ESB_LOG_LEVEL_OFF is not set
    # CONFIG_ESB_LOG_LEVEL_ERR is not set
    # CONFIG_ESB_LOG_LEVEL_WRN is not set
    # CONFIG_ESB_LOG_LEVEL_INF is not set
    # CONFIG_ESB_LOG_LEVEL_DBG is not set
    CONFIG_ESB_LOG_LEVEL_DEFAULT=y
    CONFIG_ESB_LOG_LEVEL=0
    # CONFIG_EMDS is not set
    
    #
    # Peripheral CPU DFU (PCD)
    #
    # CONFIG_PCD is not set
    # CONFIG_PCD_APP is not set
    # CONFIG_PCD_NET is not set
    # end of Peripheral CPU DFU (PCD)
    
    #
    # Networking
    #
    
    #
    # Application protocols
    #
    
    #
    # nRF Cloud
    #
    
    #
    # Client ID (nRF Cloud Device ID)
    #
    CONFIG_NRF_CLOUD_CLIENT_ID_SRC_COMPILE_TIME=y
    CONFIG_NRF_CLOUD_CLIENT_ID="my-client-id"
    # end of Client ID (nRF Cloud Device ID)
    
    # CONFIG_NRF_CLOUD_MQTT is not set
    # CONFIG_NRF_CLOUD_FOTA is not set
    # CONFIG_NRF_CLOUD_FOTA_FULL_MODEM_UPDATE is not set
    # CONFIG_NRF_CLOUD_REST is not set
    # CONFIG_NRF_CLOUD_ALERT is not set
    # CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL_OFF is not set
    # CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL_ERR is not set
    # CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL_WRN is not set
    # CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL_INF is not set
    # CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL_DBG is not set
    CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL_DEFAULT=y
    CONFIG_NRF_CLOUD_ALERT_LOG_LEVEL=0
    CONFIG_NRF_CLOUD_LOG_OUTPUT_LEVEL=1
    CONFIG_NRF_CLOUD_LOG_BUF_SIZE=256
    # CONFIG_NRF_CLOUD_LOG_LOG_LEVEL_OFF is not set
    # CONFIG_NRF_CLOUD_LOG_LOG_LEVEL_ERR is not set
    # CONFIG_NRF_CLOUD_LOG_LOG_LEVEL_WRN is not set
    # CONFIG_NRF_CLOUD_LOG_LOG_LEVEL_INF is not set
    # CONFIG_NRF_CLOUD_LOG_LOG_LEVEL_DBG is not set
    CONFIG_NRF_CLOUD_LOG_LOG_LEVEL_DEFAULT=y
    CONFIG_NRF_CLOUD_LOG_LOG_LEVEL=0
    # CONFIG_NRF_CLOUD_GATEWAY is not set
    # CONFIG_NRF_CLOUD_LOG_LEVEL_OFF is not set
    # CONFIG_NRF_CLOUD_LOG_LEVEL_ERR is not set
    # CONFIG_NRF_CLOUD_LOG_LEVEL_WRN is not set
    # CONFIG_NRF_CLOUD_LOG_LEVEL_INF is not set
    # CONFIG_NRF_CLOUD_LOG_LEVEL_DBG is not set
    CONFIG_NRF_CLOUD_LOG_LEVEL_DEFAULT=y
    CONFIG_NRF_CLOUD_LOG_LEVEL=0
    # end of nRF Cloud
    
    # CONFIG_REST_CLIENT is not set
    # CONFIG_DOWNLOAD_CLIENT is not set
    # CONFIG_AWS_IOT is not set
    # CONFIG_AWS_JOBS is not set
    # CONFIG_AZURE_IOT_HUB is not set
    
    #
    # Self-Registration (Zi ZHu Ce)
    #
    # end of Self-Registration (Zi ZHu Ce)
    
    # CONFIG_ICAL_PARSER is not set
    # CONFIG_FTP_CLIENT is not set
    # CONFIG_LWM2M_CLIENT_UTILS is not set
    # CONFIG_WIFI_CREDENTIALS is not set
    # CONFIG_WIFI_CREDENTIALS_STATIC is not set
    # CONFIG_MQTT_HELPER is not set
    # end of Application protocols
    # end of Networking
    
    #
    # NFC
    #
    # CONFIG_NFC_NDEF is not set
    # CONFIG_NFC_NDEF_PARSER is not set
    # CONFIG_NFC_NDEF_PAYLOAD_TYPE_COMMON is not set
    # CONFIG_NFC_T2T_PARSER is not set
    # CONFIG_NFC_T4T_NDEF_FILE is not set
    # CONFIG_NFC_T4T_ISODEP is not set
    # CONFIG_NFC_T4T_APDU is not set
    # CONFIG_NFC_T4T_CC_FILE is not set
    # CONFIG_NFC_T4T_HL_PROCEDURE is not set
    # CONFIG_NFC_PLATFORM is not set
    # CONFIG_NFC_TNEP_TAG is not set
    # CONFIG_NFC_TNEP_POLLER is not set
    # CONFIG_NFC_TNEP_CH is not set
    # end of NFC
    
    # CONFIG_APP_EVENT_MANAGER is not set
    # CONFIG_NRF_PROFILER is not set
    # CONFIG_FW_INFO is not set
    
    #
    # Debug
    #
    # CONFIG_CPU_LOAD is not set
    # CONFIG_PPI_TRACE is not set
    # end of Debug
    
    # CONFIG_MPSL_FEM_ONLY is not set
    # CONFIG_MPSL_FEM_DEVICE_CONFIG_254 is not set
    # CONFIG_MPSL_FEM_LOG_LEVEL_OFF is not set
    # CONFIG_MPSL_FEM_LOG_LEVEL_ERR is not set
    # CONFIG_MPSL_FEM_LOG_LEVEL_WRN is not set
    # CONFIG_MPSL_FEM_LOG_LEVEL_INF is not set
    # CONFIG_MPSL_FEM_LOG_LEVEL_DBG is not set
    CONFIG_MPSL_FEM_LOG_LEVEL_DEFAULT=y
    CONFIG_MPSL_FEM_LOG_LEVEL=0
    CONFIG_MPSL_THREAD_COOP_PRIO=8
    CONFIG_MPSL_WORK_STACK_SIZE=1024
    CONFIG_MPSL_TIMESLOT_SESSION_COUNT=0
    # CONFIG_MPSL_ASSERT_HANDLER is not set
    # CONFIG_MPSL_LOG_LEVEL_OFF is not set
    # CONFIG_MPSL_LOG_LEVEL_ERR is not set
    # CONFIG_MPSL_LOG_LEVEL_WRN is not set
    # CONFIG_MPSL_LOG_LEVEL_INF is not set
    # CONFIG_MPSL_LOG_LEVEL_DBG is not set
    CONFIG_MPSL_LOG_LEVEL_DEFAULT=y
    CONFIG_MPSL_LOG_LEVEL=0
    
    #
    # Partition Manager
    #
    CONFIG_PARTITION_MANAGER_ENABLED=y
    CONFIG_FLASH_MAP_CUSTOM=y
    CONFIG_SRAM_SIZE=128
    CONFIG_SRAM_BASE_ADDRESS=0x20000000
    
    #
    # Zephyr subsystem configurations
    #
    # end of Zephyr subsystem configurations
    
    #
    # NCS subsystem configurations
    #
    # CONFIG_PM_SINGLE_IMAGE is not set
    CONFIG_PM_EXTERNAL_FLASH_HAS_DRIVER=y
    CONFIG_PM_EXTERNAL_FLASH_BASE=0
    CONFIG_PM_EXTERNAL_FLASH_MCUBOOT_SECONDARY=y
    # CONFIG_PM_OVERRIDE_EXTERNAL_DRIVER_CHECK is not set
    CONFIG_PM_SRAM_BASE=0x20000000
    CONFIG_PM_SRAM_SIZE=0x20000
    # end of Partition Manager
    
    #
    # nRF RPC (Remote Procedure Call) library
    #
    # end of nRF RPC (Remote Procedure Call) library
    
    # CONFIG_ZIGBEE is not set
    
    #
    # Full Modem Firmware Update Management(FMFU)
    #
    # CONFIG_MGMT_FMFU_LOG_LEVEL_OFF is not set
    # CONFIG_MGMT_FMFU_LOG_LEVEL_ERR is not set
    # CONFIG_MGMT_FMFU_LOG_LEVEL_WRN is not set
    # CONFIG_MGMT_FMFU_LOG_LEVEL_INF is not set
    # CONFIG_MGMT_FMFU_LOG_LEVEL_DBG is not set
    CONFIG_MGMT_FMFU_LOG_LEVEL_DEFAULT=y
    CONFIG_MGMT_FMFU_LOG_LEVEL=0
    # end of Full Modem Firmware Update Management(FMFU)
    
    # CONFIG_CAF is not set
    
    #
    # Nordic IEEE 802.15.4
    #
    # end of Nordic IEEE 802.15.4
    
    # CONFIG_DM_MODULE is not set
    
    #
    # TF-M SPM component configs
    #
    CONFIG_TFM_CONN_HANDLE_MAX_NUM=8
    # end of TF-M SPM component configs
    
    #
    # Libraries
    #
    
    #
    # Binary libraries
    #
    # end of Binary libraries
    
    # CONFIG_ADP536X is not set
    # CONFIG_AT_MONITOR is not set
    # CONFIG_DISABLE_FLASH_PATCH is not set
    CONFIG_FLASH_PATCH_WARN=y
    # CONFIG_LTE_LINK_CONTROL is not set
    CONFIG_NRF_ACL_FLASH_REGION_SIZE=0x1000
    CONFIG_FPROTECT_BLOCK_SIZE=0x1000
    CONFIG_FPROTECT=y
    # CONFIG_FPROTECT_APP is not set
    # CONFIG_AT_CMD_CUSTOM is not set
    # CONFIG_DK_LIBRARY is not set
    # CONFIG_MODEM_INFO is not set
    CONFIG_RESET_ON_FATAL_ERROR=y
    # CONFIG_FATAL_ERROR_LOG_LEVEL_OFF is not set
    # CONFIG_FATAL_ERROR_LOG_LEVEL_ERR is not set
    # CONFIG_FATAL_ERROR_LOG_LEVEL_WRN is not set
    # CONFIG_FATAL_ERROR_LOG_LEVEL_INF is not set
    # CONFIG_FATAL_ERROR_LOG_LEVEL_DBG is not set
    CONFIG_FATAL_ERROR_LOG_LEVEL_DEFAULT=y
    CONFIG_FATAL_ERROR_LOG_LEVEL=0
    # CONFIG_SMS is not set
    # CONFIG_SUPL_CLIENT_LIB is not set
    # CONFIG_DATE_TIME is not set
    # CONFIG_HW_ID_LIBRARY is not set
    # CONFIG_RAM_POWER_DOWN_LIBRARY is not set
    # CONFIG_WAVE_GEN_LIB is not set
    CONFIG_HW_UNIQUE_KEY_PARTITION_SIZE=0x1000
    # CONFIG_MODEM_JWT is not set
    # CONFIG_QOS is not set
    # CONFIG_SFLOAT is not set
    # CONFIG_CONTIN_ARRAY is not set
    # CONFIG_PCM_MIX is not set
    # CONFIG_TONE is not set
    # CONFIG_PSCM is not set
    # CONFIG_DATA_FIFO is not set
    # CONFIG_FEM_AL_LIB is not set
    # end of Libraries
    
    #
    # Device Drivers
    #
    # CONFIG_BT_DRIVER_QUIRK_NO_AUTO_DLE is not set
    # CONFIG_ETH_RTT is not set
    # CONFIG_NRF_SW_LPUART is not set
    CONFIG_NRFX_GPIOTE_NUM_OF_EVT_HANDLERS=1
    # end of Device Drivers
    
    #
    # External libraries
    #
    # end of External libraries
    
    #
    # Test
    #
    CONFIG_ZTEST_MULTICORE_DEFAULT_SETTINGS=y
    # CONFIG_UNITY is not set
    
    #
    # Mocks
    #
    # CONFIG_MOCK_NRF_MODEM_AT is not set
    # end of Mocks
    # end of Test
    # end of Nordic nRF Connect
    
    CONFIG_ZEPHYR_NRF_MODULE=y
    # end of nrf (C:/Users/sw2.KRAFFT/ncs/nrf)
    
    #
    # hostap (C:/Users/sw2.KRAFFT/ncs/modules/lib/hostap)
    #
    CONFIG_POSIX_MAX_FDS=4
    CONFIG_ZEPHYR_HOSTAP_MODULE=y
    # end of hostap (C:/Users/sw2.KRAFFT/ncs/modules/lib/hostap)
    
    #
    # mcuboot (C:/Users/sw2.KRAFFT/ncs/bootloader/mcuboot)
    #
    
    #
    # MCUboot
    #
    CONFIG_SIGN_IMAGES=y
    CONFIG_DT_FLASH_WRITE_BLOCK_SIZE=4
    # end of MCUboot
    
    CONFIG_ZEPHYR_MCUBOOT_MODULE=y
    # end of mcuboot (C:/Users/sw2.KRAFFT/ncs/bootloader/mcuboot)
    
    #
    # mbedtls (C:/Users/sw2.KRAFFT/ncs/modules/crypto/mbedtls)
    #
    CONFIG_ZEPHYR_MBEDTLS_MODULE=y
    CONFIG_MBEDTLS_BUILTIN=y
    # CONFIG_MBEDTLS_LIBRARY is not set
    # CONFIG_CUSTOM_MBEDTLS_CFG_FILE is not set
    CONFIG_MBEDTLS_SSL_MAX_CONTENT_LEN=1500
    # CONFIG_MBEDTLS_LOG_LEVEL_OFF is not set
    # CONFIG_MBEDTLS_LOG_LEVEL_ERR is not set
    # CONFIG_MBEDTLS_LOG_LEVEL_WRN is not set
    # CONFIG_MBEDTLS_LOG_LEVEL_INF is not set
    # CONFIG_MBEDTLS_LOG_LEVEL_DBG is not set
    CONFIG_MBEDTLS_LOG_LEVEL_DEFAULT=y
    CONFIG_MBEDTLS_LOG_LEVEL=0
    # CONFIG_MBEDTLS_DEBUG is not set
    # CONFIG_MBEDTLS_MEMORY_DEBUG is not set
    # CONFIG_MBEDTLS_TEST is not set
    # CONFIG_MBEDTLS_ENABLE_HEAP is not set
    # CONFIG_MBEDTLS_ZEPHYR_ENTROPY is not set
    CONFIG_APP_LINK_WITH_MBEDTLS=y
    
    #
    # PSA RNG support
    #
    CONFIG_PSA_WANT_GENERATE_RANDOM=y
    # CONFIG_PSA_WANT_ALG_CTR_DRBG is not set
    # CONFIG_PSA_WANT_ALG_HMAC_DRBG is not set
    # end of PSA RNG support
    
    CONFIG_PSA_HAS_KEY_SUPPORT=y
    CONFIG_PSA_WANT_KEY_TYPE_DERIVE=y
    CONFIG_PSA_WANT_KEY_TYPE_HMAC=y
    CONFIG_PSA_WANT_KEY_TYPE_AES=y
    CONFIG_PSA_WANT_KEY_TYPE_CHACHA20=y
    CONFIG_PSA_WANT_KEY_TYPE_ECC_KEY_PAIR=y
    CONFIG_PSA_WANT_KEY_TYPE_ECC_PUBLIC_KEY=y
    
    #
    # PSA AEAD support
    #
    CONFIG_PSA_HAS_AEAD_SUPPORT=y
    CONFIG_PSA_WANT_ALG_CCM=y
    CONFIG_PSA_WANT_ALG_GCM=y
    CONFIG_PSA_WANT_ALG_CHACHA20_POLY1305=y
    # end of PSA AEAD support
    
    #
    # PSA MAC support
    #
    CONFIG_PSA_HAS_MAC_SUPPORT=y
    CONFIG_PSA_WANT_ALG_CMAC=y
    CONFIG_PSA_WANT_ALG_HMAC=y
    # end of PSA MAC support
    
    #
    # PSA Hash support
    #
    CONFIG_PSA_HAS_HASH_SUPPORT=y
    CONFIG_PSA_WANT_ALG_SHA_1=y
    CONFIG_PSA_WANT_ALG_SHA_224=y
    CONFIG_PSA_WANT_ALG_SHA_256=y
    CONFIG_PSA_WANT_ALG_SHA_384=y
    CONFIG_PSA_WANT_ALG_SHA_512=y
    # CONFIG_PSA_WANT_ALG_RIPEMD160 is not set
    # CONFIG_PSA_WANT_ALG_MD5 is not set
    # end of PSA Hash support
    
    #
    # PSA Cipher support
    #
    CONFIG_PSA_HAS_CIPHER_SUPPORT=y
    CONFIG_PSA_WANT_ALG_ECB_NO_PADDING=y
    CONFIG_PSA_WANT_ALG_CBC_NO_PADDING=y
    CONFIG_PSA_WANT_ALG_CBC_PKCS7=y
    # CONFIG_PSA_WANT_ALG_CFB is not set
    CONFIG_PSA_WANT_ALG_CTR=y
    # CONFIG_PSA_WANT_ALG_OFB is not set
    # end of PSA Cipher support
    
    #
    # PSA Key derivation support
    #
    CONFIG_PSA_HAS_KEY_DERIVATION=y
    CONFIG_PSA_WANT_ALG_HKDF=y
    # CONFIG_PSA_WANT_ALG_TLS12_PRF is not set
    # CONFIG_PSA_WANT_ALG_TLS12_PSK_TO_MS is not set
    # end of PSA Key derivation support
    
    #
    # PSA Asymmetric support
    #
    CONFIG_PSA_HAS_ASYM_SIGN_SUPPORT=y
    CONFIG_PSA_HAS_ECC_SUPPORT=y
    CONFIG_PSA_WANT_ALG_ECDH=y
    CONFIG_PSA_WANT_ALG_ECDSA=y
    CONFIG_PSA_WANT_ALG_DETERMINISTIC_ECDSA=y
    
    #
    # Elliptic Curve type support
    #
    # CONFIG_PSA_WANT_ECC_BRAINPOOL_P_R1_256 is not set
    # CONFIG_PSA_WANT_ECC_BRAINPOOL_P_R1_384 is not set
    # CONFIG_PSA_WANT_ECC_BRAINPOOL_P_R1_512 is not set
    # CONFIG_PSA_WANT_ECC_MONTGOMERY_255 is not set
    # CONFIG_PSA_WANT_ECC_MONTGOMERY_448 is not set
    # CONFIG_PSA_WANT_ECC_TWISTED_EDWARDS_255 is not set
    # CONFIG_PSA_WANT_ECC_SECP_K1_192 is not set
    # CONFIG_PSA_WANT_ECC_SECP_K1_256 is not set
    # CONFIG_PSA_WANT_ECC_SECP_R1_192 is not set
    # CONFIG_PSA_WANT_ECC_SECP_R1_224 is not set
    CONFIG_PSA_WANT_ECC_SECP_R1_256=y
    # CONFIG_PSA_WANT_ECC_SECP_R1_384 is not set
    # CONFIG_PSA_WANT_ECC_SECP_R1_521 is not set
    # end of Elliptic Curve type support
    
    # CONFIG_PSA_WANT_ALG_RSA_OAEP is not set
    # CONFIG_PSA_WANT_ALG_RSA_PKCS1V15_CRYPT is not set
    # CONFIG_PSA_WANT_ALG_RSA_PKCS1V15_SIGN is not set
    # CONFIG_PSA_WANT_ALG_RSA_PSS is not set
    # end of PSA Asymmetric support
    
    CONFIG_PSA_WANT_ALG_STREAM_CIPHER=y
    # end of mbedtls (C:/Users/sw2.KRAFFT/ncs/modules/crypto/mbedtls)
    
    #
    # trusted-firmware-m (C:/Users/sw2.KRAFFT/ncs/modules/tee/tf-m/trusted-firmware-m)
    #
    CONFIG_ZEPHYR_TRUSTED_FIRMWARE_M_MODULE=y
    # end of trusted-firmware-m (C:/Users/sw2.KRAFFT/ncs/modules/tee/tf-m/trusted-firmware-m)
    
    #
    # cjson (C:/Users/sw2.KRAFFT/ncs/modules/lib/cjson)
    #
    CONFIG_ZEPHYR_CJSON_MODULE=y
    # end of cjson (C:/Users/sw2.KRAFFT/ncs/modules/lib/cjson)
    
    #
    # azure-sdk-for-c (C:/Users/sw2.KRAFFT/ncs/modules/lib/azure-sdk-for-c)
    #
    # CONFIG_AZURE_SDK is not set
    CONFIG_ZEPHYR_AZURE_SDK_FOR_C_MODULE=y
    # end of azure-sdk-for-c (C:/Users/sw2.KRAFFT/ncs/modules/lib/azure-sdk-for-c)
    
    #
    # cirrus-logic (C:/Users/sw2.KRAFFT/ncs/modules/hal/cirrus-logic)
    #
    # CONFIG_HW_CODEC_CIRRUS_LOGIC is not set
    CONFIG_ZEPHYR_CIRRUS_LOGIC_MODULE=y
    # end of cirrus-logic (C:/Users/sw2.KRAFFT/ncs/modules/hal/cirrus-logic)
    
    #
    # openthread (C:/Users/sw2.KRAFFT/ncs/modules/lib/openthread)
    #
    # CONFIG_OPENTHREAD is not set
    CONFIG_ZEPHYR_OPENTHREAD_MODULE=y
    # end of openthread (C:/Users/sw2.KRAFFT/ncs/modules/lib/openthread)
    
    #
    # memfault-firmware-sdk (C:/Users/sw2.KRAFFT/ncs/modules/lib/memfault-firmware-sdk)
    #
    # CONFIG_MEMFAULT is not set
    CONFIG_ZEPHYR_MEMFAULT_FIRMWARE_SDK_MODULE=y
    # end of memfault-firmware-sdk (C:/Users/sw2.KRAFFT/ncs/modules/lib/memfault-firmware-sdk)
    
    #
    # canopennode (C:/Users/sw2.KRAFFT/ncs/modules/lib/canopennode)
    #
    CONFIG_ZEPHYR_CANOPENNODE_MODULE=y
    # end of canopennode (C:/Users/sw2.KRAFFT/ncs/modules/lib/canopennode)
    
    #
    # chre (C:/Users/sw2.KRAFFT/ncs/modules/lib/chre)
    #
    CONFIG_ZEPHYR_CHRE_MODULE=y
    # CONFIG_CHRE is not set
    # end of chre (C:/Users/sw2.KRAFFT/ncs/modules/lib/chre)
    
    #
    # fatfs (C:/Users/sw2.KRAFFT/ncs/modules/fs/fatfs)
    #
    CONFIG_ZEPHYR_FATFS_MODULE=y
    # end of fatfs (C:/Users/sw2.KRAFFT/ncs/modules/fs/fatfs)
    
    #
    # hal_nordic (C:/Users/sw2.KRAFFT/ncs/modules/hal/nordic)
    #
    CONFIG_ZEPHYR_HAL_NORDIC_MODULE=y
    CONFIG_HAS_NORDIC_DRIVERS=y
    
    #
    # Nordic drivers
    #
    # CONFIG_NRF_802154_SOURCE_HAL_NORDIC is not set
    # CONFIG_NRF_802154_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 is not set
    # CONFIG_NRFX_COMP is not set
    # CONFIG_NRFX_EGU0 is not set
    # CONFIG_NRFX_EGU1 is not set
    # CONFIG_NRFX_EGU2 is not set
    # CONFIG_NRFX_EGU3 is not set
    # CONFIG_NRFX_EGU4 is not set
    # CONFIG_NRFX_EGU5 is not set
    CONFIG_NRFX_GPIOTE=y
    # CONFIG_NRFX_I2S is not set
    # CONFIG_NRFX_NFCT is not set
    CONFIG_NRFX_NVMC=y
    # CONFIG_NRFX_PDM is not set
    # CONFIG_NRFX_POWER is not set
    # CONFIG_NRFX_PPI is not set
    # CONFIG_NRFX_PWM0 is not set
    # CONFIG_NRFX_PWM1 is not set
    # CONFIG_NRFX_PWM2 is not set
    # CONFIG_NRFX_PWM3 is not set
    # CONFIG_NRFX_QDEC is not set
    # CONFIG_NRFX_RNG is not set
    # CONFIG_NRFX_RTC0 is not set
    # CONFIG_NRFX_RTC1 is not set
    # CONFIG_NRFX_RTC2 is not set
    # CONFIG_NRFX_SAADC is not set
    # CONFIG_NRFX_SPI1 is not set
    # CONFIG_NRFX_SPIM0 is not set
    # CONFIG_NRFX_SPIM2 is not set
    # CONFIG_NRFX_SPIM3 is not set
    # CONFIG_NRFX_SYSTICK is not set
    # CONFIG_NRFX_TEMP is not set
    # CONFIG_NRFX_TIMER0 is not set
    # CONFIG_NRFX_TIMER1 is not set
    # CONFIG_NRFX_TIMER2 is not set
    # CONFIG_NRFX_TIMER3 is not set
    # CONFIG_NRFX_TIMER4 is not set
    # CONFIG_NRFX_TWI0 is not set
    # CONFIG_NRFX_TWIM1 is not set
    # CONFIG_NRFX_UARTE0 is not set
    # CONFIG_NRFX_UARTE1 is not set
    # CONFIG_NRFX_USBD is not set
    CONFIG_NRFX_WDT=y
    CONFIG_NRFX_WDT0=y
    
    #
    # Peripheral Resource Sharing module
    #
    # CONFIG_NRFX_PRS_BOX_0 is not set
    # CONFIG_NRFX_PRS_BOX_1 is not set
    # CONFIG_NRFX_PRS_BOX_2 is not set
    # CONFIG_NRFX_PRS_BOX_3 is not set
    # CONFIG_NRFX_PRS_BOX_4 is not set
    # end of Peripheral Resource Sharing module
    # end of nrfx drivers
    # end of hal_nordic (C:/Users/sw2.KRAFFT/ncs/modules/hal/nordic)
    
    #
    # liblc3 (C:/Users/sw2.KRAFFT/ncs/modules/lib/liblc3)
    #
    CONFIG_ZEPHYR_LIBLC3_MODULE=y
    # end of liblc3 (C:/Users/sw2.KRAFFT/ncs/modules/lib/liblc3)
    
    #
    # littlefs (C:/Users/sw2.KRAFFT/ncs/modules/fs/littlefs)
    #
    CONFIG_ZEPHYR_LITTLEFS_MODULE=y
    # end of littlefs (C:/Users/sw2.KRAFFT/ncs/modules/fs/littlefs)
    
    #
    # loramac-node (C:/Users/sw2.KRAFFT/ncs/modules/lib/loramac-node)
    #
    CONFIG_ZEPHYR_LORAMAC_NODE_MODULE=y
    # CONFIG_HAS_SEMTECH_RADIO_DRIVERS is not set
    # end of loramac-node (C:/Users/sw2.KRAFFT/ncs/modules/lib/loramac-node)
    
    #
    # lvgl (C:/Users/sw2.KRAFFT/ncs/modules/lib/gui/lvgl)
    #
    CONFIG_ZEPHYR_LVGL_MODULE=y
    # end of lvgl (C:/Users/sw2.KRAFFT/ncs/modules/lib/gui/lvgl)
    
    #
    # lz4 (C:/Users/sw2.KRAFFT/ncs/modules/lib/lz4)
    #
    CONFIG_ZEPHYR_LZ4_MODULE=y
    # CONFIG_LZ4 is not set
    # end of lz4 (C:/Users/sw2.KRAFFT/ncs/modules/lib/lz4)
    
    #
    # nanopb (C:/Users/sw2.KRAFFT/ncs/modules/lib/nanopb)
    #
    CONFIG_ZEPHYR_NANOPB_MODULE=y
    # CONFIG_NANOPB is not set
    # end of nanopb (C:/Users/sw2.KRAFFT/ncs/modules/lib/nanopb)
    
    #
    # picolibc (C:/Users/sw2.KRAFFT/ncs/modules/lib/picolibc)
    #
    # CONFIG_PICOLIBC_MODULE is not set
    CONFIG_ZEPHYR_PICOLIBC_MODULE=y
    # end of picolibc (C:/Users/sw2.KRAFFT/ncs/modules/lib/picolibc)
    
    #
    # segger (C:/Users/sw2.KRAFFT/ncs/modules/debug/segger)
    #
    CONFIG_ZEPHYR_SEGGER_MODULE=y
    CONFIG_HAS_SEGGER_RTT=y
    # CONFIG_USE_SEGGER_RTT is not set
    # end of segger (C:/Users/sw2.KRAFFT/ncs/modules/debug/segger)
    
    #
    # TraceRecorder (C:/Users/sw2.KRAFFT/ncs/modules/debug/TraceRecorder)
    #
    CONFIG_ZEPHYR_TRACERECORDER_MODULE=y
    # end of TraceRecorder (C:/Users/sw2.KRAFFT/ncs/modules/debug/TraceRecorder)
    
    #
    # uoscore-uedhoc (C:/Users/sw2.KRAFFT/ncs/modules/lib/uoscore-uedhoc)
    #
    CONFIG_ZEPHYR_UOSCORE_UEDHOC_MODULE=y
    # end of uoscore-uedhoc (C:/Users/sw2.KRAFFT/ncs/modules/lib/uoscore-uedhoc)
    
    #
    # zcbor (C:/Users/sw2.KRAFFT/ncs/modules/lib/zcbor)
    #
    CONFIG_ZEPHYR_ZCBOR_MODULE=y
    # CONFIG_ZCBOR is not set
    # end of zcbor (C:/Users/sw2.KRAFFT/ncs/modules/lib/zcbor)
    
    #
    # zscilib (C:/Users/sw2.KRAFFT/ncs/modules/lib/zscilib)
    #
    # CONFIG_ZSL is not set
    CONFIG_ZEPHYR_ZSCILIB_MODULE=y
    # end of zscilib (C:/Users/sw2.KRAFFT/ncs/modules/lib/zscilib)
    
    #
    # bliss (D:/GitLab/carl-ble-sensor-firmware/deps/bliss)
    #
    # CONFIG_BLISS is not set
    CONFIG_ZEPHYR_BLISS_MODULE=y
    # end of bliss (D:/GitLab/carl-ble-sensor-firmware/deps/bliss)
    
    #
    # qpcpp (D:/GitLab/carl-ble-sensor-firmware/deps/qpcpp)
    #
    # CONFIG_QPCPP is not set
    CONFIG_ZEPHYR_QPCPP_MODULE=y
    # end of qpcpp (D:/GitLab/carl-ble-sensor-firmware/deps/qpcpp)
    
    #
    # phyphox_ble (D:/GitLab/carl-ble-sensor-firmware/deps/zephyr_phyphox-ble)
    #
    # CONFIG_PHYPHOX_BLE is not set
    CONFIG_ZEPHYR_PHYPHOX_BLE_MODULE=y
    # end of phyphox_ble (D:/GitLab/carl-ble-sensor-firmware/deps/zephyr_phyphox-ble)
    
    #
    # ble_utils (D:/GitLab/carl-ble-sensor-firmware/deps/ble_utils)
    #
    # CONFIG_BLE_UTILS is not set
    CONFIG_ZEPHYR_BLE_UTILS_MODULE=y
    # end of ble_utils (D:/GitLab/carl-ble-sensor-firmware/deps/ble_utils)
    
    #
    # drivers (D:/GitLab/carl-ble-sensor-firmware/deps/drivers)
    #
    # CONFIG_ADC_ADS1219 is not set
    # CONFIG_ADXRS649 is not set
    # CONFIG_RTC_RV3028 is not set
    # CONFIG_CY15B104 is not set
    CONFIG_ZEPHYR_DRIVERS_MODULE=y
    # end of drivers (D:/GitLab/carl-ble-sensor-firmware/deps/drivers)
    
    #
    # nrfxlib (C:/Users/sw2.KRAFFT/ncs/nrfxlib)
    #
    
    #
    # Nordic nrfxlib
    #
    CONFIG_NRF_MODEM_SHMEM_CTRL_SIZE=0x4e8
    # CONFIG_NFC_T2T_NRFXLIB is not set
    # CONFIG_NFC_T4T_NRFXLIB is not set
    # CONFIG_MPSL is not set
    
    #
    # Crypto libraries for nRF5x SOCs.
    #
    # CONFIG_NRF_OBERON is not set
    # end of Crypto libraries for nRF5x SOCs.
    
    #
    # nrf_security module
    #
    # CONFIG_NORDIC_SECURITY_BACKEND is not set
    # CONFIG_NRF_SECURITY is not set
    # end of nrf_security module
    
    # CONFIG_NRF_RPC is not set
    CONFIG_NRF_802154_SOURCE_NRFXLIB=y
    # CONFIG_GZLL is not set
    # CONFIG_NRF_DM is not set
    # CONFIG_LC3_PLC_DISABLED is not set
    CONFIG_LC3_ENC_CHAN_MAX=1
    CONFIG_LC3_DEC_CHAN_MAX=1
    
    #
    # Encoder sample rates
    #
    CONFIG_LC3_ENC_SAMPLE_RATE_8KHZ_SUPPORT=y
    CONFIG_LC3_ENC_SAMPLE_RATE_16KHZ_SUPPORT=y
    CONFIG_LC3_ENC_SAMPLE_RATE_24KHZ_SUPPORT=y
    CONFIG_LC3_ENC_SAMPLE_RATE_32KHZ_SUPPORT=y
    CONFIG_LC3_ENC_SAMPLE_RATE_441KHZ_SUPPORT=y
    CONFIG_LC3_ENC_SAMPLE_RATE_48KHZ_SUPPORT=y
    # end of Encoder sample rates
    
    #
    # Decoder sample rates
    #
    CONFIG_LC3_DEC_SAMPLE_RATE_8KHZ_SUPPORT=y
    CONFIG_LC3_DEC_SAMPLE_RATE_16KHZ_SUPPORT=y
    CONFIG_LC3_DEC_SAMPLE_RATE_24KHZ_SUPPORT=y
    CONFIG_LC3_DEC_SAMPLE_RATE_32KHZ_SUPPORT=y
    CONFIG_LC3_DEC_SAMPLE_RATE_441KHZ_SUPPORT=y
    CONFIG_LC3_DEC_SAMPLE_RATE_48KHZ_SUPPORT=y
    # end of Decoder sample rates
    
    # CONFIG_NRF_FUEL_GAUGE is not set
    # end of Nordic nrfxlib
    
    CONFIG_ZEPHYR_NRFXLIB_MODULE=y
    # end of nrfxlib (C:/Users/sw2.KRAFFT/ncs/nrfxlib)
    
    #
    # connectedhomeip (C:/Users/sw2.KRAFFT/ncs/modules/lib/matter)
    #
    # CONFIG_CHIP is not set
    # CONFIG_CHIP_LOG_SIZE_OPTIMIZATION is not set
    CONFIG_ZEPHYR_CONNECTEDHOMEIP_MODULE=y
    # end of connectedhomeip (C:/Users/sw2.KRAFFT/ncs/modules/lib/matter)
    
    #
    # Optional modules. Make sure they're installed, via the project manifest.
    #
    CONFIG_HAS_CMSIS_CORE=y
    CONFIG_HAS_CMSIS_CORE_M=y
    # CONFIG_CMSIS_DSP is not set
    # CONFIG_CMSIS_NN is not set
    # CONFIG_LIBMETAL is not set
    # CONFIG_LVGL is not set
    # CONFIG_HAS_MEC_HAL is not set
    # CONFIG_HAS_MPFS_HAL is not set
    # CONFIG_OPENAMP is not set
    # CONFIG_SOF is not set
    # CONFIG_MIPI_SYST_LIB is not set
    # CONFIG_HAS_TELINK_DRIVERS is not set
    CONFIG_MCUBOOT_BOOTUTIL_LIB=y
    
    #
    # Unavailable modules, please install those via the project manifest.
    #
    
    #
    # hal_gigadevice module not available.
    #
    
    #
    # Trusted-firmware-a module not available.
    #
    
    #
    # THRIFT module not available.
    #
    # end of Modules
    
    CONFIG_BOARD_REVISION="$BOARD_REVISION"
    # CONFIG_NET_DRIVERS is not set
    CONFIG_BOARD_CARL_SENSOR=y
    
    #
    # Board Options
    #
    CONFIG_BOARD_ENABLE_DCDC=y
    # end of Board Options
    
    # CONFIG_SOC_SERIES_BEETLE is not set
    # CONFIG_SOC_SERIES_ARM_DESIGNSTART is not set
    # CONFIG_SOC_SERIES_FVP_AEMV8R_AARCH32 is not set
    # CONFIG_SOC_SERIES_MPS2 is not set
    # CONFIG_SOC_SERIES_MPS3 is not set
    # CONFIG_SOC_SERIES_MUSCA_B1 is not set
    # CONFIG_SOC_SERIES_MUSCA_S1 is not set
    # CONFIG_SOC_SERIES_AST10X0 is not set
    # CONFIG_SOC_SERIES_SAMC20 is not set
    # CONFIG_SOC_SERIES_SAMC21 is not set
    # CONFIG_SOC_SERIES_SAMD20 is not set
    # CONFIG_SOC_SERIES_SAMD21 is not set
    # CONFIG_SOC_SERIES_SAMD51 is not set
    # CONFIG_SOC_SERIES_SAME51 is not set
    # CONFIG_SOC_SERIES_SAME53 is not set
    # CONFIG_SOC_SERIES_SAME54 is not set
    # CONFIG_SOC_SERIES_SAML21 is not set
    # CONFIG_SOC_SERIES_SAMR21 is not set
    # CONFIG_SOC_SERIES_SAMR34 is not set
    # CONFIG_SOC_SERIES_SAMR35 is not set
    # CONFIG_SOC_SERIES_SAM3X is not set
    # CONFIG_SOC_SERIES_SAM4E is not set
    # CONFIG_SOC_SERIES_SAM4L is not set
    # CONFIG_SOC_SERIES_SAM4S is not set
    # CONFIG_SOC_SERIES_SAME70 is not set
    # CONFIG_SOC_SERIES_SAMV71 is not set
    # CONFIG_SOC_SERIES_VALKYRIE is not set
    # CONFIG_SOC_SERIES_VIPER is not set
    # CONFIG_SOC_SERIES_PSOC62 is not set
    # CONFIG_SOC_SERIES_PSOC63 is not set
    # CONFIG_SOC_SERIES_GD32A50X is not set
    # CONFIG_SOC_SERIES_GD32E10X is not set
    # CONFIG_SOC_SERIES_GD32E50X is not set
    # CONFIG_SOC_SERIES_GD32F3X0 is not set
    # CONFIG_SOC_SERIES_GD32F403 is not set
    # CONFIG_SOC_SERIES_GD32F4XX is not set
    # CONFIG_SOC_SERIES_GD32L23X is not set
    # CONFIG_SOC_SERIES_PSOC_60 is not set
    # CONFIG_SOC_SERIES_PSOC_61 is not set
    # CONFIG_SOC_SERIES_PSOC_62 is not set
    # CONFIG_SOC_SERIES_PSOC_63 is not set
    # CONFIG_SOC_SERIES_PSOC_64 is not set
    # CONFIG_SOC_SERIES_XMC_4XXX is not set
    # CONFIG_SOC_SERIES_CYCLONE5 is not set
    # CONFIG_SOC_SERIES_MEC1501X is not set
    # CONFIG_SOC_SERIES_MEC1701X is not set
    # CONFIG_SOC_SERIES_MEC172X is not set
    # CONFIG_SOC_SERIES_NRF51X is not set
    CONFIG_SOC_SERIES_NRF52X=y
    # CONFIG_SOC_SERIES_NRF53X is not set
    # CONFIG_SOC_SERIES_NRF91X is not set
    # CONFIG_SOC_SERIES_NPCX7 is not set
    # CONFIG_SOC_SERIES_NPCX9 is not set
    # CONFIG_SOC_SERIES_M48X is not set
    # CONFIG_SOC_SERIES_IMX_6X_M4 is not set
    # CONFIG_SOC_SERIES_IMX7_M4 is not set
    # CONFIG_SOC_SERIES_IMX8ML_M7 is not set
    # CONFIG_SOC_SERIES_IMX8MM_M4 is not set
    # CONFIG_SOC_SERIES_IMX8MQ_M4 is not set
    # CONFIG_SOC_SERIES_IMX_RT5XX is not set
    # CONFIG_SOC_SERIES_IMX_RT6XX is not set
    # CONFIG_SOC_SERIES_IMX_RT is not set
    # CONFIG_SOC_SERIES_KINETIS_K2X is not set
    # CONFIG_SOC_SERIES_KINETIS_K6X is not set
    # CONFIG_SOC_SERIES_KINETIS_K8X is not set
    # CONFIG_SOC_SERIES_KINETIS_KE1XF is not set
    # CONFIG_SOC_SERIES_KINETIS_KL2X is not set
    # CONFIG_SOC_SERIES_KINETIS_KV5X is not set
    # CONFIG_SOC_SERIES_KINETIS_KWX is not set
    # CONFIG_SOC_SERIES_LPC11U6X is not set
    # CONFIG_SOC_SERIES_LPC51U68 is not set
    # CONFIG_SOC_SERIES_LPC54XXX is not set
    # CONFIG_SOC_SERIES_LPC55XXX is not set
    # CONFIG_SOC_SERIES_S32ZE_R52 is not set
    # CONFIG_SOC_EOS_S3 is not set
    # CONFIG_SOC_SERIES_RCAR_GEN3 is not set
    # CONFIG_SOC_SERIES_DA1469X is not set
    # CONFIG_SOC_SERIES_RP2XXX is not set
    # CONFIG_SOC_SERIES_EFM32GG11B is not set
    # CONFIG_SOC_SERIES_EFM32HG is not set
    # CONFIG_SOC_SERIES_EFM32JG12B is not set
    # CONFIG_SOC_SERIES_EFM32PG12B is not set
    # CONFIG_SOC_SERIES_EFM32PG1B is not set
    # CONFIG_SOC_SERIES_EFM32WG is not set
    # CONFIG_SOC_SERIES_EFR32BG13P is not set
    # CONFIG_SOC_SERIES_EFR32BG22 is not set
    # CONFIG_SOC_SERIES_EFR32FG13P is not set
    # CONFIG_SOC_SERIES_EFR32FG1P is not set
    # CONFIG_SOC_SERIES_EFR32MG12P is not set
    # CONFIG_SOC_SERIES_EFR32MG21 is not set
    # CONFIG_SOC_SERIES_EFR32MG24 is not set
    # CONFIG_SOC_SERIES_STM32C0X is not set
    # CONFIG_SOC_SERIES_STM32F0X is not set
    # CONFIG_SOC_SERIES_STM32F1X is not set
    # CONFIG_SOC_SERIES_STM32F2X is not set
    # CONFIG_SOC_SERIES_STM32F3X is not set
    # CONFIG_SOC_SERIES_STM32F4X is not set
    # CONFIG_SOC_SERIES_STM32F7X is not set
    # CONFIG_SOC_SERIES_STM32G0X is not set
    # CONFIG_SOC_SERIES_STM32G4X is not set
    # CONFIG_SOC_SERIES_STM32H5X is not set
    # CONFIG_SOC_SERIES_STM32H7X is not set
    # CONFIG_SOC_SERIES_STM32L0X is not set
    # CONFIG_SOC_SERIES_STM32L1X is not set
    # CONFIG_SOC_SERIES_STM32L4X is not set
    # CONFIG_SOC_SERIES_STM32L5X is not set
    # CONFIG_SOC_SERIES_STM32MP1X is not set
    # CONFIG_SOC_SERIES_STM32U5X is not set
    # CONFIG_SOC_SERIES_STM32WBX is not set
    # CONFIG_SOC_SERIES_STM32WLX is not set
    # CONFIG_SOC_TI_LM3S6965 is not set
    # CONFIG_SOC_SERIES_CC13X2_CC26X2 is not set
    # CONFIG_SOC_SERIES_CC13X2X7_CC26X2X7 is not set
    # CONFIG_SOC_SERIES_CC32XX is not set
    # CONFIG_SOC_SERIES_MSP432P4XX is not set
    # CONFIG_SOC_SERIES_XILINX_XC7ZXXX is not set
    # CONFIG_SOC_SERIES_XILINX_XC7ZXXXS is not set
    # CONFIG_SOC_XILINX_ZYNQMP_RPU is not set
    
    #
    # Hardware Configuration
    #
    CONFIG_CPU_HAS_ARM_MPU=y
    CONFIG_HAS_SWO=y
    CONFIG_SOC_FAMILY="nordic_nrf"
    CONFIG_SOC_FAMILY_NRF=y
    CONFIG_HAS_HW_NRF_ACL=y
    CONFIG_HAS_HW_NRF_CCM=y
    CONFIG_HAS_HW_NRF_CCM_LFLEN_8BIT=y
    CONFIG_HAS_HW_NRF_CLOCK=y
    CONFIG_HAS_HW_NRF_ECB=y
    CONFIG_HAS_HW_NRF_EGU0=y
    CONFIG_HAS_HW_NRF_EGU1=y
    CONFIG_HAS_HW_NRF_EGU2=y
    CONFIG_HAS_HW_NRF_EGU3=y
    CONFIG_HAS_HW_NRF_EGU4=y
    CONFIG_HAS_HW_NRF_EGU5=y
    CONFIG_HAS_HW_NRF_GPIO0=y
    CONFIG_HAS_HW_NRF_GPIO1=y
    CONFIG_HAS_HW_NRF_GPIOTE=y
    CONFIG_HAS_HW_NRF_MWU=y
    CONFIG_HAS_HW_NRF_NFCT=y
    CONFIG_HAS_HW_NRF_NVMC_PE=y
    CONFIG_HAS_HW_NRF_POWER=y
    CONFIG_HAS_HW_NRF_PPI=y
    CONFIG_HAS_HW_NRF_PWM0=y
    CONFIG_HAS_HW_NRF_RADIO_BLE_2M=y
    CONFIG_HAS_HW_NRF_RADIO_BLE_CODED=y
    CONFIG_HAS_HW_NRF_RADIO_DFE=y
    CONFIG_HAS_HW_NRF_RADIO_IEEE802154=y
    CONFIG_HAS_HW_NRF_RADIO_TX_PWR_HIGH=y
    CONFIG_HAS_HW_NRF_RNG=y
    CONFIG_HAS_HW_NRF_SPI1=y
    CONFIG_HAS_HW_NRF_SWI0=y
    CONFIG_HAS_HW_NRF_SWI1=y
    CONFIG_HAS_HW_NRF_SWI2=y
    CONFIG_HAS_HW_NRF_SWI3=y
    CONFIG_HAS_HW_NRF_SWI4=y
    CONFIG_HAS_HW_NRF_SWI5=y
    CONFIG_HAS_HW_NRF_TEMP=y
    CONFIG_HAS_HW_NRF_UARTE0=y
    CONFIG_HAS_HW_NRF_WDT0=y
    CONFIG_SOC_NRF52833=y
    # CONFIG_SOC_NRF52805_CAAA is not set
    # CONFIG_SOC_NRF52810_QFAA is not set
    # CONFIG_SOC_NRF52811_QFAA is not set
    # CONFIG_SOC_NRF52820_QDAA is not set
    # CONFIG_SOC_NRF52832_CIAA is not set
    # CONFIG_SOC_NRF52832_QFAA is not set
    # CONFIG_SOC_NRF52832_QFAB is not set
    CONFIG_SOC_NRF52833_QIAA=y
    # CONFIG_SOC_NRF52840_QIAA is not set
    CONFIG_SOC_DCDC_NRF52X=y
    CONFIG_GPIO_AS_PINRESET=y
    CONFIG_NRF_ENABLE_ICACHE=y
    CONFIG_NRF_RTC_TIMER_USER_CHAN_COUNT=0
    CONFIG_NRF_SOC_SECURE_SUPPORTED=y
    # CONFIG_NFCT_PINS_AS_GPIOS is not set
    CONFIG_NRF_APPROTECT_USE_UICR=y
    # CONFIG_NRF_APPROTECT_LOCK is not set
    # CONFIG_NRF_TRACE_PORT is not set
    # CONFIG_BUILD_OUTPUT_INFO_HEADER is not set
    # CONFIG_SOC_LOG_LEVEL_OFF is not set
    # CONFIG_SOC_LOG_LEVEL_ERR is not set
    # CONFIG_SOC_LOG_LEVEL_WRN is not set
    # CONFIG_SOC_LOG_LEVEL_INF is not set
    # CONFIG_SOC_LOG_LEVEL_DBG is not set
    CONFIG_SOC_LOG_LEVEL_DEFAULT=y
    CONFIG_SOC_LOG_LEVEL=0
    # end of Hardware Configuration
    
    CONFIG_SOC_COMPATIBLE_NRF=y
    CONFIG_SOC_COMPATIBLE_NRF52X=y
    CONFIG_SOC_COMPATIBLE_NRF52833=y
    
    #
    # ARM Options
    #
    CONFIG_ARCH="arm"
    CONFIG_CPU_CORTEX=y
    # CONFIG_CODE_DATA_RELOCATION_SRAM is not set
    CONFIG_CPU_CORTEX_M=y
    # CONFIG_ARM_ZIMAGE_HEADER is not set
    CONFIG_ISA_THUMB2=y
    CONFIG_ASSEMBLER_ISA_THUMB2=y
    CONFIG_COMPILER_ISA_THUMB2=y
    CONFIG_STACK_ALIGN_DOUBLE_WORD=y
    # CONFIG_RUNTIME_NMI is not set
    CONFIG_FAULT_DUMP=2
    CONFIG_ARM_STACK_PROTECTION=y
    CONFIG_CPU_CORTEX_M4=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_PROGRAMMABLE_FAULT_PRIOS=y
    CONFIG_ARMV7_M_ARMV8_M_MAINLINE=y
    CONFIG_ARMV7_M_ARMV8_M_FP=y
    
    #
    # ARM Cortex-M0/M0+/M1/M3/M4/M7/M23/M33 options
    #
    CONFIG_GEN_ISR_TABLES=y
    # CONFIG_ZERO_LATENCY_IRQS is not set
    # CONFIG_SW_VECTOR_RELAY is not set
    # CONFIG_CORTEX_M_DWT is not set
    # CONFIG_CORTEX_M_DEBUG_MONITOR_HOOK is not set
    # CONFIG_TRAP_UNALIGNED_ACCESS is not set
    # end of ARM Cortex-M0/M0+/M1/M3/M4/M7/M23/M33 options
    
    CONFIG_NULL_POINTER_EXCEPTION_DETECTION_NONE=y
    # CONFIG_NULL_POINTER_EXCEPTION_DETECTION_DWT is not set
    # CONFIG_NULL_POINTER_EXCEPTION_DETECTION_MPU is not set
    CONFIG_GEN_IRQ_VECTOR_TABLE=y
    CONFIG_ARM_MPU=y
    CONFIG_ARM_MPU_REGION_MIN_ALIGN_AND_SIZE=32
    CONFIG_MPU_STACK_GUARD=y
    CONFIG_MPU_ALLOW_FLASH_WRITE=y
    # CONFIG_MPU_DISABLE_BACKGROUND_MAP is not set
    # CONFIG_CUSTOM_SECTION_ALIGN is not set
    CONFIG_CUSTOM_SECTION_MIN_ALIGN_SIZE=32
    # end of ARM Options
    
    CONFIG_ARM=y
    CONFIG_ARCH_IS_SET=y
    
    #
    # General Architecture Options
    #
    # CONFIG_SEMIHOST is not set
    # CONFIG_ARCH_LOG_LEVEL_OFF is not set
    # CONFIG_ARCH_LOG_LEVEL_ERR is not set
    # CONFIG_ARCH_LOG_LEVEL_WRN is not set
    # CONFIG_ARCH_LOG_LEVEL_INF is not set
    # CONFIG_ARCH_LOG_LEVEL_DBG is not set
    CONFIG_ARCH_LOG_LEVEL_DEFAULT=y
    CONFIG_ARCH_LOG_LEVEL=0
    CONFIG_LITTLE_ENDIAN=y
    CONFIG_HW_STACK_PROTECTION=y
    # CONFIG_USERSPACE is not set
    CONFIG_KOBJECT_TEXT_AREA=256
    CONFIG_KOBJECT_DATA_AREA_RESERVE_EXTRA_PERCENT=100
    CONFIG_KOBJECT_RODATA_AREA_EXTRA_BYTES=16
    CONFIG_GEN_PRIV_STACKS=y
    # CONFIG_STACK_GROWS_UP is not set
    
    #
    # Interrupt Configuration
    #
    # CONFIG_DYNAMIC_INTERRUPTS is not set
    CONFIG_ARCH_IRQ_VECTOR_TABLE_ALIGN=4
    CONFIG_IRQ_VECTOR_TABLE_JUMP_BY_ADDRESS=y
    # CONFIG_IRQ_VECTOR_TABLE_JUMP_BY_CODE is not set
    CONFIG_GEN_SW_ISR_TABLE=y
    CONFIG_ARCH_SW_ISR_TABLE_ALIGN=4
    CONFIG_GEN_IRQ_START_VECTOR=0
    # CONFIG_EXTRA_EXCEPTION_INFO is not set
    # CONFIG_SIMPLIFIED_EXCEPTION_CODES is not set
    # end of Interrupt Configuration
    # end of General Architecture Options
    
    CONFIG_ARCH_HAS_SINGLE_THREAD_SUPPORT=y
    CONFIG_ARCH_HAS_TIMING_FUNCTIONS=y
    CONFIG_ARCH_HAS_STACK_PROTECTION=y
    CONFIG_ARCH_HAS_USERSPACE=y
    CONFIG_ARCH_HAS_EXECUTABLE_PAGE_BIT=y
    CONFIG_ARCH_HAS_RAMFUNC_SUPPORT=y
    CONFIG_ARCH_HAS_NESTED_EXCEPTION_DETECTION=y
    CONFIG_ARCH_SUPPORTS_COREDUMP=y
    CONFIG_ARCH_SUPPORTS_ARCH_HW_INIT=y
    CONFIG_ARCH_HAS_EXTRA_EXCEPTION_INFO=y
    CONFIG_ARCH_HAS_THREAD_LOCAL_STORAGE=y
    CONFIG_ARCH_HAS_SUSPEND_TO_RAM=y
    CONFIG_ARCH_HAS_THREAD_ABORT=y
    CONFIG_ARCH_HAS_CODE_DATA_RELOCATION=y
    CONFIG_CPU_HAS_FPU=y
    CONFIG_CPU_HAS_MPU=y
    CONFIG_MPU=y
    # CONFIG_MPU_LOG_LEVEL_OFF is not set
    # CONFIG_MPU_LOG_LEVEL_ERR is not set
    # CONFIG_MPU_LOG_LEVEL_WRN is not set
    # CONFIG_MPU_LOG_LEVEL_INF is not set
    # CONFIG_MPU_LOG_LEVEL_DBG is not set
    CONFIG_MPU_LOG_LEVEL_DEFAULT=y
    CONFIG_MPU_LOG_LEVEL=0
    CONFIG_MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT=y
    CONFIG_SRAM_REGION_PERMISSIONS=y
    
    #
    # Floating Point Options
    #
    # end of Floating Point Options
    
    #
    # Cache Options
    #
    # end of Cache Options
    
    CONFIG_TOOLCHAIN_HAS_BUILTIN_FFS=y
    
    #
    # General Kernel Options
    #
    # CONFIG_KERNEL_LOG_LEVEL_OFF is not set
    # CONFIG_KERNEL_LOG_LEVEL_ERR is not set
    # CONFIG_KERNEL_LOG_LEVEL_WRN is not set
    # CONFIG_KERNEL_LOG_LEVEL_INF is not set
    # CONFIG_KERNEL_LOG_LEVEL_DBG is not set
    CONFIG_KERNEL_LOG_LEVEL_DEFAULT=y
    CONFIG_KERNEL_LOG_LEVEL=0
    CONFIG_NUM_COOP_PRIORITIES=1
    CONFIG_NUM_PREEMPT_PRIORITIES=0
    CONFIG_MAIN_THREAD_PRIORITY=-2
    CONFIG_COOP_ENABLED=y
    CONFIG_PRIORITY_CEILING=-127
    # CONFIG_SCHED_DEADLINE is not set
    # CONFIG_SCHED_CPU_MASK is not set
    CONFIG_IDLE_STACK_SIZE=320
    CONFIG_ISR_STACK_SIZE=2048
    CONFIG_THREAD_STACK_INFO=y
    # CONFIG_THREAD_CUSTOM_DATA is not set
    CONFIG_ERRNO=y
    CONFIG_SCHED_DUMB=y
    # CONFIG_SCHED_SCALABLE is not set
    # CONFIG_SCHED_MULTIQ is not set
    # CONFIG_WAITQ_SCALABLE is not set
    CONFIG_WAITQ_DUMB=y
    
    #
    # Kernel Debugging and Metrics
    #
    CONFIG_BOOT_BANNER=y
    # CONFIG_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=-2
    # CONFIG_SYSTEM_WORKQUEUE_NO_YIELD is not set
    # end of Work Queue Options
    
    #
    # Atomic Operations
    #
    CONFIG_ATOMIC_OPERATIONS_BUILTIN=y
    # end of Atomic Operations
    
    #
    # Timer API Options
    #
    # CONFIG_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_EVENTS is not set
    # CONFIG_PIPES is not set
    CONFIG_KERNEL_MEM_POOL=y
    # end of Other Kernel Object Options
    
    CONFIG_ARCH_HAS_CUSTOM_SWAP_TO_MAIN=y
    CONFIG_SWAP_NONATOMIC=y
    CONFIG_SYS_CLOCK_EXISTS=y
    CONFIG_TIMEOUT_64BIT=y
    CONFIG_SYS_CLOCK_MAX_TIMEOUT_DAYS=365
    CONFIG_XIP=y
    
    #
    # Initialization Priorities
    #
    CONFIG_KERNEL_INIT_PRIORITY_OBJECTS=30
    CONFIG_KERNEL_INIT_PRIORITY_DEFAULT=40
    CONFIG_KERNEL_INIT_PRIORITY_DEVICE=50
    CONFIG_APPLICATION_INIT_PRIORITY=90
    # end of Initialization Priorities
    
    #
    # Security Options
    #
    # end of Security Options
    
    #
    # SMP Options
    #
    CONFIG_MP_NUM_CPUS=1
    # end of SMP Options
    
    CONFIG_TICKLESS_KERNEL=y
    CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE=y
    # CONFIG_THREAD_LOCAL_STORAGE is not set
    # end of General Kernel Options
    
    #
    # Device Options
    #
    # end of Device Options
    
    #
    # Virtual Memory Support
    #
    # end of Virtual Memory Support
    
    #
    # Device Drivers
    #
    # CONFIG_ADC is not set
    # CONFIG_AUDIO is not set
    # CONFIG_BBRAM is not set
    # CONFIG_CACHE is not set
    # CONFIG_CAN is not set
    # CONFIG_CLOCK_CONTROL_LOG_LEVEL_OFF is not set
    # CONFIG_CLOCK_CONTROL_LOG_LEVEL_ERR is not set
    # CONFIG_CLOCK_CONTROL_LOG_LEVEL_WRN is not set
    # CONFIG_CLOCK_CONTROL_LOG_LEVEL_INF is not set
    # CONFIG_CLOCK_CONTROL_LOG_LEVEL_DBG is not set
    CONFIG_CLOCK_CONTROL_LOG_LEVEL_DEFAULT=y
    CONFIG_CLOCK_CONTROL_LOG_LEVEL=0
    CONFIG_CLOCK_CONTROL_NRF=y
    CONFIG_CLOCK_CONTROL_NRF_K32SRC_RC=y
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_XTAL is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_SYNTH is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_EXT_LOW_SWING is not set
    # CONFIG_CLOCK_CONTROL_NRF_K32SRC_EXT_FULL_SWING is not set
    CONFIG_CLOCK_CONTROL_NRF_K32SRC_RC_CALIBRATION=y
    CONFIG_CLOCK_CONTROL_NRF_CALIBRATION_LF_ALWAYS_ON=y
    CONFIG_CLOCK_CONTROL_NRF_CALIBRATION_PERIOD=4000
    CONFIG_CLOCK_CONTROL_NRF_CALIBRATION_MAX_SKIP=1
    CONFIG_CLOCK_CONTROL_NRF_CALIBRATION_TEMP_DIFF=2
    CONFIG_CLOCK_CONTROL_NRF_K32SRC_500PPM=y
    # 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 is not set
    CONFIG_CLOCK_CONTROL_NRF_ACCURACY=500
    # CONFIG_CONSOLE is not set
    # CONFIG_COREDUMP_DEVICE is not set
    # CONFIG_COUNTER is not set
    # CONFIG_CRYPTO is not set
    # CONFIG_DAC is not set
    # CONFIG_DAI is not set
    # CONFIG_DISK_DRIVERS is not set
    # CONFIG_DMA is not set
    # CONFIG_EDAC is not set
    # CONFIG_EEPROM is not set
    # CONFIG_ESPI is not set
    CONFIG_FLASH_HAS_DRIVER_ENABLED=y
    CONFIG_FLASH_HAS_PAGE_LAYOUT=y
    CONFIG_FLASH_JESD216=y
    CONFIG_FLASH=y
    # CONFIG_FLASH_LOG_LEVEL_OFF is not set
    # CONFIG_FLASH_LOG_LEVEL_ERR is not set
    # CONFIG_FLASH_LOG_LEVEL_WRN is not set
    # CONFIG_FLASH_LOG_LEVEL_INF is not set
    # CONFIG_FLASH_LOG_LEVEL_DBG is not set
    CONFIG_FLASH_LOG_LEVEL_DEFAULT=y
    CONFIG_FLASH_LOG_LEVEL=0
    # CONFIG_FLASH_JESD216_API is not set
    CONFIG_FLASH_PAGE_LAYOUT=y
    CONFIG_FLASH_INIT_PRIORITY=50
    CONFIG_SOC_FLASH_NRF=y
    CONFIG_SOC_FLASH_NRF_RADIO_SYNC_NONE=y
    # CONFIG_SOC_FLASH_NRF_PARTIAL_ERASE is not set
    # CONFIG_SOC_FLASH_NRF_UICR is not set
    # CONFIG_SOC_FLASH_NRF_EMULATE_ONE_BYTE_WRITE_ACCESS is not set
    CONFIG_SPI_NOR=y
    CONFIG_SPI_NOR_SFDP_MINIMAL=y
    # CONFIG_SPI_NOR_SFDP_DEVICETREE is not set
    # CONFIG_SPI_NOR_SFDP_RUNTIME is not set
    CONFIG_SPI_NOR_INIT_PRIORITY=80
    CONFIG_SPI_NOR_CS_WAIT_DELAY=0
    CONFIG_SPI_NOR_FLASH_LAYOUT_PAGE_SIZE=65536
    # CONFIG_SPI_NOR_IDLE_IN_DPD is not set
    # CONFIG_FPGA is not set
    # CONFIG_FUEL_GAUGE is not set
    # CONFIG_GPIO_LOG_LEVEL_OFF is not set
    # CONFIG_GPIO_LOG_LEVEL_ERR is not set
    # CONFIG_GPIO_LOG_LEVEL_WRN is not set
    # CONFIG_GPIO_LOG_LEVEL_INF is not set
    # CONFIG_GPIO_LOG_LEVEL_DBG is not set
    CONFIG_GPIO_LOG_LEVEL_DEFAULT=y
    CONFIG_GPIO_LOG_LEVEL=0
    # CONFIG_GPIO_GET_DIRECTION is not set
    # CONFIG_GPIO_GET_CONFIG is not set
    # CONFIG_GPIO_HOGS is not set
    # CONFIG_GPIO_ENABLE_DISABLE_INTERRUPT is not set
    CONFIG_GPIO_NRFX=y
    # CONFIG_FXL6408_LOG_LEVEL_OFF is not set
    # CONFIG_FXL6408_LOG_LEVEL_ERR is not set
    # CONFIG_FXL6408_LOG_LEVEL_WRN is not set
    # CONFIG_FXL6408_LOG_LEVEL_INF is not set
    # CONFIG_FXL6408_LOG_LEVEL_DBG is not set
    CONFIG_FXL6408_LOG_LEVEL_DEFAULT=y
    CONFIG_FXL6408_LOG_LEVEL=0
    # CONFIG_HWINFO is not set
    # CONFIG_I2S is not set
    # CONFIG_I3C is not set
    # CONFIG_SMBUS is not set
    
    #
    # Interrupt controller drivers
    #
    CONFIG_INTC_INIT_PRIORITY=40
    # CONFIG_INTC_LOG_LEVEL_OFF is not set
    # CONFIG_INTC_LOG_LEVEL_ERR is not set
    # CONFIG_INTC_LOG_LEVEL_WRN is not set
    # CONFIG_INTC_LOG_LEVEL_INF is not set
    # CONFIG_INTC_LOG_LEVEL_DBG is not set
    CONFIG_INTC_LOG_LEVEL_DEFAULT=y
    CONFIG_INTC_LOG_LEVEL=0
    # CONFIG_MULTI_LEVEL_INTERRUPTS is not set
    # CONFIG_INTC_ESP32 is not set
    # end of Interrupt controller drivers
    
    # CONFIG_IPM is not set
    # CONFIG_LED is not set
    # CONFIG_LED_STRIP is not set
    # CONFIG_LORA is not set
    # CONFIG_MBOX is not set
    # CONFIG_MDIO is not set
    # CONFIG_MIPI_DSI is not set
    
    #
    # Miscellaneous Drivers
    #
    # CONFIG_GROVE_LCD_RGB is not set
    # end of Miscellaneous Drivers
    
    # CONFIG_MM_DRV is not set
    # CONFIG_NEURAL_NET_ACCEL is not set
    # CONFIG_PCIE is not set
    # CONFIG_PCIE_ENDPOINT is not set
    # CONFIG_PECI is not set
    # CONFIG_PINCTRL_LOG_LEVEL_OFF is not set
    # CONFIG_PINCTRL_LOG_LEVEL_ERR is not set
    # CONFIG_PINCTRL_LOG_LEVEL_WRN is not set
    # CONFIG_PINCTRL_LOG_LEVEL_INF is not set
    # CONFIG_PINCTRL_LOG_LEVEL_DBG is not set
    CONFIG_PINCTRL_LOG_LEVEL_DEFAULT=y
    CONFIG_PINCTRL_LOG_LEVEL=0
    CONFIG_PINCTRL_STORE_REG=y
    # CONFIG_PINCTRL_DYNAMIC is not set
    CONFIG_PINCTRL_NRF=y
    # CONFIG_PM_CPU_OPS is not set
    # CONFIG_POWER_DOMAIN is not set
    # CONFIG_PS2 is not set
    # CONFIG_PTP_CLOCK is not set
    # CONFIG_PWM is not set
    # CONFIG_RETAINED_MEM is not set
    # CONFIG_RTC is not set
    # CONFIG_SDHC is not set
    # CONFIG_SPI_ASYNC is not set
    # CONFIG_SPI_RTIO is not set
    # CONFIG_SPI_SLAVE is not set
    # CONFIG_SPI_EXTENDED_MODES is not set
    CONFIG_SPI_INIT_PRIORITY=70
    CONFIG_SPI_COMPLETION_TIMEOUT_TOLERANCE=200
    # CONFIG_SPI_LOG_LEVEL_OFF is not set
    # CONFIG_SPI_LOG_LEVEL_ERR is not set
    # CONFIG_SPI_LOG_LEVEL_WRN is not set
    # CONFIG_SPI_LOG_LEVEL_INF is not set
    # CONFIG_SPI_LOG_LEVEL_DBG is not set
    CONFIG_SPI_LOG_LEVEL_DEFAULT=y
    CONFIG_SPI_LOG_LEVEL=0
    # CONFIG_SYSCON is not set
    
    #
    # Timer drivers
    #
    # CONFIG_TIMER_READS_ITS_FREQUENCY_AT_RUNTIME is not set
    # CONFIG_SYSTEM_CLOCK_SLOPPY_IDLE is not set
    CONFIG_SYSTEM_CLOCK_INIT_PRIORITY=0
    CONFIG_TICKLESS_CAPABLE=y
    CONFIG_SYSTEM_TIMER_HAS_DISABLE_SUPPORT=y
    # CONFIG_NRF_RTC_TIMER_TRIGGER_OVERFLOW is not set
    # CONFIG_SYSTEM_CLOCK_NO_WAIT is not set
    # CONFIG_SYSTEM_CLOCK_WAIT_FOR_AVAILABILITY is not set
    CONFIG_SYSTEM_CLOCK_WAIT_FOR_STABILITY=y
    # end of Timer drivers
    
    # CONFIG_USB_BC12 is not set
    # CONFIG_UDC_DRIVER is not set
    # CONFIG_UVB is not set
    # CONFIG_USB_DEVICE_DRIVER is not set
    # CONFIG_USBC_TCPC_DRIVER is not set
    # CONFIG_USBC_LOG_LEVEL_OFF is not set
    # CONFIG_USBC_LOG_LEVEL_ERR is not set
    # CONFIG_USBC_LOG_LEVEL_WRN is not set
    # CONFIG_USBC_LOG_LEVEL_INF is not set
    # CONFIG_USBC_LOG_LEVEL_DBG is not set
    CONFIG_USBC_LOG_LEVEL_DEFAULT=y
    CONFIG_USBC_LOG_LEVEL=0
    # CONFIG_USBC_VBUS_DRIVER is not set
    # CONFIG_VIDEO is not set
    # CONFIG_VIRTUALIZATION is not set
    # CONFIG_W1 is not set
    # end of Device Drivers
    
    #
    # C Library
    #
    CONFIG_SUPPORT_MINIMAL_LIBC=y
    CONFIG_PICOLIBC_SUPPORTED=y
    CONFIG_MINIMAL_LIBC=y
    # CONFIG_PICOLIBC is not set
    # CONFIG_NEWLIB_LIBC is not set
    # CONFIG_EXTERNAL_LIBC is not set
    CONFIG_HAS_NEWLIB_LIBC_NANO=y
    CONFIG_MINIMAL_LIBC_NON_REENTRANT_FUNCTIONS=y
    CONFIG_MINIMAL_LIBC_MALLOC=y
    CONFIG_MINIMAL_LIBC_MALLOC_ARENA_SIZE=0
    CONFIG_MINIMAL_LIBC_CALLOC=y
    CONFIG_MINIMAL_LIBC_REALLOCARRAY=y
    # CONFIG_MINIMAL_LIBC_LL_PRINTF is not set
    CONFIG_MINIMAL_LIBC_OPTIMIZE_STRING_FOR_SIZE=y
    # CONFIG_MINIMAL_LIBC_RAND is not set
    CONFIG_MINIMAL_LIBC_TIME=y
    # CONFIG_MINIMAL_LIBC_STRING_ERROR_TABLE is not set
    CONFIG_NEED_LIBC_MEM_PARTITION=y
    # end of C Library
    
    #
    # C++ Language Support
    #
    # CONFIG_CPP is not set
    
    #
    # Deprecated
    #
    # CONFIG_CPLUSPLUS is not set
    # CONFIG_LIB_CPLUSPLUS is not set
    # end of Deprecated
    # end of C++ Language Support
    
    #
    # Additional libraries
    #
    
    #
    # Hash Function Support
    #
    # CONFIG_SYS_HASH_FUNC32 is not set
    # end of Hash Function Support
    
    #
    # Hashmap (Hash Table) Support
    #
    # CONFIG_SYS_HASH_MAP is not set
    # end of Hashmap (Hash Table) Support
    
    #
    # OS Support Library
    #
    # CONFIG_JSON_LIBRARY is not set
    # CONFIG_RING_BUFFER is not set
    CONFIG_NOTIFY=y
    # CONFIG_BASE64 is not set
    CONFIG_CRC=y
    # CONFIG_PRINTK_SYNC is not set
    # CONFIG_MPSC_PBUF is not set
    CONFIG_ONOFF=y
    # CONFIG_SPSC_PBUF is not set
    # CONFIG_SHARED_MULTI_HEAP is not set
    # CONFIG_WINSTREAM is not set
    CONFIG_REBOOT=y
    # CONFIG_UTF8 is not set
    # CONFIG_CBPRINTF_COMPLETE is not set
    CONFIG_CBPRINTF_NANO=y
    CONFIG_CBPRINTF_FULL_INTEGRAL=y
    # CONFIG_CBPRINTF_REDUCED_INTEGRAL is not set
    # CONFIG_CBPRINTF_FP_A_SUPPORT is not set
    # CONFIG_CBPRINTF_FP_ALWAYS_A is not set
    CONFIG_CBPRINTF_LIBC_SUBSTS=y
    # CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_OFF is not set
    # CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_ERR is not set
    # CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_WRN is not set
    # CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_INF is not set
    # CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_DBG is not set
    CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL_DEFAULT=y
    CONFIG_CBPRINTF_PACKAGE_LOG_LEVEL=0
    # CONFIG_CBPRINTF_PACKAGE_LONGDOUBLE is not set
    # CONFIG_CBPRINTF_STATIC_PACKAGE_CHECK_ALIGNMENT is not set
    
    #
    # Heap and Memory Allocation
    #
    # CONFIG_SYS_HEAP_VALIDATE is not set
    CONFIG_SYS_HEAP_ALLOC_LOOPS=3
    # CONFIG_SYS_HEAP_RUNTIME_STATS is not set
    # CONFIG_SYS_HEAP_LISTENER is not set
    CONFIG_SYS_HEAP_SMALL_ONLY=y
    # CONFIG_SYS_HEAP_BIG_ONLY is not set
    # CONFIG_SYS_HEAP_AUTO is not set
    # CONFIG_SYS_MEM_BLOCKS is not set
    # end of Heap and Memory Allocation
    # end of OS Support Library
    
    # CONFIG_POSIX_API is not set
    # CONFIG_POSIX_CLOCK is not set
    CONFIG_MAX_TIMER_COUNT=5
    CONFIG_TIMER_CREATE_WAIT=100
    # CONFIG_POSIX_MQUEUE is not set
    # CONFIG_EVENTFD is not set
    # CONFIG_FNMATCH is not set
    # CONFIG_OPENAMP_RSC_TABLE is not set
    # CONFIG_SMF is not set
    # end of Additional libraries
    
    #
    # Subsystems and OS Services
    #
    # CONFIG_BT 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
    
    #
    # System Monitoring Options
    #
    # CONFIG_THREAD_ANALYZER is not set
    # end of System Monitoring Options
    
    #
    # Debugging Options
    #
    # CONFIG_DEBUG is not set
    # CONFIG_STACK_USAGE is not set
    CONFIG_PRINTK=y
    CONFIG_EARLY_CONSOLE=y
    # CONFIG_ASSERT is not set
    # CONFIG_FORCE_NO_ASSERT is not set
    CONFIG_ASSERT_VERBOSE=y
    # CONFIG_ASSERT_NO_FILE_INFO is not set
    # CONFIG_ASSERT_NO_COND_INFO is not set
    # CONFIG_ASSERT_NO_MSG_INFO is not set
    # CONFIG_ASSERT_TEST is not set
    # CONFIG_OVERRIDE_FRAME_POINTER_DEFAULT is not set
    # CONFIG_DEBUG_INFO is not set
    # CONFIG_DEBUG_THREAD_INFO is not set
    # CONFIG_DEBUG_COREDUMP is not set
    # end of Debugging Options
    
    # CONFIG_DISK_ACCESS is not set
    # CONFIG_DSP is not set
    # CONFIG_EMUL is not set
    # CONFIG_CHARACTER_FRAMEBUFFER is not set
    
    #
    # File Systems
    #
    # CONFIG_FILE_SYSTEM is not set
    # CONFIG_FCB is not set
    # CONFIG_NVS is not set
    # end of File Systems
    
    #
    # Inter Processor Communication
    #
    # CONFIG_RPMSG_SERVICE is not set
    # CONFIG_IPC_SERVICE is not set
    # end of Inter Processor Communication
    
    # CONFIG_JWT is not set
    
    #
    # Logging
    #
    CONFIG_LOG=y
    CONFIG_LOG_CORE_INIT_PRIORITY=0
    # CONFIG_LOG_MODE_DEFERRED is not set
    # CONFIG_LOG_MODE_IMMEDIATE is not set
    CONFIG_LOG_MODE_MINIMAL=y
    # CONFIG_LOG_FRONTEND is not set
    # CONFIG_LOG_CUSTOM_HEADER is not set
    # CONFIG_LOG_MULTIDOMAIN is not set
    
    #
    # Logging levels filtering
    #
    CONFIG_LOG_DEFAULT_LEVEL=0
    CONFIG_LOG_OVERRIDE_LEVEL=0
    CONFIG_LOG_MAX_LEVEL=4
    # end of Logging levels filtering
    
    #
    # Processing
    #
    # end of Processing
    
    #
    # Misc
    #
    CONFIG_LOG_USE_VLA=y
    # CONFIG_LOG_ALWAYS_RUNTIME is not set
    # CONFIG_LOG_FMT_SECTION is not set
    # CONFIG_LOG_USE_TAGGED_ARGUMENTS is not set
    # end of Misc
    
    # CONFIG_LOG_OUTPUT is not set
    # end of Logging
    
    #
    # Device Management
    #
    
    #
    # Host command handler subsystem
    #
    # CONFIG_EC_HOST_CMD is not set
    # CONFIG_EC_HOST_CMD_BACKEND_SHI is not set
    # end of Host command handler subsystem
    
    # CONFIG_OSDP is not set
    # end of Device Management
    
    # CONFIG_MODBUS is not set
    
    #
    # Networking
    #
    # CONFIG_NET_BUF is not set
    # CONFIG_NETWORKING is not set
    # end of Networking
    
    #
    # Power Management
    #
    # end of Power Management
    
    #
    # Portability
    #
    # end of Portability
    
    #
    # Random Number Generators
    #
    # CONFIG_TEST_RANDOM_GENERATOR is not set
    # end of Random Number Generators
    
    # CONFIG_RTIO is not set
    
    #
    # SD
    #
    # CONFIG_MMC_STACK is not set
    # CONFIG_SDMMC_STACK is not set
    # CONFIG_SDIO_STACK is not set
    # end of SD
    
    # CONFIG_SETTINGS is not set
    # CONFIG_SHELL is not set
    # CONFIG_STATS is not set
    
    #
    # Storage
    #
    CONFIG_FLASH_MAP=y
    # CONFIG_FLASH_AREA_CHECK_INTEGRITY is not set
    # CONFIG_STREAM_FLASH is not set
    # end of Storage
    
    # CONFIG_TASK_WDT is not set
    
    #
    # Testing
    #
    # CONFIG_ZTEST is not set
    # CONFIG_ZTEST_MOCKING is not set
    # CONFIG_ZTRESS is not set
    # CONFIG_TEST is not set
    CONFIG_COVERAGE_GCOV_HEAP_SIZE=16384
    # CONFIG_TEST_USERSPACE is not set
    # end of Testing
    
    # CONFIG_TIMING_FUNCTIONS is not set
    # CONFIG_TRACING is not set
    # CONFIG_USB_DEVICE_STACK is not set
    # CONFIG_USB_DEVICE_STACK_NEXT is not set
    # CONFIG_USB_HOST_STACK is not set
    # CONFIG_USBC_STACK is not set
    # CONFIG_ZBUS is not set
    # end of Subsystems and OS Services
    
    CONFIG_TOOLCHAIN_ZEPHYR_0_16=y
    CONFIG_TOOLCHAIN_ZEPHYR_SUPPORTS_THREAD_LOCAL_STORAGE=y
    
    #
    # Build and Link Features
    #
    
    #
    # Linker Options
    #
    # CONFIG_LINKER_ORPHAN_SECTION_PLACE is not set
    CONFIG_LINKER_ORPHAN_SECTION_WARN=y
    # CONFIG_LINKER_ORPHAN_SECTION_ERROR is not set
    CONFIG_HAS_FLASH_LOAD_OFFSET=y
    CONFIG_USE_DT_CODE_PARTITION=y
    CONFIG_FLASH_LOAD_OFFSET=0x0
    CONFIG_FLASH_LOAD_SIZE=0x0
    CONFIG_LD_LINKER_SCRIPT_SUPPORTED=y
    CONFIG_LD_LINKER_TEMPLATE=y
    # CONFIG_CMAKE_LINKER_GENERATOR is not set
    # CONFIG_HAVE_CUSTOM_LINKER_SCRIPT is not set
    CONFIG_KERNEL_ENTRY="__start"
    CONFIG_LINKER_SORT_BY_ALIGNMENT=y
    CONFIG_SRAM_OFFSET=0
    
    #
    # Linker Sections
    #
    # CONFIG_LINKER_USE_BOOT_SECTION is not set
    # CONFIG_LINKER_USE_PINNED_SECTION is not set
    CONFIG_LINKER_GENERIC_SECTIONS_PRESENT_AT_BOOT=y
    CONFIG_LINKER_LAST_SECTION_ID=y
    CONFIG_LINKER_LAST_SECTION_ID_PATTERN=0xE015E015
    CONFIG_LINKER_USE_RELAX=y
    # end of Linker Sections
    # end of Linker Options
    
    #
    # Compiler Options
    #
    # CONFIG_CODING_GUIDELINE_CHECK is not set
    # CONFIG_NATIVE_APPLICATION is not set
    CONFIG_COMPILER_FREESTANDING=y
    CONFIG_SIZE_OPTIMIZATIONS=y
    # CONFIG_SPEED_OPTIMIZATIONS is not set
    # CONFIG_DEBUG_OPTIMIZATIONS is not set
    # CONFIG_NO_OPTIMIZATIONS is not set
    # CONFIG_COMPILER_WARNINGS_AS_ERRORS is not set
    # CONFIG_COMPILER_SAVE_TEMPS is not set
    CONFIG_COMPILER_COLOR_DIAGNOSTICS=y
    CONFIG_FORTIFY_SOURCE_NONE=y
    # CONFIG_FORTIFY_SOURCE_COMPILE_TIME is not set
    # CONFIG_FORTIFY_SOURCE_RUN_TIME is not set
    CONFIG_COMPILER_OPT=""
    # CONFIG_MISRA_SANE is not set
    # end of Compiler Options
    
    # CONFIG_ASSERT_ON_ERRORS is not set
    # CONFIG_NO_RUNTIME_CHECKS is not set
    CONFIG_RUNTIME_ERROR_CHECKS=y
    
    #
    # Build Options
    #
    CONFIG_KERNEL_BIN_NAME="zephyr"
    CONFIG_OUTPUT_STAT=y
    # CONFIG_OUTPUT_SYMBOLS is not set
    CONFIG_OUTPUT_DISASSEMBLY=y
    # CONFIG_OUTPUT_DISASSEMBLE_ALL is not set
    CONFIG_OUTPUT_PRINT_MEMORY_USAGE=y
    # CONFIG_CLEANUP_INTERMEDIATE_FILES is not set
    # CONFIG_BUILD_NO_GAP_FILL is not set
    CONFIG_BUILD_OUTPUT_BIN=y
    # CONFIG_BUILD_OUTPUT_EXE is not set
    # CONFIG_BUILD_OUTPUT_S19 is not set
    # CONFIG_BUILD_OUTPUT_UF2 is not set
    # CONFIG_BUILD_OUTPUT_STRIPPED is not set
    # CONFIG_APPLICATION_DEFINED_SYSCALL is not set
    # CONFIG_MAKEFILE_EXPORTS is not set
    CONFIG_BUILD_OUTPUT_META=y
    # CONFIG_BUILD_OUTPUT_META_STATE_PROPAGATE is not set
    CONFIG_BUILD_OUTPUT_STRIP_PATHS=y
    # end of Build Options
    
    CONFIG_WARN_DEPRECATED=y
    CONFIG_ENFORCE_ZEPHYR_STDINT=y
    # end of Build and Link Features
    
    #
    # Boot Options
    #
    # CONFIG_IS_BOOTLOADER is not set
    # CONFIG_BOOTLOADER_BOSSA is not set
    # end of Boot Options
    
    #
    # Compatibility
    #
    CONFIG_COMPAT_INCLUDES=y
    # end of Compatibility
    

  • I can't see anything that immediately stand out. Could you please just build one more time (not pristine build/clean and rebuild) and share the full log?

    It might also be helpful to look at the preprocessed spi_nor.c file to see what expanded into the missing ordinal. The method is documented here: https://developer.nordicsemi.com/nRF_Connect_SDK/doc/2.4.1/zephyr/build/dts/troubleshooting.html#look-at-the-preprocessor-output.

Related