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 >;
    	};
    };
    

  • The compiled 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=2048
    # CONFIG_INIT_STACKS is not set
    
    #
    # Nordic nRF Connect
    #
    CONFIG_WARN_EXPERIMENTAL=y
    CONFIG_PRIVILEGED_STACK_SIZE=1024
    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_SPEEDUP is not set
    CONFIG_BT_L2CAP_TX_MTU=600
    CONFIG_BT_BUF_ACL_TX_SIZE=27
    CONFIG_BT_BUF_ACL_RX_SIZE=600
    CONFIG_BT_CTLR_DATA_LENGTH_MAX=27
    
    #
    # Bootloader
    #
    # CONFIG_BUILD_S1_VARIANT is not set
    # CONFIG_SECURE_BOOT is not set
    CONFIG_PM_PARTITION_SIZE_PROVISION=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
    
    #
    # 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 is not set
    # CONFIG_FLASH_MAP_CUSTOM is not set
    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_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_BOOT_SIGNATURE_KEY_FILE=""
    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
    # 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 is not set
    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 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=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 (D:/GitLab/carl-ble-sensor-firmware/deps/bliss)
    
    #
    # qpcpp (D:/GitLab/carl-ble-sensor-firmware/deps/qpcpp)
    #
    CONFIG_QPCPP=y
    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=y
    CONFIG_PHYPHOX_BLE_TX_SIZE=100
    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=y
    CONFIG_BLE_UTILS_MAX_ATTR=10
    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=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 (D:/GitLab/carl-ble-sensor-firmware/deps/drivers)
    
    #
    # bq35100 (D:/GitLab/carl-ble-sensor-firmware/deps/bq35100)
    #
    CONFIG_BQ35100=y
    CONFIG_ZEPHYR_BQ35100_MODULE=y
    # end of bq35100 (D:/GitLab/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_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 is not set
    CONFIG_FLASH_LOAD_OFFSET=0
    CONFIG_FLASH_LOAD_SIZE=0
    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 is not set
    CONFIG_BUILD_OUTPUT_STRIP_PATHS=y
    # end of Build Options
    
    CONFIG_DEPRECATED=y
    CONFIG_WARN_DEPRECATED=y
    CONFIG_ENFORCE_ZEPHYR_STDINT=y
    # end of Build and Link Features
    
    #
    # Boot Options
    #
    # CONFIG_IS_BOOTLOADER is not set
    # CONFIG_BOOTLOADER_BOSSA is not set
    # end of Boot Options
    
    #
    # Compatibility
    #
    CONFIG_COMPAT_INCLUDES=y
    # end of Compatibility

    The memory report looks like this (ROM):

    {
        "symbols": {
            "name": "Root",
            "size": 198745,
            "identifier": "root",
            "children": [
                {
                    "name": "(no paths)",
                    "size": 90707,
                    "identifier": ":",
                    "children": [
                        {
                            "name": "_ZN4carl6sensorL13AXIS_CHANNELSE",
                            "size": 6,
                            "identifier": ":\\_ZN4carl6sensorL13AXIS_CHANNELSE"
                        },
                        {
                            "name": "hci_vendor_event",
                            "size": 2,
                            "identifier": ":\\hci_vendor_event"
                        },
                        {
                            "name": "CSWTCH.15265",
                            "size": 42,
                            "identifier": ":\\CSWTCH.15265"
                        },
                        {
                            "name": "events.0",
                            "size": 60,
                            "identifier": ":\\events.0"
                        },
                        {
                            "name": "_ZL25__init___device_dts_ord_9",
                            "size": 8,
                            "identifier": ":\\_ZL25__init___device_dts_ord_9"
                        },
                        {
                            "name": "_ZL14adxrs649_cfg_0",
                            "size": 44,
                            "identifier": ":\\_ZL14adxrs649_cfg_0"
                        },
                        {
                            "name": "_ZL12adxrs649_api",
                            "size": 20,
                            "identifier": ":\\_ZL12adxrs649_api"
                        },
                        {
                            "name": "_ZL20__devstate_dts_ord_9",
                            "size": 2,
                            "identifier": ":\\_ZL20__devstate_dts_ord_9"
                        },
                        {
                            "name": "bp",
                            "size": 16,
                            "identifier": ":\\bp"
                        },
                        {
                            "name": "dp_l",
                            "size": 16,
                            "identifier": ":\\dp_l"
                        },
                        {
                            "name": "dp_h",
                            "size": 16,
                            "identifier": ":\\dp_h"
                        },
                        {
                            "name": "._anon_189",
                            "size": 32,
                            "identifier": ":\\._anon_189"
                        },
                        {
                            "name": "_ZN4carl3ble4uuid6configL15thresholds_charE",
                            "size": 17,
                            "identifier": ":\\_ZN4carl3ble4uuid6configL15thresholds_charE"
                        },
                        {
                            "name": "._anon_188",
                            "size": 16,
                            "identifier": ":\\._anon_188"
                        },
                        {
                            "name": "._anon_187",
                            "size": 16,
                            "identifier": ":\\._anon_187"
                        },
                        {
                            "name": "_ZN4carl3ble6configL14config_serviceE",
                            "size": 8,
                            "identifier": ":\\_ZN4carl3ble6configL14config_serviceE"
                        },
                        {
                            "name": "_ZN4carl3ble6configL19attr_config_serviceE",
                            "size": 60,
                            "identifier": ":\\_ZN4carl3ble6configL19attr_config_serviceE"
                        },
                        {
                            "name": "_ZN4carl3ble4uuid6configL7serviceE",
                            "size": 17,
                            "identifier": ":\\_ZN4carl3ble4uuid6configL7serviceE"
                        },
                        {
                            "name": "_ZN4carl3bleL20attr_measure_serviceE",
                            "size": 140,
                            "identifier": ":\\_ZN4carl3bleL20attr_measure_serviceE"
                        },
                        {
                            "name": "._anon_194",
                            "size": 4,
                            "identifier": ":\\._anon_194"
                        },
                        {
                            "name": "._anon_193",
                            "size": 16,
                            "identifier": ":\\._anon_193"
                        },
                        {
                            "name": "_ZN4carl3ble4uuid7measureL13shockevt_charE",
                            "size": 17,
                            "identifier": ":\\_ZN4carl3ble4uuid7measureL13shockevt_charE"
                        },
                        {
                            "name": "._anon_192",
                            "size": 8,
                            "identifier": ":\\._anon_192"
                        },
                        {
                            "name": "._anon_190",
                            "size": 8,
                            "identifier": ":\\._anon_190"
                        },
                        {
                            "name": "_ZN4carl3ble4uuid7measureL17read_measure_charE",
                            "size": 17,
                            "identifier": ":\\_ZN4carl3ble4uuid7measureL17read_measure_charE"
                        },
                        {
                            "name": "_ZN4carl3bleL15measure_serviceE",
                            "size": 8,
                            "identifier": ":\\_ZN4carl3bleL15measure_serviceE"
                        },
                        {
                            "name": "_ZN4carl3ble4uuid7measureL7serviceE",
                            "size": 17,
                            "identifier": ":\\_ZN4carl3ble4uuid7measureL7serviceE"
                        },
                        {
                            "name": "_ZN4carl3ble4uuid7loggingL13build_id_charE",
                            "size": 17,
                            "identifier": ":\\_ZN4carl3ble4uuid7loggingL13build_id_charE"
                        },
                        {
                            "name": "_ZN4carl3ble7loggingL15logging_serviceE",
                            "size": 8,
                            "identifier": ":\\_ZN4carl3ble7loggingL15logging_serviceE"
                        },
                        {
                            "name": "_ZN4carl3ble7loggingL20attr_logging_serviceE",
                            "size": 60,
                            "identifier": ":\\_ZN4carl3ble7loggingL20attr_logging_serviceE"
                        },
                        {
                            "name": "_ZN4carl3ble4uuid7loggingL7serviceE",
                            "size": 17,
                            "identifier": ":\\_ZN4carl3ble4uuid7loggingL7serviceE"
                        },
                        {
                            "name": "_ZN4carl3appL13tilt_detectedE",
                            "size": 4,
                            "identifier": ":\\_ZN4carl3appL13tilt_detectedE"
                        },
                        {
                            "name": "_GLOBAL__sub_I__ZN4carl3app10SamplingSMC2ERNS0_10RollerDataE",
                            "size": 64,
                            "identifier": ":\\_GLOBAL__sub_I__ZN4carl3app10SamplingSMC2ERNS0_10RollerDataE"
                        },
                        {
                            "name": "_GLOBAL__sub_I__ZN4carl3app7sensors11gyro_sensorE",
                            "size": 120,
                            "identifier": ":\\_GLOBAL__sub_I__ZN4carl3app7sensors11gyro_sensorE"
                        },
                        {
                            "name": "_ZN4carl3appL17maintenance_startE",
                            "size": 4,
                            "identifier": ":\\_ZN4carl3appL17maintenance_startE"
                        },
                        {
                            "name": "_ZN4carl3appL16maintenance_stopE",
                            "size": 4,
                            "identifier": ":\\_ZN4carl3appL16maintenance_stopE"
                        },
                        {
                            "name": "_GLOBAL__sub_I_log_const_carl_app",
                            "size": 168,
                            "identifier": ":\\_GLOBAL__sub_I_log_const_carl_app"
                        },
                        {
                            "name": "_GLOBAL__sub_I__ZN4carl3hal7rgb_led4initEv",
                            "size": 96,
                            "identifier": ":\\_GLOBAL__sub_I__ZN4carl3hal7rgb_led4initEv"
                        },
                        {
                            "name": "_ZN4carl3hal10power_mgmtL8notifierE",
                            "size": 12,
                            "identifier": ":\\_ZN4carl3hal10power_mgmtL8notifierE"
                        },
                        {
                            "name": "_ZN4carl3hal10power_mgmtL33__init_post_init_sensor_regulatorE",
                            "size": 8,
                            "identifier": ":\\_ZN4carl3hal10power_mgmtL33__init_post_init_sensor_regulatorE"
                        },
                        {
                            "name": "_ZN4carl3hal10power_mgmtL28__init_init_sensor_regulatorE",
                            "size": 8,
                            "identifier": ":\\_ZN4carl3hal10power_mgmtL28__init_init_sensor_regulatorE"
                        },
                        {
                            "name": "_ZN4carl3hal6eepromL11default_imgE",
                            "size": 32,
                            "identifier": ":\\_ZN4carl3hal6eepromL11default_imgE"
                        },
                        {
                            "name": "_ZN4carl3hal12batteryGaugeL21lastBatteryPercentageE",
                            "size": 1,
                            "identifier": ":\\_ZN4carl3hal12batteryGaugeL21lastBatteryPercentageE"
                        },
                        {
                            "name": "_GLOBAL__sub_I_log_const_battery_gauge",
                            "size": 68,
                            "identifier": ":\\_GLOBAL__sub_I_log_const_battery_gauge"
                        },
                        {
                            "name": "_ZN4carl3hal12batteryGaugeL5ge_enE",
                            "size": 8,
                            "identifier": ":\\_ZN4carl3hal12batteryGaugeL5ge_enE"
                        },
                        {
                            "name": "table.0",
                            "size": 64,
                            "identifier": ":\\table.0"
                        },
                        {
                            "name": "__compound_literal.0",
                            "size": 72,
                            "identifier": ":\\__compound_literal.0"
                        },
                        {
                            "name": "__compound_literal.1",
                            "size": 12,
                            "identifier": ":\\__compound_literal.1"
                        },
                        {
                            "name": "__compound_literal.2",
                            "size": 12,
                            "identifier": ":\\__compound_literal.2"
                        },
                        {
                            "name": "__compound_literal.4",
                            "size": 24,
                            "identifier": ":\\__compound_literal.4"
                        },
                        {
                            "name": "__compound_literal.5",
                            "size": 12,
                            "identifier": ":\\__compound_literal.5"
                        },
                        {
                            "name": "__compound_literal.6",
                            "size": 12,
                            "identifier": ":\\__compound_literal.6"
                        },
                        {
                            "name": "__compound_literal.8",
                            "size": 16,
                            "identifier": ":\\__compound_literal.8"
                        },
                        {
                            "name": "__compound_literal.9",
                            "size": 8,
                            "identifier": ":\\__compound_literal.9"
                        },
                        {
                            "name": "__compound_literal.10",
                            "size": 8,
                            "identifier": ":\\__compound_literal.10"
                        },
                        {
                            "name": "__compound_literal.12",
                            "size": 12,
                            "identifier": ":\\__compound_literal.12"
                        },
                        {
                            "name": "__compound_literal.13",
                            "size": 8,
                            "identifier": ":\\__compound_literal.13"
                        },
                        {
                            "name": "__compound_literal.14",
                            "size": 12,
                            "identifier": ":\\__compound_literal.14"
                        },
                        {
                            "name": "__compound_literal.16",
                            "size": 12,
                            "identifier": ":\\__compound_literal.16"
                        },
                        {
                            "name": "__compound_literal.17",
                            "size": 4,
                            "identifier": ":\\__compound_literal.17"
                        },
                        {
                            "name": "__compound_literal.18",
                            "size": 4,
                            "identifier": ":\\__compound_literal.18"
                        },
                        {
                            "name": "__compound_literal.20",
                            "size": 8,
                            "identifier": ":\\__compound_literal.20"
                        },
                        {
                            "name": "__compound_literal.21",
                            "size": 4,
                            "identifier": ":\\__compound_literal.21"
                        },
                        {
                            "name": "__compound_literal.22",
                            "size": 4,
                            "identifier": ":\\__compound_literal.22"
                        },
                        {
                            "name": "__compound_literal.24",
                            "size": 8,
                            "identifier": ":\\__compound_literal.24"
                        },
                        {
                            "name": "__compound_literal.25",
                            "size": 4,
                            "identifier": ":\\__compound_literal.25"
                        },
                        {
                            "name": "__compound_literal.23",
                            "size": 4,
                            "identifier": ":\\__compound_literal.23"
                        },
                        {
                            "name": "__compound_literal.19",
                            "size": 4,
                            "identifier": ":\\__compound_literal.19"
                        },
                        {
                            "name": "__compound_literal.15",
                            "size": 8,
                            "identifier": ":\\__compound_literal.15"
                        },
                        {
                            "name": "__compound_literal.11",
                            "size": 8,
                            "identifier": ":\\__compound_literal.11"
                        },
                        {
                            "name": "__compound_literal.7",
                            "size": 44,
                            "identifier": ":\\__compound_literal.7"
                        },
                        {
                            "name": "__compound_literal.3",
                            "size": 12,
                            "identifier": ":\\__compound_literal.3"
                        },
                        {
                            "name": "delay_machine_code.0",
                            "size": 6,
                            "identifier": ":\\delay_machine_code.0"
                        },
                        {
                            "name": "CSWTCH.5941",
                            "size": 7,
                            "identifier": ":\\CSWTCH.5941"
                        },
                        {
                            "name": "ops.0",
                            "size": 80,
                            "identifier": ":\\ops.0"
                        },
                        {
                            "name": "l2cap_disconnected",
                            "size": 2,
                            "identifier": ":\\l2cap_disconnected"
                        },
                        {
                            "name": "CSWTCH.11862",
                            "size": 24,
                            "identifier": ":\\CSWTCH.11862"
                        },
                        {
                            "name": "att_exec_write_req",
                            "size": 4,
                            "identifier": ":\\att_exec_write_req"
                        },
                        {
                            "name": "att_handle_find_type_rsp",
                            "size": 4,
                            "identifier": ":\\att_handle_find_type_rsp"
                        },
                        {
                            "name": "att_handle_read_type_rsp",
                            "size": 4,
                            "identifier": ":\\att_handle_read_type_rsp"
                        },
                        {
                            "name": "att_handle_read_rsp",
                            "size": 4,
                            "identifier": ":\\att_handle_read_rsp"
                        },
                        {
                            "name": "att_handle_read_blob_rsp",
                            "size": 4,
                            "identifier": ":\\att_handle_read_blob_rsp"
                        },
                        {
                            "name": "att_handle_read_mult_rsp",
                            "size": 4,
                            "identifier": ":\\att_handle_read_mult_rsp"
                        },
                        {
                            "name": "att_handle_read_mult_vl_rsp",
                            "size": 4,
                            "identifier": ":\\att_handle_read_mult_vl_rsp"
                        },
                        {
                            "name": "att_handle_read_group_rsp",
                            "size": 4,
                            "identifier": ":\\att_handle_read_group_rsp"
                        },
                        {
                            "name": "att_handle_write_rsp",
                            "size": 4,
                            "identifier": ":\\att_handle_write_rsp"
                        },
                        {
                            "name": "att_handle_prepare_write_rsp",
                            "size": 4,
                            "identifier": ":\\att_handle_prepare_write_rsp"
                        },
                        {
                            "name": "att_handle_exec_write_rsp",
                            "size": 4,
                            "identifier": ":\\att_handle_exec_write_rsp"
                        },
                        {
                            "name": "att_confirm",
                            "size": 4,
                            "identifier": ":\\att_confirm"
                        },
                        {
                            "name": "find_next",
                            "size": 6,
                            "identifier": ":\\find_next"
                        },
                        {
                            "name": "ops.1",
                            "size": 40,
                            "identifier": ":\\ops.1"
                        },
                        {
                            "name": "smp_security_request",
                            "size": 4,
                            "identifier": ":\\smp_security_request"
                        },
                        {
                            "name": "smp_central_ident",
                            "size": 4,
                            "identifier": ":\\smp_central_ident"
                        },
                        {
                            "name": "smp_pairing_rsp",
                            "size": 4,
                            "identifier": ":\\smp_pairing_rsp"
                        },
                        {
                            "name": "smp_signing_info",
                            "size": 4,
                            "identifier": ":\\smp_signing_info"
                        },
                        {
                            "name": "CSWTCH.8609",
                            "size": 15,
                            "identifier": ":\\CSWTCH.8609"
                        },
                        {
                            "name": "CSWTCH.8614",
                            "size": 8,
                            "identifier": ":\\CSWTCH.8614"
                        },
                        {
                            "name": "CSWTCH.8611",
                            "size": 9,
                            "identifier": ":\\CSWTCH.8611"
                        },
                        {
                            "name": "pub_key_cb.0",
                            "size": 8,
                            "identifier": ":\\pub_key_cb.0"
                        },
                        {
                            "name": "salt.0",
                            "size": 16,
                            "identifier": ":\\salt.0"
                        },
                        {
                            "name": "transitions.0",
                            "size": 12,
                            "identifier": ":\\transitions.0"
                        },
                        {
                            "name": "rand_prio_high_vector_get",
                            "size": 4,
                            "identifier": ":\\rand_prio_high_vector_get"
                        },
                        {
                            "name": "_ZN5bliss3evtL14notify_timeoutE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss3evtL14notify_timeoutE"
                        },
                        {
                            "name": "_ZN5bliss3evtL11adv_timeoutE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss3evtL11adv_timeoutE"
                        },
                        {
                            "name": "_ZN5bliss3evtL16adv_wait_timeoutE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss3evtL16adv_wait_timeoutE"
                        },
                        {
                            "name": "_ZN5bliss3evtL14status_timeoutE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss3evtL14status_timeoutE"
                        },
                        {
                            "name": "_ZN5bliss3evtL13awake_timeoutE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss3evtL13awake_timeoutE"
                        },
                        {
                            "name": "_ZN5bliss3evtL17wait_sync_timeoutE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss3evtL17wait_sync_timeoutE"
                        },
                        {
                            "name": "_ZN5bliss3evtL19datapending_timeoutE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss3evtL19datapending_timeoutE"
                        },
                        {
                            "name": "_ZN5bliss3evtL11uptime_readE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss3evtL11uptime_readE"
                        },
                        {
                            "name": "_ZN5bliss3evtL14dev_event_sentE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss3evtL14dev_event_sentE"
                        },
                        {
                            "name": "_ZN5bliss3evt7phyphoxL8exp_loadE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss3evt7phyphoxL8exp_loadE"
                        },
                        {
                            "name": "_ZN5bliss3evtL16reboot_info_sentE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss3evtL16reboot_info_sentE"
                        },
                        {
                            "name": "_ZN5bliss3evtL7connectE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss3evtL7connectE"
                        },
                        {
                            "name": "_ZN5bliss3evtL10disconnectE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss3evtL10disconnectE"
                        },
                        {
                            "name": "_ZN5bliss3evt7phyphoxL9exp_startE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss3evt7phyphoxL9exp_startE"
                        },
                        {
                            "name": "_ZN5bliss3evt7phyphoxL9exp_pauseE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss3evt7phyphoxL9exp_pauseE"
                        },
                        {
                            "name": "_ZN5bliss3evtL15sensor_samplingE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss3evtL15sensor_samplingE"
                        },
                        {
                            "name": "_ZN5bliss3evtL11maintenanceE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss3evtL11maintenanceE"
                        },
                        {
                            "name": "_ZZN5bliss12StateMachine9initial_hEPKN2QP4QEvtEE6tatbl_",
                            "size": 12,
                            "identifier": ":\\_ZZN5bliss12StateMachine9initial_hEPKN2QP4QEvtEE6tatbl_"
                        },
                        {
                            "name": "_ZZN5bliss12StateMachine17wait_connection_hEPKN2QP4QEvtEE6tatbl_",
                            "size": 12,
                            "identifier": ":\\_ZZN5bliss12StateMachine17wait_connection_hEPKN2QP4QEvtEE6tatbl_"
                        },
                        {
                            "name": "_ZZN5bliss12StateMachine17wait_connection_hEPKN2QP4QEvtEE6tatbl__1",
                            "size": 12,
                            "identifier": ":\\_ZZN5bliss12StateMachine17wait_connection_hEPKN2QP4QEvtEE6tatbl__1"
                        },
                        {
                            "name": "_ZZN5bliss12StateMachine17wait_connection_hEPKN2QP4QEvtEE6tatbl__2",
                            "size": 12,
                            "identifier": ":\\_ZZN5bliss12StateMachine17wait_connection_hEPKN2QP4QEvtEE6tatbl__2"
                        },
                        {
                            "name": "_ZZN5bliss12StateMachine17wait_connection_hEPKN2QP4QEvtEE6tatbl__0",
                            "size": 12,
                            "identifier": ":\\_ZZN5bliss12StateMachine17wait_connection_hEPKN2QP4QEvtEE6tatbl__0"
                        },
                        {
                            "name": "_ZZN5bliss12StateMachine25wait_next_advertisement_hEPKN2QP4QEvtEE6tatbl__0",
                            "size": 12,
                            "identifier": ":\\_ZZN5bliss12StateMachine25wait_next_advertisement_hEPKN2QP4QEvtEE6tatbl__0"
                        },
                        {
                            "name": "_ZZN5bliss12StateMachine25wait_next_advertisement_hEPKN2QP4QEvtEE6tatbl_",
                            "size": 12,
                            "identifier": ":\\_ZZN5bliss12StateMachine25wait_next_advertisement_hEPKN2QP4QEvtEE6tatbl_"
                        },
                        {
                            "name": "_ZZN5bliss12StateMachine8active_hEPKN2QP4QEvtEE6tatbl_",
                            "size": 16,
                            "identifier": ":\\_ZZN5bliss12StateMachine8active_hEPKN2QP4QEvtEE6tatbl_"
                        },
                        {
                            "name": "_ZZN5bliss12StateMachine8active_hEPKN2QP4QEvtEE6tatbl__1",
                            "size": 16,
                            "identifier": ":\\_ZZN5bliss12StateMachine8active_hEPKN2QP4QEvtEE6tatbl__1"
                        },
                        {
                            "name": "_ZZN5bliss12StateMachine8active_hEPKN2QP4QEvtEE6tatbl__0",
                            "size": 16,
                            "identifier": ":\\_ZZN5bliss12StateMachine8active_hEPKN2QP4QEvtEE6tatbl__0"
                        },
                        {
                            "name": "_ZZN5bliss12StateMachine6Idle_hEPKN2QP4QEvtEE6tatbl_",
                            "size": 16,
                            "identifier": ":\\_ZZN5bliss12StateMachine6Idle_hEPKN2QP4QEvtEE6tatbl_"
                        },
                        {
                            "name": "_ZZN5bliss12StateMachine6Idle_hEPKN2QP4QEvtEE6tatbl__0",
                            "size": 16,
                            "identifier": ":\\_ZZN5bliss12StateMachine6Idle_hEPKN2QP4QEvtEE6tatbl__0"
                        },
                        {
                            "name": "_ZZN5bliss12StateMachine6Idle_hEPKN2QP4QEvtEE6tatbl__2",
                            "size": 16,
                            "identifier": ":\\_ZZN5bliss12StateMachine6Idle_hEPKN2QP4QEvtEE6tatbl__2"
                        },
                        {
                            "name": "_ZZN5bliss12StateMachine6Idle_hEPKN2QP4QEvtEE6tatbl__1",
                            "size": 16,
                            "identifier": ":\\_ZZN5bliss12StateMachine6Idle_hEPKN2QP4QEvtEE6tatbl__1"
                        },
                        {
                            "name": "_ZZN5bliss12StateMachine6Idle_hEPKN2QP4QEvtEE6tatbl__3",
                            "size": 16,
                            "identifier": ":\\_ZZN5bliss12StateMachine6Idle_hEPKN2QP4QEvtEE6tatbl__3"
                        },
                        {
                            "name": "_ZZN5bliss12StateMachine11wait_sync_hEPKN2QP4QEvtEE6tatbl__0",
                            "size": 16,
                            "identifier": ":\\_ZZN5bliss12StateMachine11wait_sync_hEPKN2QP4QEvtEE6tatbl__0"
                        },
                        {
                            "name": "_ZZN5bliss12StateMachine11wait_sync_hEPKN2QP4QEvtEE6tatbl__1",
                            "size": 16,
                            "identifier": ":\\_ZZN5bliss12StateMachine11wait_sync_hEPKN2QP4QEvtEE6tatbl__1"
                        },
                        {
                            "name": "_ZZN5bliss12StateMachine11wait_sync_hEPKN2QP4QEvtEE6tatbl_",
                            "size": 16,
                            "identifier": ":\\_ZZN5bliss12StateMachine11wait_sync_hEPKN2QP4QEvtEE6tatbl_"
                        },
                        {
                            "name": "_ZZN5bliss12StateMachine11wait_sync_hEPKN2QP4QEvtEE6tatbl__3",
                            "size": 16,
                            "identifier": ":\\_ZZN5bliss12StateMachine11wait_sync_hEPKN2QP4QEvtEE6tatbl__3"
                        },
                        {
                            "name": "_ZZN5bliss12StateMachine11wait_sync_hEPKN2QP4QEvtEE6tatbl__2",
                            "size": 16,
                            "identifier": ":\\_ZZN5bliss12StateMachine11wait_sync_hEPKN2QP4QEvtEE6tatbl__2"
                        },
                        {
                            "name": "_ZZN5bliss12StateMachine13maintenance_hEPKN2QP4QEvtEE6tatbl__0",
                            "size": 16,
                            "identifier": ":\\_ZZN5bliss12StateMachine13maintenance_hEPKN2QP4QEvtEE6tatbl__0"
                        },
                        {
                            "name": "_ZZN5bliss12StateMachine13maintenance_hEPKN2QP4QEvtEE6tatbl_",
                            "size": 16,
                            "identifier": ":\\_ZZN5bliss12StateMachine13maintenance_hEPKN2QP4QEvtEE6tatbl_"
                        },
                        {
                            "name": "_ZZN5bliss3bleL9onConnectEP7bt_connhE15exchange_params",
                            "size": 4,
                            "identifier": ":\\_ZZN5bliss3bleL9onConnectEP7bt_connhE15exchange_params"
                        },
                        {
                            "name": "_ZN5bliss3ble3advL20maintenance_adv_dataE",
                            "size": 16,
                            "identifier": ":\\_ZN5bliss3ble3advL20maintenance_adv_dataE"
                        },
                        {
                            "name": "_ZN5bliss3ble3advL6paramsE",
                            "size": 20,
                            "identifier": ":\\_ZN5bliss3ble3advL6paramsE"
                        },
                        {
                            "name": "_ZN5bliss3ble3advL15adv_normal_dataE",
                            "size": 16,
                            "identifier": ":\\_ZN5bliss3ble3advL15adv_normal_dataE"
                        },
                        {
                            "name": "._anon_239",
                            "size": 20,
                            "identifier": ":\\._anon_239"
                        },
                        {
                            "name": "._anon_237",
                            "size": 5,
                            "identifier": ":\\._anon_237"
                        },
                        {
                            "name": "._anon_235",
                            "size": 20,
                            "identifier": ":\\._anon_235"
                        },
                        {
                            "name": "._anon_233",
                            "size": 5,
                            "identifier": ":\\._anon_233"
                        },
                        {
                            "name": "_ZN5bliss3bleL25bt_conn_cb_conn_callbacksE",
                            "size": 28,
                            "identifier": ":\\_ZN5bliss3bleL25bt_conn_cb_conn_callbacksE"
                        },
                        {
                            "name": "_ZN5bliss6eventsL13mutex_timeoutE",
                            "size": 8,
                            "identifier": ":\\_ZN5bliss6eventsL13mutex_timeoutE"
                        },
                        {
                            "name": "_ZN5bliss6eventsL12sm_new_eventE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss6eventsL12sm_new_eventE"
                        },
                        {
                            "name": "_GLOBAL__sub_I__ZN5bliss6events6eventsE",
                            "size": 40,
                            "identifier": ":\\_GLOBAL__sub_I__ZN5bliss6events6eventsE"
                        },
                        {
                            "name": "_ZZN5bliss5clockL13month_to_secsEiiE18secs_through_month",
                            "size": 48,
                            "identifier": ":\\_ZZN5bliss5clockL13month_to_secsEiiE18secs_through_month"
                        },
                        {
                            "name": "_ZN5bliss5clockL12SYNC_TIMEOUTE",
                            "size": 8,
                            "identifier": ":\\_ZN5bliss5clockL12SYNC_TIMEOUTE"
                        },
                        {
                            "name": "_ZN5bliss5clockL13days_in_monthE",
                            "size": 12,
                            "identifier": ":\\_ZN5bliss5clockL13days_in_monthE"
                        },
                        {
                            "name": "_ZN5bliss5clockL10first_syncE",
                            "size": 1,
                            "identifier": ":\\_ZN5bliss5clockL10first_syncE"
                        },
                        {
                            "name": "_ZN5bliss5clockL17SYNC_HOUR_TIMEOUTE",
                            "size": 8,
                            "identifier": ":\\_ZN5bliss5clockL17SYNC_HOUR_TIMEOUTE"
                        },
                        {
                            "name": "_ZN5bliss7serviceL18attr_bliss_serviceE",
                            "size": 320,
                            "identifier": ":\\_ZN5bliss7serviceL18attr_bliss_serviceE"
                        },
                        {
                            "name": "._anon_249",
                            "size": 4,
                            "identifier": ":\\._anon_249"
                        },
                        {
                            "name": "._anon_248",
                            "size": 8,
                            "identifier": ":\\._anon_248"
                        },
                        {
                            "name": "_ZN5bliss4uuid4chrcL10diagnosticE",
                            "size": 17,
                            "identifier": ":\\_ZN5bliss4uuid4chrcL10diagnosticE"
                        },
                        {
                            "name": "._anon_247",
                            "size": 4,
                            "identifier": ":\\._anon_247"
                        },
                        {
                            "name": "._anon_246",
                            "size": 8,
                            "identifier": ":\\._anon_246"
                        },
                        {
                            "name": "_ZN5bliss4uuid4chrcL12current_timeE",
                            "size": 17,
                            "identifier": ":\\_ZN5bliss4uuid4chrcL12current_timeE"
                        },
                        {
                            "name": "._anon_245",
                            "size": 4,
                            "identifier": ":\\._anon_245"
                        },
                        {
                            "name": "._anon_244",
                            "size": 8,
                            "identifier": ":\\._anon_244"
                        },
                        {
                            "name": "_ZN5bliss4uuid4chrcL8timesyncE",
                            "size": 17,
                            "identifier": ":\\_ZN5bliss4uuid4chrcL8timesyncE"
                        },
                        {
                            "name": "._anon_243",
                            "size": 4,
                            "identifier": ":\\._anon_243"
                        },
                        {
                            "name": "._anon_241",
                            "size": 4,
                            "identifier": ":\\._anon_241"
                        },
                        {
                            "name": "._anon_240",
                            "size": 8,
                            "identifier": ":\\._anon_240"
                        },
                        {
                            "name": "_ZN5bliss4uuid4chrcL5eventE",
                            "size": 17,
                            "identifier": ":\\_ZN5bliss4uuid4chrcL5eventE"
                        },
                        {
                            "name": "._anon_236",
                            "size": 8,
                            "identifier": ":\\._anon_236"
                        },
                        {
                            "name": "_ZN5bliss4uuid4chrcL6uptimeE",
                            "size": 17,
                            "identifier": ":\\_ZN5bliss4uuid4chrcL6uptimeE"
                        },
                        {
                            "name": "._anon_234",
                            "size": 8,
                            "identifier": ":\\._anon_234"
                        },
                        {
                            "name": "_ZN5bliss4uuid4chrcL7versionE",
                            "size": 17,
                            "identifier": ":\\_ZN5bliss4uuid4chrcL7versionE"
                        },
                        {
                            "name": "._anon_232",
                            "size": 4,
                            "identifier": ":\\._anon_232"
                        },
                        {
                            "name": "_ZN5bliss7serviceL13bliss_serviceE",
                            "size": 8,
                            "identifier": ":\\_ZN5bliss7serviceL13bliss_serviceE"
                        },
                        {
                            "name": "_ZN5bliss4uuidL7serviceE",
                            "size": 17,
                            "identifier": ":\\_ZN5bliss4uuidL7serviceE"
                        },
                        {
                            "name": "_GLOBAL__sub_I_log_const_bliss_diag",
                            "size": 40,
                            "identifier": ":\\_GLOBAL__sub_I_log_const_bliss_diag"
                        },
                        {
                            "name": "_ZN12_GLOBAL__N_1L14l_reservedEvt_E",
                            "size": 16,
                            "identifier": ":\\_ZN12_GLOBAL__N_1L14l_reservedEvt_E"
                        },
                        {
                            "name": "_ZN12_GLOBAL__N_1L14Q_this_module_E",
                            "size": 52,
                            "identifier": ":\\_ZN12_GLOBAL__N_1L14Q_this_module_E"
                        },
                        {
                            "name": "_GLOBAL__sub_I__ZN2QP2QF8maxPool_E",
                            "size": 36,
                            "identifier": ":\\_GLOBAL__sub_I__ZN2QP2QF8maxPool_E"
                        },
                        {
                            "name": "_GLOBAL__sub_I__ZN2QP8QTimeEvt12timeEvtHead_E",
                            "size": 28,
                            "identifier": ":\\_GLOBAL__sub_I__ZN2QP8QTimeEvt12timeEvtHead_E"
                        },
                        {
                            "name": "_ZN11phyphox_ble4uuid7charactL5EVENTE",
                            "size": 17,
                            "identifier": ":\\_ZN11phyphox_ble4uuid7charactL5EVENTE"
                        },
                        {
                            "name": "._anon_191",
                            "size": 36,
                            "identifier": ":\\._anon_191"
                        },
                        {
                            "name": "_ZN11phyphox_ble4uuid7charactL7EXP_XMLE",
                            "size": 17,
                            "identifier": ":\\_ZN11phyphox_ble4uuid7charactL7EXP_XMLE"
                        },
                        {
                            "name": "_ZN11phyphox_bleL12phy_phox_svcE",
                            "size": 8,
                            "identifier": ":\\_ZN11phyphox_bleL12phy_phox_svcE"
                        },
                        {
                            "name": "_ZN11phyphox_bleL17attr_phy_phox_svcE",
                            "size": 120,
                            "identifier": ":\\_ZN11phyphox_bleL17attr_phy_phox_svcE"
                        },
                        {
                            "name": "_ZN11phyphox_ble4uuidL7SERVICEE",
                            "size": 17,
                            "identifier": ":\\_ZN11phyphox_ble4uuidL7SERVICEE"
                        },
                        {
                            "name": "_ZL25__init___device_dts_ord_8",
                            "size": 8,
                            "identifier": ":\\_ZL25__init___device_dts_ord_8"
                        },
                        {
                            "name": "_ZL17adc_ads1219_cfg_0",
                            "size": 8,
                            "identifier": ":\\_ZL17adc_ads1219_cfg_0"
                        },
                        {
                            "name": "_ZL18ads1219_driver_api",
                            "size": 12,
                            "identifier": ":\\_ZL18ads1219_driver_api"
                        },
                        {
                            "name": "_ZL20__devstate_dts_ord_8",
                            "size": 2,
                            "identifier": ":\\_ZL20__devstate_dts_ord_8"
                        },
                        {
                            "name": "_ZN6rv3028L12DEFAULT_INITE",
                            "size": 24,
                            "identifier": ":\\_ZN6rv3028L12DEFAULT_INITE"
                        },
                        {
                            "name": "_ZL27__init___device_dts_ord_100",
                            "size": 8,
                            "identifier": ":\\_ZL27__init___device_dts_ord_100"
                        },
                        {
                            "name": "_ZL16rtc_rv3028_cfg_0",
                            "size": 16,
                            "identifier": ":\\_ZL16rtc_rv3028_cfg_0"
                        },
                        {
                            "name": "_ZN6rv3028L7rtc_apiE",
                            "size": 28,
                            "identifier": ":\\_ZN6rv3028L7rtc_apiE"
                        },
                        {
                            "name": "_ZL22__devstate_dts_ord_100",
                            "size": 2,
                            "identifier": ":\\_ZL22__devstate_dts_ord_100"
                        },
                        {
                            "name": "_ZN6rv3028L12INITIAL_TIMEE",
                            "size": 40,
                            "identifier": ":\\_ZN6rv3028L12INITIAL_TIMEE"
                        },
                        {
                            "name": "_ZN8cy15b104L11RDID_DEV_IDE",
                            "size": 9,
                            "identifier": ":\\_ZN8cy15b104L11RDID_DEV_IDE"
                        },
                        {
                            "name": "levels.0",
                            "size": 24,
                            "identifier": ":\\levels.0"
                        },
                        {
                            "name": "wait_q.0",
                            "size": 8,
                            "identifier": ":\\wait_q.0"
                        },
                        {
                            "name": "q",
                            "size": 32,
                            "identifier": ":\\q"
                        },
                        {
                            "name": "p256_zdblu",
                            "size": 184,
                            "identifier": ":\\p256_zdblu"
                        },
                        {
                            "name": "param_a",
                            "size": 32,
                            "identifier": ":\\param_a"
                        },
                        {
                            "name": "p256_zaddc",
                            "size": 204,
                            "identifier": ":\\p256_zaddc"
                        },
                        {
                            "name": "p256_zaddu",
                            "size": 152,
                            "identifier": ":\\p256_zaddu"
                        },
                        {
                            "name": "param_b",
                            "size": 32,
                            "identifier": ":\\param_b"
                        },
                        {
                            "name": "qp1",
                            "size": 32,
                            "identifier": ":\\qp1"
                        },
                        {
                            "name": "cq",
                            "size": 32,
                            "identifier": ":\\cq"
                        },
                        {
                            "name": "inv_a",
                            "size": 32,
                            "identifier": ":\\inv_a"
                        },
                        {
                            "name": "base_point",
                            "size": 64,
                            "identifier": ":\\base_point"
                        },
                        {
                            "name": "TWO52",
                            "size": 16,
                            "identifier": ":\\TWO52"
                        },
                        {
                            "name": "__sfputc_r",
                            "size": 42,
                            "identifier": ":\\__sfputc_r"
                        },
                        {
                            "name": "std",
                            "size": 72,
                            "identifier": ":\\std"
                        },
                        {
                            "name": "impure_data",
                            "size": 96,
                            "identifier": ":\\impure_data"
                        },
                        {
                            "name": "sym_XPKSFPKFBNSTZZU4FUMGC3XRHAVS24BBL53HRMA",
                            "size": 24,
                            "identifier": ":\\sym_XPKSFPKFBNSTZZU4FUMGC3XRHAVS24BBL53HRMA"
                        },
                        {
                            "name": "__aeabi_ul2d",
                            "size": 106,
                            "identifier": ":\\__aeabi_ul2d"
                        },
                        {
                            "name": "sym_QW6JOH7RCJIC2YFNJEURX5QNB5EIQT646EHIWEA",
                            "size": 20,
                            "identifier": ":\\sym_QW6JOH7RCJIC2YFNJEURX5QNB5EIQT646EHIWEA"
                        },
                        {
                            "name": "_sbrk_r",
                            "size": 32,
                            "identifier": ":\\_sbrk_r"
                        },
                        {
                            "name": "sym_JTNP7UFMKYWSFCHJEA5IASO3QVW3HK4YV6YOJYQ",
                            "size": 98,
                            "identifier": ":\\sym_JTNP7UFMKYWSFCHJEA5IASO3QVW3HK4YV6YOJYQ"
                        },
                        {
                            "name": "_write_r",
                            "size": 36,
                            "identifier": ":\\_write_r"
                        },
                        {
                            "name": "_ZN4carl3hal10power_mgmt11enter_sleepE8pm_state",
                            "size": 2,
                            "identifier": ":\\_ZN4carl3hal10power_mgmt11enter_sleepE8pm_state"
                        },
                        {
                            "name": "sym_EKDQHRHOWISU7QCQSGE4X3J4VBX22VVETALDGWI",
                            "size": 6,
                            "identifier": ":\\sym_EKDQHRHOWISU7QCQSGE4X3J4VBX22VVETALDGWI"
                        },
                        {
                            "name": "sym_7HP2F3XCOOTO7JW2SJO6PGUER2VAQ7RTRD56QUY",
                            "size": 108,
                            "identifier": ":\\sym_7HP2F3XCOOTO7JW2SJO6PGUER2VAQ7RTRD56QUY"
                        },
                        {
                            "name": "__floatdidf",
                            "size": 90,
                            "identifier": ":\\__floatdidf"
                        },
                        {
                            "name": "memcmp",
                            "size": 32,
                            "identifier": ":\\memcmp"
                        },
                        {
                            "name": "sym_PLOW4TMGVQT52FP2ERNRL6S5EELE2YO563WRPJA",
                            "size": 20,
                            "identifier": ":\\sym_PLOW4TMGVQT52FP2ERNRL6S5EELE2YO563WRPJA"
                        },
                        {
                            "name": "_read_r",
                            "size": 36,
                            "identifier": ":\\_read_r"
                        },
                        {
                            "name": "sym_RPHL2J7CVNKM6GKLDIFI4NVAPZE2FHTYW4VJSJI",
                            "size": 64,
                            "identifier": ":\\sym_RPHL2J7CVNKM6GKLDIFI4NVAPZE2FHTYW4VJSJI"
                        },
                        {
                            "name": "sym_IMNEYE333DZSYFXBOKOMWVRET5JB5STH5YU7A5A",
                            "size": 4,
                            "identifier": ":\\sym_IMNEYE333DZSYFXBOKOMWVRET5JB5STH5YU7A5A"
                        },
                        {
                            "name": "sym_BDDELQSYWHVCCHSF6HGFFAORZOC56R54KIF45KY",
                            "size": 4,
                            "identifier": ":\\sym_BDDELQSYWHVCCHSF6HGFFAORZOC56R54KIF45KY"
                        },
                        {
                            "name": "sym_NIQMZN22R7GGCSNM3BZ25GTCR6D457XB3DIUGWA",
                            "size": 64,
                            "identifier": ":\\sym_NIQMZN22R7GGCSNM3BZ25GTCR6D457XB3DIUGWA"
                        },
                        {
                            "name": "__aeabi_cdcmple",
                            "size": 16,
                            "identifier": ":\\__aeabi_cdcmple"
                        },
                        {
                            "name": "sym_62B4NCI2CQZLPPINCQVCHO6SYLZVDAWVVCHWS3I",
                            "size": 22,
                            "identifier": ":\\sym_62B4NCI2CQZLPPINCQVCHO6SYLZVDAWVVCHWS3I"
                        },
                        {
                            "name": "abort",
                            "size": 14,
                            "identifier": ":\\abort"
                        },
                        {
                            "name": "_ZTVN2QP4QHsmE",
                            "size": 20,
                            "identifier": ":\\_ZTVN2QP4QHsmE"
                        },
                        {
                            "name": "sym_LKCMUIZAJSOHIZE54V37DJ4ULJ25HGEY7F7ST5I",
                            "size": 8,
                            "identifier": ":\\sym_LKCMUIZAJSOHIZE54V37DJ4ULJ25HGEY7F7ST5I"
                        },
                        {
                            "name": "mpsl_fem_lna_is_configured",
                            "size": 8,
                            "identifier": ":\\mpsl_fem_lna_is_configured"
                        },
                        {
                            "name": "sym_R5RFYNEZN3LQHKUKJDN3JLSNHLY4DPKXW3KZMYA",
                            "size": 6,
                            "identifier": ":\\sym_R5RFYNEZN3LQHKUKJDN3JLSNHLY4DPKXW3KZMYA"
                        },
                        {
                            "name": "sym_3BV6HS2RZST6R6C5ZWOISO6OTZHTSW3BAFXBSVQ",
                            "size": 60,
                            "identifier": ":\\sym_3BV6HS2RZST6R6C5ZWOISO6OTZHTSW3BAFXBSVQ"
                        },
                        {
                            "name": "sdc_hci_cmd_le_read_remote_features",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_read_remote_features"
                        },
                        {
                            "name": "sym_Y6HXZQJARJ7FDWKGPREPQGRRGDOQMXHDALUK6KY",
                            "size": 62,
                            "identifier": ":\\sym_Y6HXZQJARJ7FDWKGPREPQGRRGDOQMXHDALUK6KY"
                        },
                        {
                            "name": "sym_BLMJ5IIKWMCUMGRAJC47JTAD5DUGOY4TIBII5HY",
                            "size": 106,
                            "identifier": ":\\sym_BLMJ5IIKWMCUMGRAJC47JTAD5DUGOY4TIBII5HY"
                        },
                        {
                            "name": "sym_IFJHPQV3B4EIN6OIUP3LZSPJBF5HLX2VYD323GA",
                            "size": 10,
                            "identifier": ":\\sym_IFJHPQV3B4EIN6OIUP3LZSPJBF5HLX2VYD323GA"
                        },
                        {
                            "name": "sym_3SK52U5TD4ACVVYKWS6UI6ZPWKSLV6BW5IGCPJI",
                            "size": 112,
                            "identifier": ":\\sym_3SK52U5TD4ACVVYKWS6UI6ZPWKSLV6BW5IGCPJI"
                        },
                        {
                            "name": "sym_PHVPWYOPAKZKJKURGZ7GXJVYEVEK2ONKU5LBGEQ",
                            "size": 36,
                            "identifier": ":\\sym_PHVPWYOPAKZKJKURGZ7GXJVYEVEK2ONKU5LBGEQ"
                        },
                        {
                            "name": "sym_YA57TPZ3CLQ6C73TD2RIGTELUAMYOOAKHU5T7RQ",
                            "size": 96,
                            "identifier": ":\\sym_YA57TPZ3CLQ6C73TD2RIGTELUAMYOOAKHU5T7RQ"
                        },
                        {
                            "name": "sym_6PVOPWDLWTXOTRZZ7LP36TLYTLPTQHNAUQNFHEA",
                            "size": 20,
                            "identifier": ":\\sym_6PVOPWDLWTXOTRZZ7LP36TLYTLPTQHNAUQNFHEA"
                        },
                        {
                            "name": "_fstat_r",
                            "size": 36,
                            "identifier": ":\\_fstat_r"
                        },
                        {
                            "name": "sdc_hci_cmd_vs_event_length_set",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_vs_event_length_set"
                        },
                        {
                            "name": "sym_4FRIF7JGOVTE7JZ3KYQVPKX5PKSXGKCIHE6GQDY",
                            "size": 22,
                            "identifier": ":\\sym_4FRIF7JGOVTE7JZ3KYQVPKX5PKSXGKCIHE6GQDY"
                        },
                        {
                            "name": "sym_B62EJKCCJ4JFC5I4BFTUJG7GNOKGWQ4KKFBS6RI",
                            "size": 16,
                            "identifier": ":\\sym_B62EJKCCJ4JFC5I4BFTUJG7GNOKGWQ4KKFBS6RI"
                        },
                        {
                            "name": "sym_MGCUANL7Q2CUPWKYBFLWSWSNXIEEYBPZTHT2VZI",
                            "size": 18,
                            "identifier": ":\\sym_MGCUANL7Q2CUPWKYBFLWSWSNXIEEYBPZTHT2VZI"
                        },
                        {
                            "name": "sym_PT2LT65JTEWXEGBFKFJG6BCMFVOJAD3UAGCYAUI",
                            "size": 20,
                            "identifier": ":\\sym_PT2LT65JTEWXEGBFKFJG6BCMFVOJAD3UAGCYAUI"
                        },
                        {
                            "name": "sym_QKSVBALUN2V4XT4OCC56LE75IAYLDFRRIVLBZ2Q",
                            "size": 36,
                            "identifier": ":\\sym_QKSVBALUN2V4XT4OCC56LE75IAYLDFRRIVLBZ2Q"
                        },
                        {
                            "name": "__aeabi_fcmplt",
                            "size": 18,
                            "identifier": ":\\__aeabi_fcmplt"
                        },
                        {
                            "name": "sym_476LRB5XNUARAHCHHC7ZAIGPFC5VZ4W2N4467LI",
                            "size": 92,
                            "identifier": ":\\sym_476LRB5XNUARAHCHHC7ZAIGPFC5VZ4W2N4467LI"
                        },
                        {
                            "name": "sym_VWGRUQT3LYZHLYS5KJ7UOCJEHLDJTWH4RVJBGKQ",
                            "size": 64,
                            "identifier": ":\\sym_VWGRUQT3LYZHLYS5KJ7UOCJEHLDJTWH4RVJBGKQ"
                        },
                        {
                            "name": "sym_FIJW4TR7AWR6OLWCHL3HTVQSVWXOS6T6XISXCQQ",
                            "size": 6,
                            "identifier": ":\\sym_FIJW4TR7AWR6OLWCHL3HTVQSVWXOS6T6XISXCQQ"
                        },
                        {
                            "name": "sym_4O3EP57XWWWRY57PVJMDKXNE25ZWFBDV6LLBFQQ",
                            "size": 22,
                            "identifier": ":\\sym_4O3EP57XWWWRY57PVJMDKXNE25ZWFBDV6LLBFQQ"
                        },
                        {
                            "name": "sym_4DOGMDZGTALJPSDK26RDOFYJAUF2WWYUQSK5XNA",
                            "size": 28,
                            "identifier": ":\\sym_4DOGMDZGTALJPSDK26RDOFYJAUF2WWYUQSK5XNA"
                        },
                        {
                            "name": "sdc_hci_cmd_le_read_buffer_size",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_read_buffer_size"
                        },
                        {
                            "name": "sym_WCOWXKSKBH7DOKKKINFZAPWXKW4NYAUCJWTUKBI",
                            "size": 44,
                            "identifier": ":\\sym_WCOWXKSKBH7DOKKKINFZAPWXKW4NYAUCJWTUKBI"
                        },
                        {
                            "name": "sym_DSAIJDVMFSSNYDQYP4G3W4ZBYTG4PAWPSVOBJ2Y",
                            "size": 12,
                            "identifier": ":\\sym_DSAIJDVMFSSNYDQYP4G3W4ZBYTG4PAWPSVOBJ2Y"
                        },
                        {
                            "name": "sym_TPWVJBQKX2TXZDZ4IZ6XDJYVEDFBPIX3TMZMRCQ",
                            "size": 4,
                            "identifier": ":\\sym_TPWVJBQKX2TXZDZ4IZ6XDJYVEDFBPIX3TMZMRCQ"
                        },
                        {
                            "name": "sym_HNCDHITBYWLO4GMOSPKCO7YXRRWIUQ2IKIZ4C5A",
                            "size": 50,
                            "identifier": ":\\sym_HNCDHITBYWLO4GMOSPKCO7YXRRWIUQ2IKIZ4C5A"
                        },
                        {
                            "name": "__ltsf2",
                            "size": 102,
                            "identifier": ":\\__ltsf2"
                        },
                        {
                            "name": "sym_Q5GJELDUJDXPR5M7PG33JSPACOMZ32BYQV2DESA",
                            "size": 64,
                            "identifier": ":\\sym_Q5GJELDUJDXPR5M7PG33JSPACOMZ32BYQV2DESA"
                        },
                        {
                            "name": "sdc_hci_cmd_vs_qos_conn_event_report_enable",
                            "size": 10,
                            "identifier": ":\\sdc_hci_cmd_vs_qos_conn_event_report_enable"
                        },
                        {
                            "name": "sym_YS3AHD7GWBHZEQHPIQANPGALEXB4QGY5O2DQKRY",
                            "size": 8,
                            "identifier": ":\\sym_YS3AHD7GWBHZEQHPIQANPGALEXB4QGY5O2DQKRY"
                        },
                        {
                            "name": "sym_VSILKYHVQ5DVF6LG5MG267DQVA3A2XZQ6FSCLXA",
                            "size": 192,
                            "identifier": ":\\sym_VSILKYHVQ5DVF6LG5MG267DQVA3A2XZQ6FSCLXA"
                        },
                        {
                            "name": "_kill_r",
                            "size": 36,
                            "identifier": ":\\_kill_r"
                        },
                        {
                            "name": "sym_RUQBFILZ5CHV2AAL6C3D2J5Y33TCCAPZTHBGZ3A",
                            "size": 86,
                            "identifier": ":\\sym_RUQBFILZ5CHV2AAL6C3D2J5Y33TCCAPZTHBGZ3A"
                        },
                        {
                            "name": "sdc_hci_cmd_le_set_privacy_mode",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_set_privacy_mode"
                        },
                        {
                            "name": "sdc_hci_cmd_cb_read_transmit_power_level",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_cb_read_transmit_power_level"
                        },
                        {
                            "name": "mpsl_timeslot_request",
                            "size": 118,
                            "identifier": ":\\mpsl_timeslot_request"
                        },
                        {
                            "name": "sym_G4TIIR7KO3GHFF45HCHTIL3RIPRK2LVDQADUYJQ",
                            "size": 28,
                            "identifier": ":\\sym_G4TIIR7KO3GHFF45HCHTIL3RIPRK2LVDQADUYJQ"
                        },
                        {
                            "name": "sym_PX4SKXGNX25XLMGGWQM65ZRFHI6666YGHL6AYMA",
                            "size": 48,
                            "identifier": ":\\sym_PX4SKXGNX25XLMGGWQM65ZRFHI6666YGHL6AYMA"
                        },
                        {
                            "name": "bt_addr_any",
                            "size": 6,
                            "identifier": ":\\bt_addr_any"
                        },
                        {
                            "name": "sym_A4JUKJUCTJV55V2WD6TXU63VO5GAMB4XA4EE56Q",
                            "size": 128,
                            "identifier": ":\\sym_A4JUKJUCTJV55V2WD6TXU63VO5GAMB4XA4EE56Q"
                        },
                        {
                            "name": "sym_YAZXXBE3UO3G4AM6TR2NFBXVHOGUGHIF6JXVVLI",
                            "size": 36,
                            "identifier": ":\\sym_YAZXXBE3UO3G4AM6TR2NFBXVHOGUGHIF6JXVVLI"
                        },
                        {
                            "name": "sym_7TCBS6SSQW4V3WJBKAXLOSA2HN4KF7UYAM2QFKI",
                            "size": 14,
                            "identifier": ":\\sym_7TCBS6SSQW4V3WJBKAXLOSA2HN4KF7UYAM2QFKI"
                        },
                        {
                            "name": "sym_72KBD3C5B67H6PWOG3S7CCYVGGTJG6L3WNWZOFQ",
                            "size": 4,
                            "identifier": ":\\sym_72KBD3C5B67H6PWOG3S7CCYVGGTJG6L3WNWZOFQ"
                        },
                        {
                            "name": "sym_QQVHHHKNBN5TJBK4NCDSUYAMXMOEHFSL7HE7RRA",
                            "size": 8,
                            "identifier": ":\\sym_QQVHHHKNBN5TJBK4NCDSUYAMXMOEHFSL7HE7RRA"
                        },
                        {
                            "name": "sym_E5Q6O4GY4KO3GMW7WJYXLZKHO7ZGDWLU4ZPAKWA",
                            "size": 62,
                            "identifier": ":\\sym_E5Q6O4GY4KO3GMW7WJYXLZKHO7ZGDWLU4ZPAKWA"
                        },
                        {
                            "name": "sym_VPXIA5P4C72CY3ME4ZVXBADOKEG5S4C7Z7QZZFA",
                            "size": 6,
                            "identifier": ":\\sym_VPXIA5P4C72CY3ME4ZVXBADOKEG5S4C7Z7QZZFA"
                        },
                        {
                            "name": "sym_YNH6KDZL2GMJ2KPUX5DEER63BRE7IOGBY3KCQAQ",
                            "size": 32,
                            "identifier": ":\\sym_YNH6KDZL2GMJ2KPUX5DEER63BRE7IOGBY3KCQAQ"
                        },
                        {
                            "name": "sym_D6Z72QTHOBKAEBKPZKUE4VJPVZJ36GAIUXFUHKY",
                            "size": 210,
                            "identifier": ":\\sym_D6Z72QTHOBKAEBKPZKUE4VJPVZJ36GAIUXFUHKY"
                        },
                        {
                            "name": "sym_OTZAOT4DEZSL3R4MXRNUS2BIBKPPCOEO2SMZYAI",
                            "size": 4,
                            "identifier": ":\\sym_OTZAOT4DEZSL3R4MXRNUS2BIBKPPCOEO2SMZYAI"
                        },
                        {
                            "name": "sym_IZN3QWH7I4A7OX5E6DK53W35W3UX25DTZ6CQ57Q",
                            "size": 22,
                            "identifier": ":\\sym_IZN3QWH7I4A7OX5E6DK53W35W3UX25DTZ6CQ57Q"
                        },
                        {
                            "name": "sdc_hci_cmd_vs_peripheral_latency_mode_set",
                            "size": 8,
                            "identifier": ":\\sdc_hci_cmd_vs_peripheral_latency_mode_set"
                        },
                        {
                            "name": "sym_GI7KSEEMTJQ7HR2XTQJ6A3EAB54YYLMWKNL2RBA",
                            "size": 6,
                            "identifier": ":\\sym_GI7KSEEMTJQ7HR2XTQJ6A3EAB54YYLMWKNL2RBA"
                        },
                        {
                            "name": "sym_RGKYP5TXYS27EGT6ZHZS5EDDAZK5QGTWLBOBJEA",
                            "size": 34,
                            "identifier": ":\\sym_RGKYP5TXYS27EGT6ZHZS5EDDAZK5QGTWLBOBJEA"
                        },
                        {
                            "name": "sym_OLTN5HGCU3P74AJAQRGNYBUXASUKWF3RI2Q3H5Q",
                            "size": 108,
                            "identifier": ":\\sym_OLTN5HGCU3P74AJAQRGNYBUXASUKWF3RI2Q3H5Q"
                        },
                        {
                            "name": "sym_3LQGLF52CJLOKQOJSNFVLTD3CW6GGPJMARVGQNQ",
                            "size": 28,
                            "identifier": ":\\sym_3LQGLF52CJLOKQOJSNFVLTD3CW6GGPJMARVGQNQ"
                        },
                        {
                            "name": "sym_MYZDSWHZMVTUGPWK7CFFVMNCPRPZBKC3UH2GTLQ",
                            "size": 10,
                            "identifier": ":\\sym_MYZDSWHZMVTUGPWK7CFFVMNCPRPZBKC3UH2GTLQ"
                        },
                        {
                            "name": "sdc_support_adv",
                            "size": 26,
                            "identifier": ":\\sdc_support_adv"
                        },
                        {
                            "name": "__sf_fake_stderr",
                            "size": 32,
                            "identifier": ":\\__sf_fake_stderr"
                        },
                        {
                            "name": "sym_V6OT7EKSQC3XEJK5ZWNACQF7LLICCSE7X3C3ECY",
                            "size": 68,
                            "identifier": ":\\sym_V6OT7EKSQC3XEJK5ZWNACQF7LLICCSE7X3C3ECY"
                        },
                        {
                            "name": "bt_dev",
                            "size": 400,
                            "identifier": ":\\bt_dev"
                        },
                        {
                            "name": "_fwalk_reent",
                            "size": 62,
                            "identifier": ":\\_fwalk_reent"
                        },
                        {
                            "name": "__device_dts_ord_73",
                            "size": 28,
                            "identifier": ":\\__device_dts_ord_73"
                        },
                        {
                            "name": "sym_JHXS4T25BAYOMDDZMWPX3HMPENRV73GSV2RYHAI",
                            "size": 28,
                            "identifier": ":\\sym_JHXS4T25BAYOMDDZMWPX3HMPENRV73GSV2RYHAI"
                        },
                        {
                            "name": "_svfiprintf_r",
                            "size": 504,
                            "identifier": ":\\_svfiprintf_r"
                        },
                        {
                            "name": "sym_JNP3XPG2S47QWEENF5PX2JQ36HNB7C2PPNDBQRI",
                            "size": 46,
                            "identifier": ":\\sym_JNP3XPG2S47QWEENF5PX2JQ36HNB7C2PPNDBQRI"
                        },
                        {
                            "name": "mpsl_fem_device_config_254_apply_get",
                            "size": 6,
                            "identifier": ":\\mpsl_fem_device_config_254_apply_get"
                        },
                        {
                            "name": "snprintf",
                            "size": 104,
                            "identifier": ":\\snprintf"
                        },
                        {
                            "name": "sym_N2NJCIBZFHVP7II7LSOD6U4WPOYSC3U3IRJ6NLY",
                            "size": 16,
                            "identifier": ":\\sym_N2NJCIBZFHVP7II7LSOD6U4WPOYSC3U3IRJ6NLY"
                        },
                        {
                            "name": "__gtdf2",
                            "size": 138,
                            "identifier": ":\\__gtdf2"
                        },
                        {
                            "name": "sym_VQ35Q3R547AGSAUE3MG4FJPAHAQLVUOXVCL6PHY",
                            "size": 3,
                            "identifier": ":\\sym_VQ35Q3R547AGSAUE3MG4FJPAHAQLVUOXVCL6PHY"
                        },
                        {
                            "name": "sym_24PTBIAZ2OKSUMWBHATZCO4EQUFF3BOLAN2QX4Y",
                            "size": 34,
                            "identifier": ":\\sym_24PTBIAZ2OKSUMWBHATZCO4EQUFF3BOLAN2QX4Y"
                        },
                        {
                            "name": "sym_ZG4AW57AAT4BVE2J2CU4KMCCWK46ENDRPKBYXEQ",
                            "size": 36,
                            "identifier": ":\\sym_ZG4AW57AAT4BVE2J2CU4KMCCWK46ENDRPKBYXEQ"
                        },
                        {
                            "name": "sym_UDZCFPCYSG5E2MUJ3CH3H5GF4YJLF3Y6KNH3ZRQ",
                            "size": 16,
                            "identifier": ":\\sym_UDZCFPCYSG5E2MUJ3CH3H5GF4YJLF3Y6KNH3ZRQ"
                        },
                        {
                            "name": "sym_QUXPDBBA3LF6URTUQCXVFN4UTAQY2K4DGZD5OMY",
                            "size": 26,
                            "identifier": ":\\sym_QUXPDBBA3LF6URTUQCXVFN4UTAQY2K4DGZD5OMY"
                        },
                        {
                            "name": "mpsl_clock_hfclk_request",
                            "size": 50,
                            "identifier": ":\\mpsl_clock_hfclk_request"
                        },
                        {
                            "name": "sym_UAPFH34IEHUX3FGU7LNPEIJNCLAPRJP46TMN4NY",
                            "size": 6,
                            "identifier": ":\\sym_UAPFH34IEHUX3FGU7LNPEIJNCLAPRJP46TMN4NY"
                        },
                        {
                            "name": "__aeabi_fcmple",
                            "size": 18,
                            "identifier": ":\\__aeabi_fcmple"
                        },
                        {
                            "name": "MPSL_IRQ_TIMER0_Handler",
                            "size": 232,
                            "identifier": ":\\MPSL_IRQ_TIMER0_Handler"
                        },
                        {
                            "name": "sym_TG7NSIC2UKHCUBZWZ4K4EMD5QRI2QVSKVKV6CFQ",
                            "size": 32,
                            "identifier": ":\\sym_TG7NSIC2UKHCUBZWZ4K4EMD5QRI2QVSKVKV6CFQ"
                        },
                        {
                            "name": "sym_NK4HRRKGX3ST3ARVTU6HUEXLOWZFFBMCIDNT3EI",
                            "size": 18,
                            "identifier": ":\\sym_NK4HRRKGX3ST3ARVTU6HUEXLOWZFFBMCIDNT3EI"
                        },
                        {
                            "name": "ocrypto_curve_p256_to32bytes",
                            "size": 4,
                            "identifier": ":\\ocrypto_curve_p256_to32bytes"
                        },
                        {
                            "name": "sym_2K3JTQJLCTROZQI43ERT7GF5BTQ3SMAJXYMCVJI",
                            "size": 4,
                            "identifier": ":\\sym_2K3JTQJLCTROZQI43ERT7GF5BTQ3SMAJXYMCVJI"
                        },
                        {
                            "name": "sym_KXE6R52JHXVKOK6AHXAXVCPJHWR4FK73UB2AK7I",
                            "size": 42,
                            "identifier": ":\\sym_KXE6R52JHXVKOK6AHXAXVCPJHWR4FK73UB2AK7I"
                        },
                        {
                            "name": "getpid",
                            "size": 4,
                            "identifier": ":\\getpid"
                        },
                        {
                            "name": "strcmp",
                            "size": 20,
                            "identifier": ":\\strcmp"
                        },
                        {
                            "name": "sym_FYHKZOVAJN6VDDHY43FT7PF4YLRDHWRTEWHFG6I",
                            "size": 160,
                            "identifier": ":\\sym_FYHKZOVAJN6VDDHY43FT7PF4YLRDHWRTEWHFG6I"
                        },
                        {
                            "name": "sym_GURZ3AH6X65RGSKYMYNWZVP6HM56LA5MRAQWT6Q",
                            "size": 52,
                            "identifier": ":\\sym_GURZ3AH6X65RGSKYMYNWZVP6HM56LA5MRAQWT6Q"
                        },
                        {
                            "name": "sym_6FVWF5AWPR7EN7BPHS4APSIUXYFZQTTZCMRDKPY",
                            "size": 58,
                            "identifier": ":\\sym_6FVWF5AWPR7EN7BPHS4APSIUXYFZQTTZCMRDKPY"
                        },
                        {
                            "name": "sym_QWOE5H22ZADGJX5JSROW7BOI32Z6PPEEJCISNOQ",
                            "size": 460,
                            "identifier": ":\\sym_QWOE5H22ZADGJX5JSROW7BOI32Z6PPEEJCISNOQ"
                        },
                        {
                            "name": "sym_436OKKOGR27QX7FMSZKYSEYLCMU4ZXR5RN4XUBY",
                            "size": 28,
                            "identifier": ":\\sym_436OKKOGR27QX7FMSZKYSEYLCMU4ZXR5RN4XUBY"
                        },
                        {
                            "name": "sym_Q3C2XSZVED7JHVMCJN53G6AXVXF3ZOUR7A37OEQ",
                            "size": 56,
                            "identifier": ":\\sym_Q3C2XSZVED7JHVMCJN53G6AXVXF3ZOUR7A37OEQ"
                        },
                        {
                            "name": "__swbuf_r",
                            "size": 164,
                            "identifier": ":\\__swbuf_r"
                        },
                        {
                            "name": "_impure_ptr",
                            "size": 4,
                            "identifier": ":\\_impure_ptr"
                        },
                        {
                            "name": "sdc_hci_cmd_le_read_transmit_power",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_read_transmit_power"
                        },
                        {
                            "name": "sym_6DYG6C6ROXZA67GZINNB2XIQHL3KE2RCKK4QFXA",
                            "size": 94,
                            "identifier": ":\\sym_6DYG6C6ROXZA67GZINNB2XIQHL3KE2RCKK4QFXA"
                        },
                        {
                            "name": "sym_33X4NJAF5ERGJDTOD7NIRDMR4KT4JWBGAGRR5WQ",
                            "size": 32,
                            "identifier": ":\\sym_33X4NJAF5ERGJDTOD7NIRDMR4KT4JWBGAGRR5WQ"
                        },
                        {
                            "name": "sym_2ZDZA75WOMRNSQ6XL7IZWAQKYFFSRJOGBGKPTIQ",
                            "size": 312,
                            "identifier": ":\\sym_2ZDZA75WOMRNSQ6XL7IZWAQKYFFSRJOGBGKPTIQ"
                        },
                        {
                            "name": "sym_G6YVAU2J75AOT237PVQAC5AEQMWPZ6OKE6ASZAI",
                            "size": 30,
                            "identifier": ":\\sym_G6YVAU2J75AOT237PVQAC5AEQMWPZ6OKE6ASZAI"
                        },
                        {
                            "name": "sym_4POEZKL66A5T3356722OWKNB5CNFKPMV6JI3HEA",
                            "size": 76,
                            "identifier": ":\\sym_4POEZKL66A5T3356722OWKNB5CNFKPMV6JI3HEA"
                        },
                        {
                            "name": "sdc_hci_cmd_le_set_data_length",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_set_data_length"
                        },
                        {
                            "name": "ocrypto_mod_p256_inv",
                            "size": 350,
                            "identifier": ":\\ocrypto_mod_p256_inv"
                        },
                        {
                            "name": "MPSL_IRQ_CLOCK_Handler",
                            "size": 96,
                            "identifier": ":\\MPSL_IRQ_CLOCK_Handler"
                        },
                        {
                            "name": "sym_QIMK4SLEK3LSPZFVZAE765G6IOUSE5EWGSEHHUY",
                            "size": 20,
                            "identifier": ":\\sym_QIMK4SLEK3LSPZFVZAE765G6IOUSE5EWGSEHHUY"
                        },
                        {
                            "name": "sym_FKGRLSJGPWDG44KYHTBA74A2ZDKPDUWGXHS3E2I",
                            "size": 26,
                            "identifier": ":\\sym_FKGRLSJGPWDG44KYHTBA74A2ZDKPDUWGXHS3E2I"
                        },
                        {
                            "name": "memset",
                            "size": 16,
                            "identifier": ":\\memset"
                        },
                        {
                            "name": "sym_UX6VBOIQ7ULLMX3I6UDFOFZ6IT2DVZKKVIEVRMY",
                            "size": 8,
                            "identifier": ":\\sym_UX6VBOIQ7ULLMX3I6UDFOFZ6IT2DVZKKVIEVRMY"
                        },
                        {
                            "name": "sym_HT64RIVISXSWFJE3LL26YHKQRTRRXKVEDBUUUOQ",
                            "size": 96,
                            "identifier": ":\\sym_HT64RIVISXSWFJE3LL26YHKQRTRRXKVEDBUUUOQ"
                        },
                        {
                            "name": "sym_XYMSM3YEXEOTUFIX3SPRBT27O44DJZKZVLNHELY",
                            "size": 36,
                            "identifier": ":\\sym_XYMSM3YEXEOTUFIX3SPRBT27O44DJZKZVLNHELY"
                        },
                        {
                            "name": "sym_56NG23UACCBJRJHKQI4X4VNMARWQXHUE4R3NK7I",
                            "size": 16,
                            "identifier": ":\\sym_56NG23UACCBJRJHKQI4X4VNMARWQXHUE4R3NK7I"
                        },
                        {
                            "name": "ocrypto_mod_p256_from_bytes",
                            "size": 50,
                            "identifier": ":\\ocrypto_mod_p256_from_bytes"
                        },
                        {
                            "name": "sym_RUQO26WM5KVVEW7O3OHCXPO7LLLXRBDPIPSWIWY",
                            "size": 8,
                            "identifier": ":\\sym_RUQO26WM5KVVEW7O3OHCXPO7LLLXRBDPIPSWIWY"
                        },
                        {
                            "name": "_ZN4carl8led_task11control_semE",
                            "size": 24,
                            "identifier": ":\\_ZN4carl8led_task11control_semE"
                        },
                        {
                            "name": "sym_ONVPV2DV6OK6HG537JAHRS5B7G22RD24D2QGM5A",
                            "size": 14,
                            "identifier": ":\\sym_ONVPV2DV6OK6HG537JAHRS5B7G22RD24D2QGM5A"
                        },
                        {
                            "name": "sym_6Q45YYTUN2KDQ5V5UGE3T2LTI5FNGX6WIJYLIDI",
                            "size": 60,
                            "identifier": ":\\sym_6Q45YYTUN2KDQ5V5UGE3T2LTI5FNGX6WIJYLIDI"
                        },
                        {
                            "name": "__sf_fake_stdout",
                            "size": 32,
                            "identifier": ":\\__sf_fake_stdout"
                        },
                        {
                            "name": "__aeabi_ddiv",
                            "size": 464,
                            "identifier": ":\\__aeabi_ddiv"
                        },
                        {
                            "name": "_printf_i",
                            "size": 604,
                            "identifier": ":\\_printf_i"
                        },
                        {
                            "name": "sym_SWIBDSDMHUYNCG5ZWLB52J7NETJIUBPCO5IIQFA",
                            "size": 20,
                            "identifier": ":\\sym_SWIBDSDMHUYNCG5ZWLB52J7NETJIUBPCO5IIQFA"
                        },
                        {
                            "name": "sym_RH6FZQRBS4UKFN4MYJSECW7EJMU5464YS3XX4EQ",
                            "size": 6,
                            "identifier": ":\\sym_RH6FZQRBS4UKFN4MYJSECW7EJMU5464YS3XX4EQ"
                        },
                        {
                            "name": "sym_HA7EOSELAQYVMG5UXMJGQLLFEIRQPB7MNOSYOXQ",
                            "size": 26,
                            "identifier": ":\\sym_HA7EOSELAQYVMG5UXMJGQLLFEIRQPB7MNOSYOXQ"
                        },
                        {
                            "name": "sym_OPCORHVHZVKAWEVWCDZOHGGLXMSL2TBGHVHNDOY",
                            "size": 36,
                            "identifier": ":\\sym_OPCORHVHZVKAWEVWCDZOHGGLXMSL2TBGHVHNDOY"
                        },
                        {
                            "name": "sym_JIJASGQH4XEEPZL7D35VQHVPKKLANGDBS2M46NQ",
                            "size": 190,
                            "identifier": ":\\sym_JIJASGQH4XEEPZL7D35VQHVPKKLANGDBS2M46NQ"
                        },
                        {
                            "name": "sym_476ZEBCLN4VRBESFX6B7F6TMVQVNPVCGXRXSHHY",
                            "size": 10,
                            "identifier": ":\\sym_476ZEBCLN4VRBESFX6B7F6TMVQVNPVCGXRXSHHY"
                        },
                        {
                            "name": "sym_KHCOV3Y476ESNIVYZPGAZMIYAIZNR3YMGCWNDEQ",
                            "size": 68,
                            "identifier": ":\\sym_KHCOV3Y476ESNIVYZPGAZMIYAIZNR3YMGCWNDEQ"
                        },
                        {
                            "name": "_ZTVN4carl3app10RollerDataE",
                            "size": 28,
                            "identifier": ":\\_ZTVN4carl3app10RollerDataE"
                        },
                        {
                            "name": "sym_7VZW6MQYCHJNYQ6F4AFCRRJSPXBVUQDDS4RU32Y",
                            "size": 10,
                            "identifier": ":\\sym_7VZW6MQYCHJNYQ6F4AFCRRJSPXBVUQDDS4RU32Y"
                        },
                        {
                            "name": "sym_4AWF7EXI3MMHUULTY73E756U3IY5DEXOZ265MZY",
                            "size": 70,
                            "identifier": ":\\sym_4AWF7EXI3MMHUULTY73E756U3IY5DEXOZ265MZY"
                        },
                        {
                            "name": "net_buf_fixed_cb",
                            "size": 12,
                            "identifier": ":\\net_buf_fixed_cb"
                        },
                        {
                            "name": "sym_PIDJEDDM47FHOOZQXISY5YBB3CBP5VAXWPCUL2Q",
                            "size": 4,
                            "identifier": ":\\sym_PIDJEDDM47FHOOZQXISY5YBB3CBP5VAXWPCUL2Q"
                        },
                        {
                            "name": "sym_VEC44ISWPJAJ32J57NYIBEMC7Q6QEP7J6SVR4BQ",
                            "size": 10,
                            "identifier": ":\\sym_VEC44ISWPJAJ32J57NYIBEMC7Q6QEP7J6SVR4BQ"
                        },
                        {
                            "name": "__extendsfdf2",
                            "size": 66,
                            "identifier": ":\\__extendsfdf2"
                        },
                        {
                            "name": "sdc_enable",
                            "size": 76,
                            "identifier": ":\\sdc_enable"
                        },
                        {
                            "name": "sym_EPRPLWOAI3YMJ24HN6AZUGT5NWULVXEG6CTCI2Y",
                            "size": 206,
                            "identifier": ":\\sym_EPRPLWOAI3YMJ24HN6AZUGT5NWULVXEG6CTCI2Y"
                        },
                        {
                            "name": "sym_QUBGY7RMPG7R5F6DVNURH4AVGDAWMK46YXU4DRA",
                            "size": 252,
                            "identifier": ":\\sym_QUBGY7RMPG7R5F6DVNURH4AVGDAWMK46YXU4DRA"
                        },
                        {
                            "name": "__ieee754_pow",
                            "size": 2596,
                            "identifier": ":\\__ieee754_pow"
                        },
                        {
                            "name": "sym_HUWGHJMM42MANQTSVL3EY7E3VE4XM4JTQUIQAII",
                            "size": 6,
                            "identifier": ":\\sym_HUWGHJMM42MANQTSVL3EY7E3VE4XM4JTQUIQAII"
                        },
                        {
                            "name": "sym_4W26TPGCKOCVVRKXQDBKGXGC2Y5LMZXNKS2QITA",
                            "size": 26,
                            "identifier": ":\\sym_4W26TPGCKOCVVRKXQDBKGXGC2Y5LMZXNKS2QITA"
                        },
                        {
                            "name": "sym_76SF2THVWBBVUHDFLIXMTXOYE2LFAIMVFAFT26I",
                            "size": 176,
                            "identifier": ":\\sym_76SF2THVWBBVUHDFLIXMTXOYE2LFAIMVFAFT26I"
                        },
                        {
                            "name": "sdc_hci_cmd_le_read_suggested_default_data_length",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_read_suggested_default_data_length"
                        },
                        {
                            "name": "_ZTVN5bliss11ApplicationE",
                            "size": 36,
                            "identifier": ":\\_ZTVN5bliss11ApplicationE"
                        },
                        {
                            "name": "sdc_hci_cmd_vs_zephyr_read_version_info",
                            "size": 28,
                            "identifier": ":\\sdc_hci_cmd_vs_zephyr_read_version_info"
                        },
                        {
                            "name": "sym_EXAZKO22MNOFNIXIFHQ2Z4GAYMKBCE2UPJ6JSVI",
                            "size": 128,
                            "identifier": ":\\sym_EXAZKO22MNOFNIXIFHQ2Z4GAYMKBCE2UPJ6JSVI"
                        },
                        {
                            "name": "malloc",
                            "size": 16,
                            "identifier": ":\\malloc"
                        },
                        {
                            "name": "sym_54CHYGRI3UHSVLN5ZOGJESXNRISJW5CS4IYBN7Y",
                            "size": 36,
                            "identifier": ":\\sym_54CHYGRI3UHSVLN5ZOGJESXNRISJW5CS4IYBN7Y"
                        },
                        {
                            "name": "sym_FVNWXAKGSIJN4YGWC4O4B4H2WPPILAIKB7LLDVI",
                            "size": 4,
                            "identifier": ":\\sym_FVNWXAKGSIJN4YGWC4O4B4H2WPPILAIKB7LLDVI"
                        },
                        {
                            "name": "sym_UDZO6WOEWJ2CNEYVP45GSHBVFT4OP6GEANP3NQY",
                            "size": 12,
                            "identifier": ":\\sym_UDZO6WOEWJ2CNEYVP45GSHBVFT4OP6GEANP3NQY"
                        },
                        {
                            "name": "sym_5EMXP3L6SPQSCAJKKRH62ZOKJCCSKLI3WEX2WHY",
                            "size": 20,
                            "identifier": ":\\sym_5EMXP3L6SPQSCAJKKRH62ZOKJCCSKLI3WEX2WHY"
                        },
                        {
                            "name": "sdc_hci_cmd_le_remove_device_from_resolving_list",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_remove_device_from_resolving_list"
                        },
                        {
                            "name": "sym_HKQ7V7ZRT4GLUXECWBIODAWUF4IIDSU455UZJBA",
                            "size": 44,
                            "identifier": ":\\sym_HKQ7V7ZRT4GLUXECWBIODAWUF4IIDSU455UZJBA"
                        },
                        {
                            "name": "sym_43VAZS4NQXUMOPHD7W7SYFZ3WJ6KGQYQH6UOYPQ",
                            "size": 50,
                            "identifier": ":\\sym_43VAZS4NQXUMOPHD7W7SYFZ3WJ6KGQYQH6UOYPQ"
                        },
                        {
                            "name": "sym_XOOTGCSEAKA3PUKZW3QYB4DCVC2FKUP2TS5AZ5Q",
                            "size": 382,
                            "identifier": ":\\sym_XOOTGCSEAKA3PUKZW3QYB4DCVC2FKUP2TS5AZ5Q"
                        },
                        {
                            "name": "sym_YMBI57OSTLFK65WQKT7WKM26EFMSOHLSMFNNR4I",
                            "size": 4,
                            "identifier": ":\\sym_YMBI57OSTLFK65WQKT7WKM26EFMSOHLSMFNNR4I"
                        },
                        {
                            "name": "__gtsf2",
                            "size": 110,
                            "identifier": ":\\__gtsf2"
                        },
                        {
                            "name": "sym_CXUREOIXUAF7MRG6VYXVKEGUS4V3G7OLURYVMAI",
                            "size": 20,
                            "identifier": ":\\sym_CXUREOIXUAF7MRG6VYXVKEGUS4V3G7OLURYVMAI"
                        },
                        {
                            "name": "ocrypto_curve_p256_from64bytes",
                            "size": 100,
                            "identifier": ":\\ocrypto_curve_p256_from64bytes"
                        },
                        {
                            "name": "sym_3QFBRH4ZSIA64QP2I3K547Y5WIALGQTCBP5Y5SQ",
                            "size": 84,
                            "identifier": ":\\sym_3QFBRH4ZSIA64QP2I3K547Y5WIALGQTCBP5Y5SQ"
                        },
                        {
                            "name": "sym_OLT7BBJAMRJJV5HK3QZCAOG3B3FGZ46HFC5VINI",
                            "size": 110,
                            "identifier": ":\\sym_OLT7BBJAMRJJV5HK3QZCAOG3B3FGZ46HFC5VINI"
                        },
                        {
                            "name": "memmove",
                            "size": 52,
                            "identifier": ":\\memmove"
                        },
                        {
                            "name": "sym_4PX37LW4KIUYQZ73JWLPH5GAGIRWAKTV3E6F62Q",
                            "size": 20,
                            "identifier": ":\\sym_4PX37LW4KIUYQZ73JWLPH5GAGIRWAKTV3E6F62Q"
                        },
                        {
                            "name": "sym_DPFAWTOI3GRLXCS5TV5FXLZJNKWMRLYTLT4DRFY",
                            "size": 8,
                            "identifier": ":\\sym_DPFAWTOI3GRLXCS5TV5FXLZJNKWMRLYTLT4DRFY"
                        },
                        {
                            "name": "sym_2ORNMU44KG57RJ5GYPW4FCTEFWDXBHWXYAE3J6I",
                            "size": 10,
                            "identifier": ":\\sym_2ORNMU44KG57RJ5GYPW4FCTEFWDXBHWXYAE3J6I"
                        },
                        {
                            "name": "sym_4WKKRRMMNLQOCTRGC2MVIREG5QOCFUEL67TBUQY",
                            "size": 58,
                            "identifier": ":\\sym_4WKKRRMMNLQOCTRGC2MVIREG5QOCFUEL67TBUQY"
                        },
                        {
                            "name": "sym_MD2ACKWOI3UMWSI6IONGH6VN62ROA3VVQP7HYBQ",
                            "size": 6,
                            "identifier": ":\\sym_MD2ACKWOI3UMWSI6IONGH6VN62ROA3VVQP7HYBQ"
                        },
                        {
                            "name": "sym_NAGMMCXDNSRJLJ55T6DS4CG2FNZEN6Y562ZTFRY",
                            "size": 14,
                            "identifier": ":\\sym_NAGMMCXDNSRJLJ55T6DS4CG2FNZEN6Y562ZTFRY"
                        },
                        {
                            "name": "sdc_hci_cmd_ip_read_bd_addr",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_ip_read_bd_addr"
                        },
                        {
                            "name": "sdc_rand_source_register",
                            "size": 12,
                            "identifier": ":\\sdc_rand_source_register"
                        },
                        {
                            "name": "sym_252O2EYK5FIXU63T5SACWK2VO6UFAQRM77ITNFA",
                            "size": 32,
                            "identifier": ":\\sym_252O2EYK5FIXU63T5SACWK2VO6UFAQRM77ITNFA"
                        },
                        {
                            "name": "bt_addr_none",
                            "size": 6,
                            "identifier": ":\\bt_addr_none"
                        },
                        {
                            "name": "sym_4JLKMM32SOXCP6XBYAWZDUIMUJIYXLKKDBOFLHI",
                            "size": 14,
                            "identifier": ":\\sym_4JLKMM32SOXCP6XBYAWZDUIMUJIYXLKKDBOFLHI"
                        },
                        {
                            "name": "sym_7VLVVPDI26BVJ64XQBSGXOQYGQA4VH5APIPDGYA",
                            "size": 58,
                            "identifier": ":\\sym_7VLVVPDI26BVJ64XQBSGXOQYGQA4VH5APIPDGYA"
                        },
                        {
                            "name": "sym_FLX2PIIVHO3CLB5CJ7E7YSNFE2YWATNH27BL53A",
                            "size": 28,
                            "identifier": ":\\sym_FLX2PIIVHO3CLB5CJ7E7YSNFE2YWATNH27BL53A"
                        },
                        {
                            "name": "sym_MS2INTHZLDZMKZ5TZUDLWHPLKH3FLVZPA26JG6A",
                            "size": 166,
                            "identifier": ":\\sym_MS2INTHZLDZMKZ5TZUDLWHPLKH3FLVZPA26JG6A"
                        },
                        {
                            "name": "sym_AGWGY6I3YKHHV6TMAWL24HN4IKGOB7PZYXPWBRA",
                            "size": 30,
                            "identifier": ":\\sym_AGWGY6I3YKHHV6TMAWL24HN4IKGOB7PZYXPWBRA"
                        },
                        {
                            "name": "sym_XIDO6C76MBHDNIEQMWYSJKF4P7A3PGI2HBO3R5Q",
                            "size": 96,
                            "identifier": ":\\sym_XIDO6C76MBHDNIEQMWYSJKF4P7A3PGI2HBO3R5Q"
                        },
                        {
                            "name": "sym_URFU24FFGR2HYB6CCPIPKPNZNMTWHKDYOATUJNY",
                            "size": 268,
                            "identifier": ":\\sym_URFU24FFGR2HYB6CCPIPKPNZNMTWHKDYOATUJNY"
                        },
                        {
                            "name": "sym_5CHOZAQ75MOW32NPEGX5AYLDFVQR6HZCDXZY5PQ",
                            "size": 68,
                            "identifier": ":\\sym_5CHOZAQ75MOW32NPEGX5AYLDFVQR6HZCDXZY5PQ"
                        },
                        {
                            "name": "sym_UXGGQ7KT7KLQURU53WAWGAVBCTGQC65UKGCUU4A",
                            "size": 4,
                            "identifier": ":\\sym_UXGGQ7KT7KLQURU53WAWGAVBCTGQC65UKGCUU4A"
                        },
                        {
                            "name": "sym_XVWN3IZ65SG2YZAV5STIEBPJ2RGWTP2JZ3UEJLQ",
                            "size": 138,
                            "identifier": ":\\sym_XVWN3IZ65SG2YZAV5STIEBPJ2RGWTP2JZ3UEJLQ"
                        },
                        {
                            "name": "sym_CMGYAOMYUJOSH7VMLD3ENK3VLSIPR3DVYN2F44Y",
                            "size": 96,
                            "identifier": ":\\sym_CMGYAOMYUJOSH7VMLD3ENK3VLSIPR3DVYN2F44Y"
                        },
                        {
                            "name": "sdc_hci_cmd_le_remove_device_from_filter_accept_list",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_remove_device_from_filter_accept_list"
                        },
                        {
                            "name": "_ZN4carl3ble6config10thresholdsE",
                            "size": 31,
                            "identifier": ":\\_ZN4carl3ble6config10thresholdsE"
                        },
                        {
                            "name": "sym_E2LE5OMX5VGHQ6BJ4G7CNEBI3KUUYONP2PS2EJQ",
                            "size": 18,
                            "identifier": ":\\sym_E2LE5OMX5VGHQ6BJ4G7CNEBI3KUUYONP2PS2EJQ"
                        },
                        {
                            "name": "sdc_hci_cmd_le_set_event_mask",
                            "size": 10,
                            "identifier": ":\\sdc_hci_cmd_le_set_event_mask"
                        },
                        {
                            "name": "sym_32MURW7CSXICOYPMCVOPRARLMRLK4UASNCF4JWQ",
                            "size": 14,
                            "identifier": ":\\sym_32MURW7CSXICOYPMCVOPRARLMRLK4UASNCF4JWQ"
                        },
                        {
                            "name": "sym_YRXVGCYVFXOSIQO43AC5UEELHEXP2A4UAFUQRPI",
                            "size": 72,
                            "identifier": ":\\sym_YRXVGCYVFXOSIQO43AC5UEELHEXP2A4UAFUQRPI"
                        },
                        {
                            "name": "sym_YZ554N3225FHWC7CK3UNRUMI3O4SGFLKXVRCFXA",
                            "size": 4,
                            "identifier": ":\\sym_YZ554N3225FHWC7CK3UNRUMI3O4SGFLKXVRCFXA"
                        },
                        {
                            "name": "sym_UL6TXQTTOV34QCAIQPVPFYEQSUUJPIEN42CTITI",
                            "size": 26,
                            "identifier": ":\\sym_UL6TXQTTOV34QCAIQPVPFYEQSUUJPIEN42CTITI"
                        },
                        {
                            "name": "bt_addr_le_any",
                            "size": 7,
                            "identifier": ":\\bt_addr_le_any"
                        },
                        {
                            "name": "sym_4DUZAAZKVNAL6VUHN4XAFX35FQKJS4D7DISLHDI",
                            "size": 102,
                            "identifier": ":\\sym_4DUZAAZKVNAL6VUHN4XAFX35FQKJS4D7DISLHDI"
                        },
                        {
                            "name": "sdc_disable",
                            "size": 32,
                            "identifier": ":\\sdc_disable"
                        },
                        {
                            "name": "sym_NLJDQQVQW4HF3HHWCCOGCGX457WQXW2LVV5NUTI",
                            "size": 84,
                            "identifier": ":\\sym_NLJDQQVQW4HF3HHWCCOGCGX457WQXW2LVV5NUTI"
                        },
                        {
                            "name": "sym_IGXXIFMDOTCDOLQAILBV5BXIU5R6AALP5I4HZGQ",
                            "size": 16,
                            "identifier": ":\\sym_IGXXIFMDOTCDOLQAILBV5BXIU5R6AALP5I4HZGQ"
                        },
                        {
                            "name": "sym_R2552DB5ZKNDWW24PBGEV77VCDBC44WVAYRCUXQ",
                            "size": 4,
                            "identifier": ":\\sym_R2552DB5ZKNDWW24PBGEV77VCDBC44WVAYRCUXQ"
                        },
                        {
                            "name": "sym_GRWJSKDQ3POPWSRNDRQTNNGA4TE3WRBKWXT5JAQ",
                            "size": 18,
                            "identifier": ":\\sym_GRWJSKDQ3POPWSRNDRQTNNGA4TE3WRBKWXT5JAQ"
                        },
                        {
                            "name": "MPSL_IRQ_RADIO_Handler",
                            "size": 54,
                            "identifier": ":\\MPSL_IRQ_RADIO_Handler"
                        },
                        {
                            "name": "sym_TWSXGABZDFOR6GMTPL43NA2Q7GCJDL7RARUHBMQ",
                            "size": 52,
                            "identifier": ":\\sym_TWSXGABZDFOR6GMTPL43NA2Q7GCJDL7RARUHBMQ"
                        },
                        {
                            "name": "sym_OC5GPSERLPE7TKXSCU3QAZ62H3OM4MWFYV7WX2I",
                            "size": 64,
                            "identifier": ":\\sym_OC5GPSERLPE7TKXSCU3QAZ62H3OM4MWFYV7WX2I"
                        },
                        {
                            "name": "sdc_hci_cmd_cb_set_event_mask",
                            "size": 10,
                            "identifier": ":\\sdc_hci_cmd_cb_set_event_mask"
                        },
                        {
                            "name": "__smakebuf_r",
                            "size": 128,
                            "identifier": ":\\__smakebuf_r"
                        },
                        {
                            "name": "sym_NOQRMQ5IH6SQFJEPI5A3UBMITO54HG4WO4DTTXA",
                            "size": 34,
                            "identifier": ":\\sym_NOQRMQ5IH6SQFJEPI5A3UBMITO54HG4WO4DTTXA"
                        },
                        {
                            "name": "sym_Z3745JZ5MC4MMBP2LFCOSP7OKPPVFDOPIURJWVQ",
                            "size": 162,
                            "identifier": ":\\sym_Z3745JZ5MC4MMBP2LFCOSP7OKPPVFDOPIURJWVQ"
                        },
                        {
                            "name": "sym_24NU2MJKHN4R2Z7HXHMPDWTTDYSB32VL6HEQPZA",
                            "size": 152,
                            "identifier": ":\\sym_24NU2MJKHN4R2Z7HXHMPDWTTDYSB32VL6HEQPZA"
                        },
                        {
                            "name": "__aeabi_cdrcmple",
                            "size": 32,
                            "identifier": ":\\__aeabi_cdrcmple"
                        },
                        {
                            "name": "sym_V7MOOXL5SOLISKFFGWJC7M3XDITU574WBQOXGWY",
                            "size": 26,
                            "identifier": ":\\sym_V7MOOXL5SOLISKFFGWJC7M3XDITU574WBQOXGWY"
                        },
                        {
                            "name": "sym_5KZ3ESY4NUZKM5COQRZJAL6CXWIG2JSPGHV3RPQ",
                            "size": 24,
                            "identifier": ":\\sym_5KZ3ESY4NUZKM5COQRZJAL6CXWIG2JSPGHV3RPQ"
                        },
                        {
                            "name": "_malloc_r",
                            "size": 180,
                            "identifier": ":\\_malloc_r"
                        },
                        {
                            "name": "sym_C4WN3DS2SEB6CNTCY4ECLTD4ZD7ETWJRO5S2S2Y",
                            "size": 28,
                            "identifier": ":\\sym_C4WN3DS2SEB6CNTCY4ECLTD4ZD7ETWJRO5S2S2Y"
                        },
                        {
                            "name": "sym_RIJIFYF46ZRKFDPA3GKV7WCH2VGEUEP6MVN4JFI",
                            "size": 6,
                            "identifier": ":\\sym_RIJIFYF46ZRKFDPA3GKV7WCH2VGEUEP6MVN4JFI"
                        },
                        {
                            "name": "sym_ZC6NJBPUISWILQK6OTOBMJVVUT63JRIDGH5WNCY",
                            "size": 124,
                            "identifier": ":\\sym_ZC6NJBPUISWILQK6OTOBMJVVUT63JRIDGH5WNCY"
                        },
                        {
                            "name": "sym_OH2GYDTNQL2GOMT5N64M2LRDK6O2PDY6H2CP6VA",
                            "size": 26,
                            "identifier": ":\\sym_OH2GYDTNQL2GOMT5N64M2LRDK6O2PDY6H2CP6VA"
                        },
                        {
                            "name": "sym_OAGVEJLAHKQB2YTTUDIS6TDHXZIVWZXKUMPIBHQ",
                            "size": 62,
                            "identifier": ":\\sym_OAGVEJLAHKQB2YTTUDIS6TDHXZIVWZXKUMPIBHQ"
                        },
                        {
                            "name": "strnlen",
                            "size": 24,
                            "identifier": ":\\strnlen"
                        },
                        {
                            "name": "sym_43BYC3K4M44JBPOX4EUJM44GYCCY2C3C4SYEF6I",
                            "size": 6,
                            "identifier": ":\\sym_43BYC3K4M44JBPOX4EUJM44GYCCY2C3C4SYEF6I"
                        },
                        {
                            "name": "sqrt",
                            "size": 88,
                            "identifier": ":\\sqrt"
                        },
                        {
                            "name": "sym_7CIQBS4FNO23MS6BAN7Q3LK45R62DBPT5FNCWOA",
                            "size": 64,
                            "identifier": ":\\sym_7CIQBS4FNO23MS6BAN7Q3LK45R62DBPT5FNCWOA"
                        },
                        {
                            "name": "sym_MJMICEV3AHUJUDNI6JLXYNXCJNL4PTPUQLXISYA",
                            "size": 42,
                            "identifier": ":\\sym_MJMICEV3AHUJUDNI6JLXYNXCJNL4PTPUQLXISYA"
                        },
                        {
                            "name": "_realloc_r",
                            "size": 74,
                            "identifier": ":\\_realloc_r"
                        },
                        {
                            "name": "_ZTVN4carl3app9ShockDataE",
                            "size": 28,
                            "identifier": ":\\_ZTVN4carl3app9ShockDataE"
                        },
                        {
                            "name": "sym_5I5MTMPTF2F4WI7MIXG5OG4TUPLUR53CB2QHVUA",
                            "size": 140,
                            "identifier": ":\\sym_5I5MTMPTF2F4WI7MIXG5OG4TUPLUR53CB2QHVUA"
                        },
                        {
                            "name": "sym_GZE6QJRFTCG2MERGOKENHWFRYSCC5S3WEXUU47A",
                            "size": 20,
                            "identifier": ":\\sym_GZE6QJRFTCG2MERGOKENHWFRYSCC5S3WEXUU47A"
                        },
                        {
                            "name": "sym_NEHMDBQBGZXV6OFKIS4NBQDVMDAPMSPSGUQZB7A",
                            "size": 22,
                            "identifier": ":\\sym_NEHMDBQBGZXV6OFKIS4NBQDVMDAPMSPSGUQZB7A"
                        },
                        {
                            "name": "sym_J5F7QGRFPKMLWRNSXZXS5YI7BM4DUTISCOASCOA",
                            "size": 448,
                            "identifier": ":\\sym_J5F7QGRFPKMLWRNSXZXS5YI7BM4DUTISCOASCOA"
                        },
                        {
                            "name": "sym_VT6ZFFM2E7JNVAG5YLSPAZYR4HOPL3X5GX3IH7A",
                            "size": 74,
                            "identifier": ":\\sym_VT6ZFFM2E7JNVAG5YLSPAZYR4HOPL3X5GX3IH7A"
                        },
                        {
                            "name": "sdc_support_peripheral",
                            "size": 26,
                            "identifier": ":\\sdc_support_peripheral"
                        },
                        {
                            "name": "sym_62DUXM4M5AM4URNPP7IKDX3NCPAODBT4BMADGAY",
                            "size": 30,
                            "identifier": ":\\sym_62DUXM4M5AM4URNPP7IKDX3NCPAODBT4BMADGAY"
                        },
                        {
                            "name": "sdc_hci_cmd_le_add_device_to_filter_accept_list",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_add_device_to_filter_accept_list"
                        },
                        {
                            "name": "sym_TIWHB6UQGI33JQCQDL7C2BRAEXCRAFYENVN6QEI",
                            "size": 18,
                            "identifier": ":\\sym_TIWHB6UQGI33JQCQDL7C2BRAEXCRAFYENVN6QEI"
                        },
                        {
                            "name": "mpsl_init",
                            "size": 104,
                            "identifier": ":\\mpsl_init"
                        },
                        {
                            "name": "_sw_isr_table",
                            "size": 384,
                            "identifier": ":\\_sw_isr_table"
                        },
                        {
                            "name": "ocrypto_sc_p256_from32bytes",
                            "size": 84,
                            "identifier": ":\\ocrypto_sc_p256_from32bytes"
                        },
                        {
                            "name": "_ZN4carl3hal12batteryGauge9i2cdeviceE",
                            "size": 4,
                            "identifier": ":\\_ZN4carl3hal12batteryGauge9i2cdeviceE"
                        },
                        {
                            "name": "sym_DQONLUECJTIEYFOFJXXAPJO4POIAJKJNKBGVN5A",
                            "size": 244,
                            "identifier": ":\\sym_DQONLUECJTIEYFOFJXXAPJO4POIAJKJNKBGVN5A"
                        },
                        {
                            "name": "sym_U3OFHSWAAHECAZEDHWSQTU63SOSYAQR6QI45AFY",
                            "size": 332,
                            "identifier": ":\\sym_U3OFHSWAAHECAZEDHWSQTU63SOSYAQR6QI45AFY"
                        },
                        {
                            "name": "mpsl_low_priority_process",
                            "size": 4,
                            "identifier": ":\\mpsl_low_priority_process"
                        },
                        {
                            "name": "__floatunsidf",
                            "size": 30,
                            "identifier": ":\\__floatunsidf"
                        },
                        {
                            "name": "sdc_support_dle_peripheral",
                            "size": 26,
                            "identifier": ":\\sdc_support_dle_peripheral"
                        },
                        {
                            "name": "sym_MWHYECJZLQQJKLQZGDI66SVA3IIWYKXL7G5FMHY",
                            "size": 30,
                            "identifier": ":\\sym_MWHYECJZLQQJKLQZGDI66SVA3IIWYKXL7G5FMHY"
                        },
                        {
                            "name": "sym_6OKNLUNCRGI263QFKGKDXFR77K4UISSZ3SA2RAY",
                            "size": 36,
                            "identifier": ":\\sym_6OKNLUNCRGI263QFKGKDXFR77K4UISSZ3SA2RAY"
                        },
                        {
                            "name": "__floatundisf",
                            "size": 140,
                            "identifier": ":\\__floatundisf"
                        },
                        {
                            "name": "sym_Z7NJGBYWCKFTEHRYWAIDKWPEUN45273QSWUA5CY",
                            "size": 32,
                            "identifier": ":\\sym_Z7NJGBYWCKFTEHRYWAIDKWPEUN45273QSWUA5CY"
                        },
                        {
                            "name": "sym_XD3FX5TVO57NBJG4QV33FUOBCL7SNGB4OOT7C3Y",
                            "size": 36,
                            "identifier": ":\\sym_XD3FX5TVO57NBJG4QV33FUOBCL7SNGB4OOT7C3Y"
                        },
                        {
                            "name": "sym_DGQRK6XVXAAPQDRCJOVOHOTQ47PE7QQ4MNBOW5I",
                            "size": 60,
                            "identifier": ":\\sym_DGQRK6XVXAAPQDRCJOVOHOTQ47PE7QQ4MNBOW5I"
                        },
                        {
                            "name": "pow",
                            "size": 348,
                            "identifier": ":\\pow"
                        },
                        {
                            "name": "sym_Z6SWMDBE3FHPASES2GEZRCNTNJKSKBQXPSTEH5Q",
                            "size": 28,
                            "identifier": ":\\sym_Z6SWMDBE3FHPASES2GEZRCNTNJKSKBQXPSTEH5Q"
                        },
                        {
                            "name": "sym_2USEL6R2GGJMMFO4XRNC6NIEFTFUU2HPLL2Z6FQ",
                            "size": 10,
                            "identifier": ":\\sym_2USEL6R2GGJMMFO4XRNC6NIEFTFUU2HPLL2Z6FQ"
                        },
                        {
                            "name": "sym_FZRZ4CL3JR4VYYKFPYJ3VMCNBL7BVDZZP4POIWA",
                            "size": 14,
                            "identifier": ":\\sym_FZRZ4CL3JR4VYYKFPYJ3VMCNBL7BVDZZP4POIWA"
                        },
                        {
                            "name": "_ZN5bliss12StateMachine8active_sE",
                            "size": 20,
                            "identifier": ":\\_ZN5bliss12StateMachine8active_sE"
                        },
                        {
                            "name": "sym_NILDTLWW7AYBRN5PYE72ILWSBBVUBN4Y5FF3XQQ",
                            "size": 8,
                            "identifier": ":\\sym_NILDTLWW7AYBRN5PYE72ILWSBBVUBN4Y5FF3XQQ"
                        },
                        {
                            "name": "sym_MBOR6QO7CTIMBTL5BVPURKFTQFZYFCUOAZ3M43Q",
                            "size": 56,
                            "identifier": ":\\sym_MBOR6QO7CTIMBTL5BVPURKFTQFZYFCUOAZ3M43Q"
                        },
                        {
                            "name": "sym_B627VJPECYREV5OY4VJ652ISBA4XGPKVOUJ747A",
                            "size": 14,
                            "identifier": ":\\sym_B627VJPECYREV5OY4VJ652ISBA4XGPKVOUJ747A"
                        },
                        {
                            "name": "__fixunssfsi",
                            "size": 62,
                            "identifier": ":\\__fixunssfsi"
                        },
                        {
                            "name": "__sinit_lock_acquire",
                            "size": 12,
                            "identifier": ":\\__sinit_lock_acquire"
                        },
                        {
                            "name": "sym_T2WGCKXTT3AQKC37WUCKG6LFMKIXXWS3R6ESLQQ",
                            "size": 18,
                            "identifier": ":\\sym_T2WGCKXTT3AQKC37WUCKG6LFMKIXXWS3R6ESLQQ"
                        },
                        {
                            "name": "sym_CNH7SD2WCGFAHI2ANQOF3HHV2F3WYQDABEB6D2I",
                            "size": 92,
                            "identifier": ":\\sym_CNH7SD2WCGFAHI2ANQOF3HHV2F3WYQDABEB6D2I"
                        },
                        {
                            "name": "__swsetup_r",
                            "size": 216,
                            "identifier": ":\\__swsetup_r"
                        },
                        {
                            "name": "sym_K4XFYUFHWSS4WLYRDTKOJ7STOPYHBKAJBCXHBBY",
                            "size": 96,
                            "identifier": ":\\sym_K4XFYUFHWSS4WLYRDTKOJ7STOPYHBKAJBCXHBBY"
                        },
                        {
                            "name": "sym_PRWTRTI5GPQHIT26MFBSSOCWTUYYRLQLJWD2ZOI",
                            "size": 6,
                            "identifier": ":\\sym_PRWTRTI5GPQHIT26MFBSSOCWTUYYRLQLJWD2ZOI"
                        },
                        {
                            "name": "sym_L5UCRJFFWEVVII5IYG6PAKIQHXM34B62KO6ERPY",
                            "size": 6,
                            "identifier": ":\\sym_L5UCRJFFWEVVII5IYG6PAKIQHXM34B62KO6ERPY"
                        },
                        {
                            "name": "sym_SGRERKTYRS3O7AD2IUDRW5CT4AGUHLY2Q4A7LKY",
                            "size": 58,
                            "identifier": ":\\sym_SGRERKTYRS3O7AD2IUDRW5CT4AGUHLY2Q4A7LKY"
                        },
                        {
                            "name": "sym_RHRHCWPUPZHCOID576WBS7QZ2KAUT2GASS2T3QY",
                            "size": 6,
                            "identifier": ":\\sym_RHRHCWPUPZHCOID576WBS7QZ2KAUT2GASS2T3QY"
                        },
                        {
                            "name": "sym_FQNF6KMIBMQDKYS2BJP6ZB7BLEET53WUIWQK6FA",
                            "size": 42,
                            "identifier": ":\\sym_FQNF6KMIBMQDKYS2BJP6ZB7BLEET53WUIWQK6FA"
                        },
                        {
                            "name": "bt_smp_sign",
                            "size": 6,
                            "identifier": ":\\bt_smp_sign"
                        },
                        {
                            "name": "sym_7TCX7VR3LQDB2G4LYUM4YUKX3ZVIO33J3JZVMKY",
                            "size": 36,
                            "identifier": ":\\sym_7TCX7VR3LQDB2G4LYUM4YUKX3ZVIO33J3JZVMKY"
                        },
                        {
                            "name": "sym_JQ5GTNCJKXERB3SSKQRXLQOKWJQVRNEOVZZZVXI",
                            "size": 230,
                            "identifier": ":\\sym_JQ5GTNCJKXERB3SSKQRXLQOKWJQVRNEOVZZZVXI"
                        },
                        {
                            "name": "sdc_hci_cmd_vs_zephyr_read_static_addresses",
                            "size": 146,
                            "identifier": ":\\sdc_hci_cmd_vs_zephyr_read_static_addresses"
                        },
                        {
                            "name": "__aeabi_fcmpeq",
                            "size": 18,
                            "identifier": ":\\__aeabi_fcmpeq"
                        },
                        {
                            "name": "sym_MLZNDMDYRI6WNTNQ4RIQGPD423CK7RT4YVI5CAI",
                            "size": 22,
                            "identifier": ":\\sym_MLZNDMDYRI6WNTNQ4RIQGPD423CK7RT4YVI5CAI"
                        },
                        {
                            "name": "sdc_hci_cmd_le_set_adv_enable",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_set_adv_enable"
                        },
                        {
                            "name": "sdc_hci_cmd_le_read_resolving_list_size",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_read_resolving_list_size"
                        },
                        {
                            "name": "sym_SKKU5JCB4JFUP2TZKW5ETVOM5GL3U2WDXVK5LJI",
                            "size": 4,
                            "identifier": ":\\sym_SKKU5JCB4JFUP2TZKW5ETVOM5GL3U2WDXVK5LJI"
                        },
                        {
                            "name": "sym_7ABLLIXUF3HMINU3DLWXJDVBNAU7RSUXPXZ3RFQ",
                            "size": 76,
                            "identifier": ":\\sym_7ABLLIXUF3HMINU3DLWXJDVBNAU7RSUXPXZ3RFQ"
                        },
                        {
                            "name": "sym_3Q2UQ65DVTXA3EZPN34QXGGEFSEA6HOSHLFXCMI",
                            "size": 4,
                            "identifier": ":\\sym_3Q2UQ65DVTXA3EZPN34QXGGEFSEA6HOSHLFXCMI"
                        },
                        {
                            "name": "sym_XRU76NANM3C4EMKWQU3DF6CELSRNDV6766IKPJI",
                            "size": 8,
                            "identifier": ":\\sym_XRU76NANM3C4EMKWQU3DF6CELSRNDV6766IKPJI"
                        },
                        {
                            "name": "sym_QXKT3PVMDTZRAAU2QNTWO5VOUEZ4NW6TWISREXY",
                            "size": 4,
                            "identifier": ":\\sym_QXKT3PVMDTZRAAU2QNTWO5VOUEZ4NW6TWISREXY"
                        },
                        {
                            "name": "sym_JBMIQXYLJQQB56KLSIZ2WVKBMEMRZHLRBGLEPTA",
                            "size": 94,
                            "identifier": ":\\sym_JBMIQXYLJQQB56KLSIZ2WVKBMEMRZHLRBGLEPTA"
                        },
                        {
                            "name": "sym_MGDULS4U2D5VQ5NBLZDC7UTSC6O3GJASJZPQJ2Q",
                            "size": 6,
                            "identifier": ":\\sym_MGDULS4U2D5VQ5NBLZDC7UTSC6O3GJASJZPQJ2Q"
                        },
                        {
                            "name": "sym_EZCFQXKGAFHY5HQVJOXWDLO45XWMEJQY5WUGZNI",
                            "size": 18,
                            "identifier": ":\\sym_EZCFQXKGAFHY5HQVJOXWDLO45XWMEJQY5WUGZNI"
                        },
                        {
                            "name": "_close_r",
                            "size": 32,
                            "identifier": ":\\_close_r"
                        },
                        {
                            "name": "mpsl_temperature_get",
                            "size": 118,
                            "identifier": ":\\mpsl_temperature_get"
                        },
                        {
                            "name": "sym_PHCTC5YUX44NFLNJCEBJKKRAYHGUKTS4AC5GMAI",
                            "size": 4,
                            "identifier": ":\\sym_PHCTC5YUX44NFLNJCEBJKKRAYHGUKTS4AC5GMAI"
                        },
                        {
                            "name": "sym_LOTFHGQTFUFWGX7HOTL4Q2XATGIJRVIMCMOYRMA",
                            "size": 14,
                            "identifier": ":\\sym_LOTFHGQTFUFWGX7HOTL4Q2XATGIJRVIMCMOYRMA"
                        },
                        {
                            "name": "__floatunsisf",
                            "size": 36,
                            "identifier": ":\\__floatunsisf"
                        },
                        {
                            "name": "sym_PITJNQC6YSCEFAH23N5QRORZDKCSKOAUGBUS6GA",
                            "size": 48,
                            "identifier": ":\\sym_PITJNQC6YSCEFAH23N5QRORZDKCSKOAUGBUS6GA"
                        },
                        {
                            "name": "sym_5INKXEHJ7NSOP6JSEWOYQNB6PUCWPUG5RVXPDVA",
                            "size": 18,
                            "identifier": ":\\sym_5INKXEHJ7NSOP6JSEWOYQNB6PUCWPUG5RVXPDVA"
                        },
                        {
                            "name": "sym_7Q3OGK46EJ4CJTNREFMB4I3YQOYV4MCCW6KC7XI",
                            "size": 76,
                            "identifier": ":\\sym_7Q3OGK46EJ4CJTNREFMB4I3YQOYV4MCCW6KC7XI"
                        },
                        {
                            "name": "__assert_func",
                            "size": 60,
                            "identifier": ":\\__assert_func"
                        },
                        {
                            "name": "sym_2FM2ZG72OZKCHFYBXBWOPHHKS55XIKIWY7UJDGA",
                            "size": 8,
                            "identifier": ":\\sym_2FM2ZG72OZKCHFYBXBWOPHHKS55XIKIWY7UJDGA"
                        },
                        {
                            "name": "sym_MVDV5RBWBEZV6THUS3WDA3RV4H6NH2D4IESH3IA",
                            "size": 164,
                            "identifier": ":\\sym_MVDV5RBWBEZV6THUS3WDA3RV4H6NH2D4IESH3IA"
                        },
                        {
                            "name": "sym_7GRSXPCDN6SAIPL3YJGWJFDEBFB3EXAXYUBY2II",
                            "size": 60,
                            "identifier": ":\\sym_7GRSXPCDN6SAIPL3YJGWJFDEBFB3EXAXYUBY2II"
                        },
                        {
                            "name": "sym_FRDCUWW6PTM2YTBQLG5XNT6WJGPFH2XWEMJXJRI",
                            "size": 28,
                            "identifier": ":\\sym_FRDCUWW6PTM2YTBQLG5XNT6WJGPFH2XWEMJXJRI"
                        },
                        {
                            "name": "sym_ZX776SCJSI3JTFST57XOZBXAMGDDC7FRRHZEJ7Q",
                            "size": 140,
                            "identifier": ":\\sym_ZX776SCJSI3JTFST57XOZBXAMGDDC7FRRHZEJ7Q"
                        },
                        {
                            "name": "sym_EMRT7PRPOJDVU5Z5ET5VJFU2CWFE2OMTIKS35RA",
                            "size": 68,
                            "identifier": ":\\sym_EMRT7PRPOJDVU5Z5ET5VJFU2CWFE2OMTIKS35RA"
                        },
                        {
                            "name": "sym_2X6ZBBHQKFJV27I6OQZLD4IRAL5JANEGA5N34WA",
                            "size": 6,
                            "identifier": ":\\sym_2X6ZBBHQKFJV27I6OQZLD4IRAL5JANEGA5N34WA"
                        },
                        {
                            "name": "sym_CC522QK4M5MTSPVPJNGJXKYD5O54FC2LFC3D3QI",
                            "size": 238,
                            "identifier": ":\\sym_CC522QK4M5MTSPVPJNGJXKYD5O54FC2LFC3D3QI"
                        },
                        {
                            "name": "__aeabi_dcmpeq",
                            "size": 18,
                            "identifier": ":\\__aeabi_dcmpeq"
                        },
                        {
                            "name": "sym_UG7CMBAYEZEKSKQK753P4TBTSPUXVRWUS6QJJOA",
                            "size": 54,
                            "identifier": ":\\sym_UG7CMBAYEZEKSKQK753P4TBTSPUXVRWUS6QJJOA"
                        },
                        {
                            "name": "sym_WD6EQ3FQVKOAARDWHQJJC5SVKHQS7A2MF5YDCPA",
                            "size": 24,
                            "identifier": ":\\sym_WD6EQ3FQVKOAARDWHQJJC5SVKHQS7A2MF5YDCPA"
                        },
                        {
                            "name": "sym_DMJHGENWVWA7ILXIIOOHU6SYMMXUDCUFUUBACLQ",
                            "size": 86,
                            "identifier": ":\\sym_DMJHGENWVWA7ILXIIOOHU6SYMMXUDCUFUUBACLQ"
                        },
                        {
                            "name": "sym_HRCF6LWSDWPWEZA7S5YQFCNRDXXCJA6WGOZECRY",
                            "size": 108,
                            "identifier": ":\\sym_HRCF6LWSDWPWEZA7S5YQFCNRDXXCJA6WGOZECRY"
                        },
                        {
                            "name": "sym_LC25II2QNYO4QUC4WQAQXNPSFLYYHVIDWHXRWAA",
                            "size": 6,
                            "identifier": ":\\sym_LC25II2QNYO4QUC4WQAQXNPSFLYYHVIDWHXRWAA"
                        },
                        {
                            "name": "sym_47U6MZ7GC5PU2CVEGYFSZO6JE3OMJD4DVLRAUZQ",
                            "size": 66,
                            "identifier": ":\\sym_47U6MZ7GC5PU2CVEGYFSZO6JE3OMJD4DVLRAUZQ"
                        },
                        {
                            "name": "sym_4J2T42QEEBU4YII5BYQOO72J6O3T642SRZXZNQI",
                            "size": 18,
                            "identifier": ":\\sym_4J2T42QEEBU4YII5BYQOO72J6O3T642SRZXZNQI"
                        },
                        {
                            "name": "sym_DRIMECVE2FH7O6C2LQ25QRVJOICPHLA5GC6TM2I",
                            "size": 10,
                            "identifier": ":\\sym_DRIMECVE2FH7O6C2LQ25QRVJOICPHLA5GC6TM2I"
                        },
                        {
                            "name": "sym_GECJUMXC7GX4QNB2JHCJHLFH72UPMJZW6VAQVRA",
                            "size": 60,
                            "identifier": ":\\sym_GECJUMXC7GX4QNB2JHCJHLFH72UPMJZW6VAQVRA"
                        },
                        {
                            "name": "_ZN11phyphox_ble7autogen8exp_dataE",
                            "size": 5092,
                            "identifier": ":\\_ZN11phyphox_ble7autogen8exp_dataE"
                        },
                        {
                            "name": "sym_52O7VXVVZYQGD3Z6C3FDJLGBNMQQ6XC5LJ3IFRQ",
                            "size": 36,
                            "identifier": ":\\sym_52O7VXVVZYQGD3Z6C3FDJLGBNMQQ6XC5LJ3IFRQ"
                        },
                        {
                            "name": "__cmpsf2",
                            "size": 94,
                            "identifier": ":\\__cmpsf2"
                        },
                        {
                            "name": "_global_impure_ptr",
                            "size": 4,
                            "identifier": ":\\_global_impure_ptr"
                        },
                        {
                            "name": "sym_UBZJS2DDJXFBNL4D7RG3NTLQLLLCEP5IJ3L4GHI",
                            "size": 42,
                            "identifier": ":\\sym_UBZJS2DDJXFBNL4D7RG3NTLQLLLCEP5IJ3L4GHI"
                        },
                        {
                            "name": "sym_DOZBRJLK4YK3UIAPC27JGEBDCH5Y2BCX3XMRURY",
                            "size": 18,
                            "identifier": ":\\sym_DOZBRJLK4YK3UIAPC27JGEBDCH5Y2BCX3XMRURY"
                        },
                        {
                            "name": "sym_TRMXENGHOH4VBQQZPIN222FLCEFU3Z3CD5C47DY",
                            "size": 12,
                            "identifier": ":\\sym_TRMXENGHOH4VBQQZPIN222FLCEFU3Z3CD5C47DY"
                        },
                        {
                            "name": "sym_7LZ5OF5UTH4WGXV6IKS6GUUHKYRIWQTTIJXNBEY",
                            "size": 6,
                            "identifier": ":\\sym_7LZ5OF5UTH4WGXV6IKS6GUUHKYRIWQTTIJXNBEY"
                        },
                        {
                            "name": "sym_LPFN6QJEOHBT4AP2K7MEYWDZW35U5VHIHXOA54I",
                            "size": 22,
                            "identifier": ":\\sym_LPFN6QJEOHBT4AP2K7MEYWDZW35U5VHIHXOA54I"
                        },
                        {
                            "name": "sym_B2B7AU2WDMX5JQNGTX4YKNCWQCXQIG5PWSSOSAI",
                            "size": 22,
                            "identifier": ":\\sym_B2B7AU2WDMX5JQNGTX4YKNCWQCXQIG5PWSSOSAI"
                        },
                        {
                            "name": "sym_FKU5SDIGNJ3CUR3VYEELCK5CK3EK42NLF7KQXSQ",
                            "size": 8,
                            "identifier": ":\\sym_FKU5SDIGNJ3CUR3VYEELCK5CK3EK42NLF7KQXSQ"
                        },
                        {
                            "name": "sym_MQQDWQQHBS7ZPZWBMOTGVNNHVXRAEPOMLYRTE3A",
                            "size": 8,
                            "identifier": ":\\sym_MQQDWQQHBS7ZPZWBMOTGVNNHVXRAEPOMLYRTE3A"
                        },
                        {
                            "name": "sdc_hci_cmd_le_read_filter_accept_list_size",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_read_filter_accept_list_size"
                        },
                        {
                            "name": "sym_IXGTNRGKILIZPWG2NJIZ2ALUPW2IM3XFVCGJW2I",
                            "size": 6,
                            "identifier": ":\\sym_IXGTNRGKILIZPWG2NJIZ2ALUPW2IM3XFVCGJW2I"
                        },
                        {
                            "name": "sym_M6MZU5PVUKHQMWMMC4UT23L7SRBW44JZLP26X4I",
                            "size": 4,
                            "identifier": ":\\sym_M6MZU5PVUKHQMWMMC4UT23L7SRBW44JZLP26X4I"
                        },
                        {
                            "name": "_free_r",
                            "size": 148,
                            "identifier": ":\\_free_r"
                        },
                        {
                            "name": "sym_N6TOG3AODPPFNS6LXFKKIADNGIMUMBS5BXPEFOY",
                            "size": 20,
                            "identifier": ":\\sym_N6TOG3AODPPFNS6LXFKKIADNGIMUMBS5BXPEFOY"
                        },
                        {
                            "name": "sym_RZ3AO5KZJYCPFG5YW4CBZQF5SRGN3BPTEGBY47I",
                            "size": 32,
                            "identifier": ":\\sym_RZ3AO5KZJYCPFG5YW4CBZQF5SRGN3BPTEGBY47I"
                        },
                        {
                            "name": "ocrypto_curve_p256_scalarmult",
                            "size": 364,
                            "identifier": ":\\ocrypto_curve_p256_scalarmult"
                        },
                        {
                            "name": "sym_MDF364N4PQDEA5ZGP5CB3ZDZVZM5Q32KSEZZ5HI",
                            "size": 38,
                            "identifier": ":\\sym_MDF364N4PQDEA5ZGP5CB3ZDZVZM5Q32KSEZZ5HI"
                        },
                        {
                            "name": "sym_CY3FVUNSUUR4I46K644NW3FXSFSLG3ETQWBRBHQ",
                            "size": 156,
                            "identifier": ":\\sym_CY3FVUNSUUR4I46K644NW3FXSFSLG3ETQWBRBHQ"
                        },
                        {
                            "name": "sym_USR4MDT6VMTQLOGKNN4MALBZ3GJPD2KOEY4HFAQ",
                            "size": 20,
                            "identifier": ":\\sym_USR4MDT6VMTQLOGKNN4MALBZ3GJPD2KOEY4HFAQ"
                        },
                        {
                            "name": "sym_3GY4TYJRRJL4WNFV6XN3ATYT4MIF4FYTN3S33RI",
                            "size": 8,
                            "identifier": ":\\sym_3GY4TYJRRJL4WNFV6XN3ATYT4MIF4FYTN3S33RI"
                        },
                        {
                            "name": "sym_CVH6S6LMSFPC2RM6I6LYWFRVOJUD3A6OCMG7AAI",
                            "size": 860,
                            "identifier": ":\\sym_CVH6S6LMSFPC2RM6I6LYWFRVOJUD3A6OCMG7AAI"
                        },
                        {
                            "name": "__addsf3",
                            "size": 352,
                            "identifier": ":\\__addsf3"
                        },
                        {
                            "name": "sym_2ZCOT6ZEUU54S36NE627GOZVLBS26AFIUJKNLBI",
                            "size": 16,
                            "identifier": ":\\sym_2ZCOT6ZEUU54S36NE627GOZVLBS26AFIUJKNLBI"
                        },
                        {
                            "name": "sym_5X75WALYYBUWN4XT5LYOZBIGSZHVNFKF5J4CSQI",
                            "size": 36,
                            "identifier": ":\\sym_5X75WALYYBUWN4XT5LYOZBIGSZHVNFKF5J4CSQI"
                        },
                        {
                            "name": "sym_6I4XEOIW7LI2E3Z53L54ZHQQHYICXR4H4JQWXLA",
                            "size": 62,
                            "identifier": ":\\sym_6I4XEOIW7LI2E3Z53L54ZHQQHYICXR4H4JQWXLA"
                        },
                        {
                            "name": "sym_35JWAFJL2IEYRDNORVIQ7BBAS7FQNUVOFCLQNSQ",
                            "size": 30,
                            "identifier": ":\\sym_35JWAFJL2IEYRDNORVIQ7BBAS7FQNUVOFCLQNSQ"
                        },
                        {
                            "name": "sym_XEJLNUQGS5P4R5IXDJFF6NE6C2FZWRZYDQOGMPI",
                            "size": 34,
                            "identifier": ":\\sym_XEJLNUQGS5P4R5IXDJFF6NE6C2FZWRZYDQOGMPI"
                        },
                        {
                            "name": "sym_FHGZFWEAJHQUMCWG4E5CUD67QD7B6JGXN3SSXDY",
                            "size": 76,
                            "identifier": ":\\sym_FHGZFWEAJHQUMCWG4E5CUD67QD7B6JGXN3SSXDY"
                        },
                        {
                            "name": "__aeabi_frsub",
                            "size": 364,
                            "identifier": ":\\__aeabi_frsub"
                        },
                        {
                            "name": "sym_NFQK2HO6DBYRYVUCFLRI766EKAAKCM57FJRRS5Y",
                            "size": 54,
                            "identifier": ":\\sym_NFQK2HO6DBYRYVUCFLRI766EKAAKCM57FJRRS5Y"
                        },
                        {
                            "name": "sdc_hci_cmd_le_clear_resolving_list",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_clear_resolving_list"
                        },
                        {
                            "name": "sym_7JFC7IFAJQVPYCQHAIUKZ626ISM3VUWBEEXY7WI",
                            "size": 106,
                            "identifier": ":\\sym_7JFC7IFAJQVPYCQHAIUKZ626ISM3VUWBEEXY7WI"
                        },
                        {
                            "name": "_ZN5bliss12StateMachine25wait_next_advertisement_sE",
                            "size": 20,
                            "identifier": ":\\_ZN5bliss12StateMachine25wait_next_advertisement_sE"
                        },
                        {
                            "name": "mpsl_fem_disable",
                            "size": 8,
                            "identifier": ":\\mpsl_fem_disable"
                        },
                        {
                            "name": "fabs",
                            "size": 8,
                            "identifier": ":\\fabs"
                        },
                        {
                            "name": "sdc_hci_cmd_cb_reset",
                            "size": 24,
                            "identifier": ":\\sdc_hci_cmd_cb_reset"
                        },
                        {
                            "name": "scalbn",
                            "size": 228,
                            "identifier": ":\\scalbn"
                        },
                        {
                            "name": "sym_PAQFQMAKUCMOA6SUTJ7CAX3DYCWNAJLJQFJCDNY",
                            "size": 80,
                            "identifier": ":\\sym_PAQFQMAKUCMOA6SUTJ7CAX3DYCWNAJLJQFJCDNY"
                        },
                        {
                            "name": "__device_dts_ord_99",
                            "size": 28,
                            "identifier": ":\\__device_dts_ord_99"
                        },
                        {
                            "name": "sym_2EA2WBXQOKCTPMK7YNDR6QM6MTGHJCDTPZEXNNA",
                            "size": 28,
                            "identifier": ":\\sym_2EA2WBXQOKCTPMK7YNDR6QM6MTGHJCDTPZEXNNA"
                        },
                        {
                            "name": "sdc_hci_cmd_le_set_resolvable_private_address_timeout",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_set_resolvable_private_address_timeout"
                        },
                        {
                            "name": "sym_TU2SMBIUC7JL6C3K2XB6727DQLBLV5LEGIMZAFQ",
                            "size": 22,
                            "identifier": ":\\sym_TU2SMBIUC7JL6C3K2XB6727DQLBLV5LEGIMZAFQ"
                        },
                        {
                            "name": "_printf_common",
                            "size": 218,
                            "identifier": ":\\_printf_common"
                        },
                        {
                            "name": "sdc_hci_cmd_vs_set_adv_randomness",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_vs_set_adv_randomness"
                        },
                        {
                            "name": "__aeabi_ldiv0",
                            "size": 2,
                            "identifier": ":\\__aeabi_ldiv0"
                        },
                        {
                            "name": "sym_W7ROFHNOSDKPIRUKDGIZZ5YR3MC3DAM2YLJOUIA",
                            "size": 54,
                            "identifier": ":\\sym_W7ROFHNOSDKPIRUKDGIZZ5YR3MC3DAM2YLJOUIA"
                        },
                        {
                            "name": "sym_4JSL5B25NNB5WWK7I5BGUTCTKEZ4HYLOODANEEQ",
                            "size": 34,
                            "identifier": ":\\sym_4JSL5B25NNB5WWK7I5BGUTCTKEZ4HYLOODANEEQ"
                        },
                        {
                            "name": "__swhatbuf_r",
                            "size": 76,
                            "identifier": ":\\__swhatbuf_r"
                        },
                        {
                            "name": "sym_PTZ4EWNTFK5S5TZGCBNFETDF37P4DBX7VGM33II",
                            "size": 56,
                            "identifier": ":\\sym_PTZ4EWNTFK5S5TZGCBNFETDF37P4DBX7VGM33II"
                        },
                        {
                            "name": "sym_FLYO2O6PDDEK6WCFFGJRAPCMRB5FFHTEEHI4Z2Q",
                            "size": 8,
                            "identifier": ":\\sym_FLYO2O6PDDEK6WCFFGJRAPCMRB5FFHTEEHI4Z2Q"
                        },
                        {
                            "name": "sym_VZU4MLS2BZIZVCMAEOYQRASTSKMJXHSO6FAK2JA",
                            "size": 34,
                            "identifier": ":\\sym_VZU4MLS2BZIZVCMAEOYQRASTSKMJXHSO6FAK2JA"
                        },
                        {
                            "name": "sym_JLDLLKBNDO6T4E6HHXX2AI4IG5EDEVR7ET3G3HY",
                            "size": 8,
                            "identifier": ":\\sym_JLDLLKBNDO6T4E6HHXX2AI4IG5EDEVR7ET3G3HY"
                        },
                        {
                            "name": "_ctype_",
                            "size": 257,
                            "identifier": ":\\_ctype_"
                        },
                        {
                            "name": "__sflush_r",
                            "size": 256,
                            "identifier": ":\\__sflush_r"
                        },
                        {
                            "name": "sym_S2UAPMFVIQXDUOA6CV7GJMB33TYHEUH5D6LHO5Q",
                            "size": 68,
                            "identifier": ":\\sym_S2UAPMFVIQXDUOA6CV7GJMB33TYHEUH5D6LHO5Q"
                        },
                        {
                            "name": "sym_CWVFJQ3UTS5MGUYKHB563UDBBB3FBCXUIVZDU2I",
                            "size": 82,
                            "identifier": ":\\sym_CWVFJQ3UTS5MGUYKHB563UDBBB3FBCXUIVZDU2I"
                        },
                        {
                            "name": "sdc_init",
                            "size": 120,
                            "identifier": ":\\sdc_init"
                        },
                        {
                            "name": "sym_U7WTPI24N35WTMGPC25KDS7Q3PHHHS7M5KI6IPY",
                            "size": 16,
                            "identifier": ":\\sym_U7WTPI24N35WTMGPC25KDS7Q3PHHHS7M5KI6IPY"
                        },
                        {
                            "name": "sym_GV7ZEDU63KACGR6K3NXW7W7XARTADNTCQ3P2HLA",
                            "size": 24,
                            "identifier": ":\\sym_GV7ZEDU63KACGR6K3NXW7W7XARTADNTCQ3P2HLA"
                        },
                        {
                            "name": "__sfp_lock_release",
                            "size": 12,
                            "identifier": ":\\__sfp_lock_release"
                        },
                        {
                            "name": "sym_YBUOIVJGKD57C5J4XCQFOKF4I5XT74ICLDOCNXA",
                            "size": 104,
                            "identifier": ":\\sym_YBUOIVJGKD57C5J4XCQFOKF4I5XT74ICLDOCNXA"
                        },
                        {
                            "name": "sym_FYIHUHKV4DLEPRADEPLDQO3YFUPWZFWRUJ4JAOA",
                            "size": 50,
                            "identifier": ":\\sym_FYIHUHKV4DLEPRADEPLDQO3YFUPWZFWRUJ4JAOA"
                        },
                        {
                            "name": "sdc_hci_cmd_lc_disconnect",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_lc_disconnect"
                        },
                        {
                            "name": "sym_OWJYSTADR5I36MIHWNPICVB7CMCWNSFIZPFXQ2Q",
                            "size": 18,
                            "identifier": ":\\sym_OWJYSTADR5I36MIHWNPICVB7CMCWNSFIZPFXQ2Q"
                        },
                        {
                            "name": "sym_7YTCAQN5IYKWCY5F36IVGAEEQIOP6X7YL63LRUI",
                            "size": 20,
                            "identifier": ":\\sym_7YTCAQN5IYKWCY5F36IVGAEEQIOP6X7YL63LRUI"
                        },
                        {
                            "name": "sym_EG23RLBLSE5G7YOHNAAGVAN2JHECRIID2FXGTWA",
                            "size": 32,
                            "identifier": ":\\sym_EG23RLBLSE5G7YOHNAAGVAN2JHECRIID2FXGTWA"
                        },
                        {
                            "name": "sym_SCCFLYV5KOPRJ5S7RGDC2KDSCCHMKXYC3EQIE6A",
                            "size": 6,
                            "identifier": ":\\sym_SCCFLYV5KOPRJ5S7RGDC2KDSCCHMKXYC3EQIE6A"
                        },
                        {
                            "name": "sym_47GVMLF7NXDJBYC2TPU2ES3ZL6CP4GIPWKYYWBI",
                            "size": 70,
                            "identifier": ":\\sym_47GVMLF7NXDJBYC2TPU2ES3ZL6CP4GIPWKYYWBI"
                        },
                        {
                            "name": "sym_M5NXXZSYW5XYDZUQUOZMKSTD6GIS5XZ7Y4SKNVI",
                            "size": 4,
                            "identifier": ":\\sym_M5NXXZSYW5XYDZUQUOZMKSTD6GIS5XZ7Y4SKNVI"
                        },
                        {
                            "name": "sym_5DEPI2OGSPXE5OVFBPVFPSPYPRYUQ54QVVXIKNI",
                            "size": 52,
                            "identifier": ":\\sym_5DEPI2OGSPXE5OVFBPVFPSPYPRYUQ54QVVXIKNI"
                        },
                        {
                            "name": "sym_FEGTISSRZOTQRK4SD4MRDIWBV3TTZYGCCKXTY4Y",
                            "size": 32,
                            "identifier": ":\\sym_FEGTISSRZOTQRK4SD4MRDIWBV3TTZYGCCKXTY4Y"
                        },
                        {
                            "name": "sym_QLJBNB55XHXGY3EZ4W3ZZ3U6AVPE2YGDOXRUZSQ",
                            "size": 60,
                            "identifier": ":\\sym_QLJBNB55XHXGY3EZ4W3ZZ3U6AVPE2YGDOXRUZSQ"
                        },
                        {
                            "name": "__sinit",
                            "size": 112,
                            "identifier": ":\\__sinit"
                        },
                        {
                            "name": "_ZN5bliss12StateMachine13maintenance_sE",
                            "size": 20,
                            "identifier": ":\\_ZN5bliss12StateMachine13maintenance_sE"
                        },
                        {
                            "name": "sdc_hci_cmd_le_read_channel_map",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_read_channel_map"
                        },
                        {
                            "name": "sym_HMWMSCLS2E7KO3CEVZ6FUZGM6YUJ4GDX4JETJTI",
                            "size": 10,
                            "identifier": ":\\sym_HMWMSCLS2E7KO3CEVZ6FUZGM6YUJ4GDX4JETJTI"
                        },
                        {
                            "name": "ocrypto_mod_p256_to_bytes",
                            "size": 50,
                            "identifier": ":\\ocrypto_mod_p256_to_bytes"
                        },
                        {
                            "name": "sym_IP3LLUNJTDBIIPB3UG65MJFJZABGVNT2GN3EQPY",
                            "size": 98,
                            "identifier": ":\\sym_IP3LLUNJTDBIIPB3UG65MJFJZABGVNT2GN3EQPY"
                        },
                        {
                            "name": "sym_FWJGAV6HUABGKXBT6K4XJ76WZDWHK3EOQOQRNOI",
                            "size": 144,
                            "identifier": ":\\sym_FWJGAV6HUABGKXBT6K4XJ76WZDWHK3EOQOQRNOI"
                        },
                        {
                            "name": "sym_MD56XYITEHSLIFIRQT26SWOCASBX33AYW4XGGWY",
                            "size": 6,
                            "identifier": ":\\sym_MD56XYITEHSLIFIRQT26SWOCASBX33AYW4XGGWY"
                        },
                        {
                            "name": "_vfprintf_r",
                            "size": 600,
                            "identifier": ":\\_vfprintf_r"
                        },
                        {
                            "name": "sym_5G7NLKZS4L5IIOBRUSBNVX2FPWE5MWDV7ZI2IXQ",
                            "size": 4,
                            "identifier": ":\\sym_5G7NLKZS4L5IIOBRUSBNVX2FPWE5MWDV7ZI2IXQ"
                        },
                        {
                            "name": "sym_X2K67YH6UCW6TFK6NTLPZZFGWYHTTPZYK5PXHNQ",
                            "size": 352,
                            "identifier": ":\\sym_X2K67YH6UCW6TFK6NTLPZZFGWYHTTPZYK5PXHNQ"
                        },
                        {
                            "name": "__ieee754_sqrt",
                            "size": 364,
                            "identifier": ":\\__ieee754_sqrt"
                        },
                        {
                            "name": "__aeabi_d2iz",
                            "size": 78,
                            "identifier": ":\\__aeabi_d2iz"
                        },
                        {
                            "name": "mpsl_tx_power_radio_supported_power_adjust",
                            "size": 26,
                            "identifier": ":\\mpsl_tx_power_radio_supported_power_adjust"
                        },
                        {
                            "name": "sym_BR3ZWQHTEOP3TTXZR25GQZOEPSGL2XNSEOFSTEI",
                            "size": 52,
                            "identifier": ":\\sym_BR3ZWQHTEOP3TTXZR25GQZOEPSGL2XNSEOFSTEI"
                        },
                        {
                            "name": "sym_ID5SI2L6AD3KMSDR72YSJZGVIA6DEYQZU7WJI3I",
                            "size": 18,
                            "identifier": ":\\sym_ID5SI2L6AD3KMSDR72YSJZGVIA6DEYQZU7WJI3I"
                        },
                        {
                            "name": "sym_T2KVJXUKBW7E6DZMIXB2ENUQYG6P2TBYLXO3PAY",
                            "size": 56,
                            "identifier": ":\\sym_T2KVJXUKBW7E6DZMIXB2ENUQYG6P2TBYLXO3PAY"
                        },
                        {
                            "name": "sym_FQCHK2QLF7THGK7G4A4OWWNXI3K2TVYTTB4U4GY",
                            "size": 26,
                            "identifier": ":\\sym_FQCHK2QLF7THGK7G4A4OWWNXI3K2TVYTTB4U4GY"
                        },
                        {
                            "name": "sym_V4G4DUSXVGCZMSYXHZZWQMKMNZCZVEEIBVCQ7EQ",
                            "size": 18,
                            "identifier": ":\\sym_V4G4DUSXVGCZMSYXHZZWQMKMNZCZVEEIBVCQ7EQ"
                        },
                        {
                            "name": "sdc_hci_cmd_le_set_default_phy",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_set_default_phy"
                        },
                        {
                            "name": "__aeabi_fdiv",
                            "size": 310,
                            "identifier": ":\\__aeabi_fdiv"
                        },
                        {
                            "name": "strncpy",
                            "size": 38,
                            "identifier": ":\\strncpy"
                        },
                        {
                            "name": "sym_DY4TH3UYBBOUULSDPZZ7Y6J5DTNRGWFEBHJXKVA",
                            "size": 44,
                            "identifier": ":\\sym_DY4TH3UYBBOUULSDPZZ7Y6J5DTNRGWFEBHJXKVA"
                        },
                        {
                            "name": "sym_R4Y3KWNYX4PGGLE5X2L7DXMWMJUY3DOXD7LSUKY",
                            "size": 636,
                            "identifier": ":\\sym_R4Y3KWNYX4PGGLE5X2L7DXMWMJUY3DOXD7LSUKY"
                        },
                        {
                            "name": "sym_TDLIKQLE652KPCFAMYL33G6BKGPHRLYLWNEOTHQ",
                            "size": 72,
                            "identifier": ":\\sym_TDLIKQLE652KPCFAMYL33G6BKGPHRLYLWNEOTHQ"
                        },
                        {
                            "name": "sym_XYQTP7YX2XFVREW5KFDH2NNPGRIPEHKIO2RURYI",
                            "size": 26,
                            "identifier": ":\\sym_XYQTP7YX2XFVREW5KFDH2NNPGRIPEHKIO2RURYI"
                        },
                        {
                            "name": "MPSL_IRQ_RTC0_Handler",
                            "size": 136,
                            "identifier": ":\\MPSL_IRQ_RTC0_Handler"
                        },
                        {
                            "name": "sym_7YLXP6BHTAWWWMXLB5XOZU3Q27WEPTH5PONOKOI",
                            "size": 10,
                            "identifier": ":\\sym_7YLXP6BHTAWWWMXLB5XOZU3Q27WEPTH5PONOKOI"
                        },
                        {
                            "name": "sym_RLXNORQP6Y7G7SS35EHJD4DO5NCCU4CXTFXL2EA",
                            "size": 82,
                            "identifier": ":\\sym_RLXNORQP6Y7G7SS35EHJD4DO5NCCU4CXTFXL2EA"
                        },
                        {
                            "name": "sym_V67AIMSO57NYVNGXZF2PDQSJQJLITHU4KD4CKAY",
                            "size": 8,
                            "identifier": ":\\sym_V67AIMSO57NYVNGXZF2PDQSJQJLITHU4KD4CKAY"
                        },
                        {
                            "name": "sym_PY5KUATPBYOYJBMP6H7AVRPSEO7BZX2JK524O6A",
                            "size": 10,
                            "identifier": ":\\sym_PY5KUATPBYOYJBMP6H7AVRPSEO7BZX2JK524O6A"
                        },
                        {
                            "name": "__cmpdf2",
                            "size": 122,
                            "identifier": ":\\__cmpdf2"
                        },
                        {
                            "name": "sym_P35ZNYRPUOIDHAE32RQYT4RWXL5RC6UIZKLHPUQ",
                            "size": 256,
                            "identifier": ":\\sym_P35ZNYRPUOIDHAE32RQYT4RWXL5RC6UIZKLHPUQ"
                        },
                        {
                            "name": "sym_PCLF3MATC3G3MYGRPG4ATMGCS6N4B7M5CSF2C2Y",
                            "size": 22,
                            "identifier": ":\\sym_PCLF3MATC3G3MYGRPG4ATMGCS6N4B7M5CSF2C2Y"
                        },
                        {
                            "name": "sym_DVO2EX3JGPIV6FVT5SJBVRKA5UGS2QSHNQOVQ2A",
                            "size": 200,
                            "identifier": ":\\sym_DVO2EX3JGPIV6FVT5SJBVRKA5UGS2QSHNQOVQ2A"
                        },
                        {
                            "name": "sym_KQ7WDRFWHZIBRVZJQIHMC5NBIZUJ4NGFK5AE4FQ",
                            "size": 34,
                            "identifier": ":\\sym_KQ7WDRFWHZIBRVZJQIHMC5NBIZUJ4NGFK5AE4FQ"
                        },
                        {
                            "name": "sym_ZIE6EQ2YDF5ZLLLNRMU6NPOFHB7VMBHYMI4646I",
                            "size": 40,
                            "identifier": ":\\sym_ZIE6EQ2YDF5ZLLLNRMU6NPOFHB7VMBHYMI4646I"
                        },
                        {
                            "name": "sdc_hci_cmd_le_clear_filter_accept_list",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_clear_filter_accept_list"
                        },
                        {
                            "name": "sym_M65PCSZAPVYR7V5YEMYJW264OYLXMV6F2CRGMXQ",
                            "size": 38,
                            "identifier": ":\\sym_M65PCSZAPVYR7V5YEMYJW264OYLXMV6F2CRGMXQ"
                        },
                        {
                            "name": "sym_7LJR6S4GQKSUMWIUG2FRZAKXFD3RUBQ6FOHJMZQ",
                            "size": 10,
                            "identifier": ":\\sym_7LJR6S4GQKSUMWIUG2FRZAKXFD3RUBQ6FOHJMZQ"
                        },
                        {
                            "name": "sym_XQWU4MX22DPQIRRYTXBNWTH2DBYK7MH33FME7FI",
                            "size": 38,
                            "identifier": ":\\sym_XQWU4MX22DPQIRRYTXBNWTH2DBYK7MH33FME7FI"
                        },
                        {
                            "name": "sym_RUQGL7Y7CEVCWXKLY62UGVRWLQYUPKUGTSH7NVY",
                            "size": 4,
                            "identifier": ":\\sym_RUQGL7Y7CEVCWXKLY62UGVRWLQYUPKUGTSH7NVY"
                        },
                        {
                            "name": "__sfputs_r",
                            "size": 36,
                            "identifier": ":\\__sfputs_r"
                        },
                        {
                            "name": "sym_LIY23QT3GHIV7NCGJ6ZW6LB2ZUSI56CIFCL6HUY",
                            "size": 22,
                            "identifier": ":\\sym_LIY23QT3GHIV7NCGJ6ZW6LB2ZUSI56CIFCL6HUY"
                        },
                        {
                            "name": "sym_PMB4FUQR4IQVAL4FOP3PPQDDXYDFQIUYDVZ6DGY",
                            "size": 12,
                            "identifier": ":\\sym_PMB4FUQR4IQVAL4FOP3PPQDDXYDFQIUYDVZ6DGY"
                        },
                        {
                            "name": "sym_3NMQXTBVJ27TN5IIVET3BSKEAUONNKTPZTYP2HY",
                            "size": 22,
                            "identifier": ":\\sym_3NMQXTBVJ27TN5IIVET3BSKEAUONNKTPZTYP2HY"
                        },
                        {
                            "name": "sym_VV6G4PHP6ULWM4Y2LJJIOETDZSUFDXGJCHBQNZI",
                            "size": 8,
                            "identifier": ":\\sym_VV6G4PHP6ULWM4Y2LJJIOETDZSUFDXGJCHBQNZI"
                        },
                        {
                            "name": "sym_NGJGZTNK6YIH3QX2NKB6A6MT7N5AOKWA6ZOOANQ",
                            "size": 8,
                            "identifier": ":\\sym_NGJGZTNK6YIH3QX2NKB6A6MT7N5AOKWA6ZOOANQ"
                        },
                        {
                            "name": "sym_FIYSAC63N2FF462LEI76F5US34JKFTAQDSI2LXA",
                            "size": 118,
                            "identifier": ":\\sym_FIYSAC63N2FF462LEI76F5US34JKFTAQDSI2LXA"
                        },
                        {
                            "name": "sym_EMR2H7KEGRFFKS6A4P3ZPPGOJSTVXLGRI25MEYQ",
                            "size": 330,
                            "identifier": ":\\sym_EMR2H7KEGRFFKS6A4P3ZPPGOJSTVXLGRI25MEYQ"
                        },
                        {
                            "name": "sym_3RLTHYPNUGF2GJUCXUGLNFS6UK7UWZOBB6PWVDI",
                            "size": 16,
                            "identifier": ":\\sym_3RLTHYPNUGF2GJUCXUGLNFS6UK7UWZOBB6PWVDI"
                        },
                        {
                            "name": "__aeabi_cfcmpeq",
                            "size": 16,
                            "identifier": ":\\__aeabi_cfcmpeq"
                        },
                        {
                            "name": "sym_5FDRWQI6XUFWVRIX2PMRPNDHWCIMAZ67SSGSRVI",
                            "size": 90,
                            "identifier": ":\\sym_5FDRWQI6XUFWVRIX2PMRPNDHWCIMAZ67SSGSRVI"
                        },
                        {
                            "name": "sym_3S3ZPZTS3JKT3LR3P6QZ3KOW4P72YQZEIQOYGSA",
                            "size": 26,
                            "identifier": ":\\sym_3S3ZPZTS3JKT3LR3P6QZ3KOW4P72YQZEIQOYGSA"
                        },
                        {
                            "name": "sym_JYVNTINWWHBNIBW6ZPFJYFKZBQTI25EUE75U36Y",
                            "size": 34,
                            "identifier": ":\\sym_JYVNTINWWHBNIBW6ZPFJYFKZBQTI25EUE75U36Y"
                        },
                        {
                            "name": "sym_VKBDHCW5KWYFAEZJJBKQNHH4JDURIHHEJCK4SOA",
                            "size": 8,
                            "identifier": ":\\sym_VKBDHCW5KWYFAEZJJBKQNHH4JDURIHHEJCK4SOA"
                        },
                        {
                            "name": "_ZN4carl3app12idle_displayE",
                            "size": 14,
                            "identifier": ":\\_ZN4carl3app12idle_displayE"
                        },
                        {
                            "name": "_ZN5bliss12StateMachine11wait_sync_sE",
                            "size": 20,
                            "identifier": ":\\_ZN5bliss12StateMachine11wait_sync_sE"
                        },
                        {
                            "name": "sym_6E7DB5DGCJDCKNJAQTLQVPITL6JXBGRB3SQGSDY",
                            "size": 8,
                            "identifier": ":\\sym_6E7DB5DGCJDCKNJAQTLQVPITL6JXBGRB3SQGSDY"
                        },
                        {
                            "name": "sym_O2AFZAWKVBYRIBDK67CHKRSMY4WR2S6V2VOPETI",
                            "size": 8,
                            "identifier": ":\\sym_O2AFZAWKVBYRIBDK67CHKRSMY4WR2S6V2VOPETI"
                        },
                        {
                            "name": "raise",
                            "size": 16,
                            "identifier": ":\\raise"
                        },
                        {
                            "name": "sym_VWOYI7XCNXBFVPWSS6WFJ2CWKPJYCMRRQTU7QWQ",
                            "size": 80,
                            "identifier": ":\\sym_VWOYI7XCNXBFVPWSS6WFJ2CWKPJYCMRRQTU7QWQ"
                        },
                        {
                            "name": "sym_USXJ3USYRHE5AVFUSG2J2G7QDHRASPG75ESP25A",
                            "size": 6,
                            "identifier": ":\\sym_USXJ3USYRHE5AVFUSG2J2G7QDHRASPG75ESP25A"
                        },
                        {
                            "name": "sym_V6WVC3IEGFJGJMCL2AM6XT7PQZ2G3RNXA5M3I2A",
                            "size": 84,
                            "identifier": ":\\sym_V6WVC3IEGFJGJMCL2AM6XT7PQZ2G3RNXA5M3I2A"
                        },
                        {
                            "name": "sym_XGMYPLGF3Q5IDBTHXI7LBKOVEGJV3YOSYITNMYA",
                            "size": 4,
                            "identifier": ":\\sym_XGMYPLGF3Q5IDBTHXI7LBKOVEGJV3YOSYITNMYA"
                        },
                        {
                            "name": "sym_YNBBHT54WKEGUNVC6TSBMRGLF67VFWBOYEMKGTQ",
                            "size": 40,
                            "identifier": ":\\sym_YNBBHT54WKEGUNVC6TSBMRGLF67VFWBOYEMKGTQ"
                        },
                        {
                            "name": "fprintf",
                            "size": 36,
                            "identifier": ":\\fprintf"
                        },
                        {
                            "name": "sym_XD56LJG2JTRU4Q2V7WCY72EI3VTZICA3O4ERV2A",
                            "size": 8,
                            "identifier": ":\\sym_XD56LJG2JTRU4Q2V7WCY72EI3VTZICA3O4ERV2A"
                        },
                        {
                            "name": "sym_KH2TZBL3IC4Q72SOWRZYKXJYTC66QUG36J2D64Q",
                            "size": 56,
                            "identifier": ":\\sym_KH2TZBL3IC4Q72SOWRZYKXJYTC66QUG36J2D64Q"
                        },
                        {
                            "name": "sym_PBCQYO46QLEABI4SERHQCHCGDP6NXKCTAYVE53Y",
                            "size": 20,
                            "identifier": ":\\sym_PBCQYO46QLEABI4SERHQCHCGDP6NXKCTAYVE53Y"
                        },
                        {
                            "name": "sym_TSYEIN5CZPQE3YK6VECZD5C2M4LMXKKH6O7LNAY",
                            "size": 174,
                            "identifier": ":\\sym_TSYEIN5CZPQE3YK6VECZD5C2M4LMXKKH6O7LNAY"
                        },
                        {
                            "name": "__sinit_lock_release",
                            "size": 12,
                            "identifier": ":\\__sinit_lock_release"
                        },
                        {
                            "name": "_malloc_usable_size_r",
                            "size": 16,
                            "identifier": ":\\_malloc_usable_size_r"
                        },
                        {
                            "name": "sym_BIDMG7YHRFQNLIKRFVSOGOT6IXZCQ6UEJKN52VI",
                            "size": 22,
                            "identifier": ":\\sym_BIDMG7YHRFQNLIKRFVSOGOT6IXZCQ6UEJKN52VI"
                        },
                        {
                            "name": "__aeabi_d2f",
                            "size": 158,
                            "identifier": ":\\__aeabi_d2f"
                        },
                        {
                            "name": "mpsl_timeslot_session_count_set",
                            "size": 76,
                            "identifier": ":\\mpsl_timeslot_session_count_set"
                        },
                        {
                            "name": "sdc_hci_cmd_le_read_adv_physical_channel_tx_power",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_read_adv_physical_channel_tx_power"
                        },
                        {
                            "name": "sym_RGBMWS6T65LAWR3HOVV5354MKQCATDBBY34XWQA",
                            "size": 6,
                            "identifier": ":\\sym_RGBMWS6T65LAWR3HOVV5354MKQCATDBBY34XWQA"
                        },
                        {
                            "name": "sym_UPAEGKLCM3QW7VHROMMVD5MIRBTM2NGCYENWSLI",
                            "size": 4,
                            "identifier": ":\\sym_UPAEGKLCM3QW7VHROMMVD5MIRBTM2NGCYENWSLI"
                        },
                        {
                            "name": "sym_YG4UROEKVB7ZBE5TWHLNJHYKSFBTXGBYAX3RXRI",
                            "size": 12,
                            "identifier": ":\\sym_YG4UROEKVB7ZBE5TWHLNJHYKSFBTXGBYAX3RXRI"
                        },
                        {
                            "name": "sdc_hci_cmd_le_read_phy",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_read_phy"
                        },
                        {
                            "name": "sym_55XNA7W2CQFJPCH62ZAKHLPISYHJ7KMNREEN6EA",
                            "size": 56,
                            "identifier": ":\\sym_55XNA7W2CQFJPCH62ZAKHLPISYHJ7KMNREEN6EA"
                        },
                        {
                            "name": "sym_U3LPDM4ZN7F4EBRA6GBYBEUAHXDWZU7U4P3OZRQ",
                            "size": 34,
                            "identifier": ":\\sym_U3LPDM4ZN7F4EBRA6GBYBEUAHXDWZU7U4P3OZRQ"
                        },
                        {
                            "name": "sym_4U2RA2RXIRU5BEMWZTHT3PETZK6K62P2SAJVWHA",
                            "size": 46,
                            "identifier": ":\\sym_4U2RA2RXIRU5BEMWZTHT3PETZK6K62P2SAJVWHA"
                        },
                        {
                            "name": "sym_3ZNIOFG7XMX7YS4WHN4QVNG3AVWN2QVSTHUWDXQ",
                            "size": 36,
                            "identifier": ":\\sym_3ZNIOFG7XMX7YS4WHN4QVNG3AVWN2QVSTHUWDXQ"
                        },
                        {
                            "name": "sym_PHK7RXLFFTGYQNCW3IEEUVLOAYXWQJQYEN3DT7Y",
                            "size": 4,
                            "identifier": ":\\sym_PHK7RXLFFTGYQNCW3IEEUVLOAYXWQJQYEN3DT7Y"
                        },
                        {
                            "name": "__device_dts_ord_12",
                            "size": 28,
                            "identifier": ":\\__device_dts_ord_12"
                        },
                        {
                            "name": "sym_FHMOSTDS4FAIPN4GDRMMMBPMBOTEQ5DLCM2A23Q",
                            "size": 8,
                            "identifier": ":\\sym_FHMOSTDS4FAIPN4GDRMMMBPMBOTEQ5DLCM2A23Q"
                        },
                        {
                            "name": "sdc_hci_cmd_cb_write_authenticated_payload_timeout",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_cb_write_authenticated_payload_timeout"
                        },
                        {
                            "name": "sdc_hci_cmd_le_set_phy",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_set_phy"
                        },
                        {
                            "name": "sym_24AALTDC2IQ6VNWU2ALOY4V3RG5R2RARTUG4AZY",
                            "size": 24,
                            "identifier": ":\\sym_24AALTDC2IQ6VNWU2ALOY4V3RG5R2RARTUG4AZY"
                        },
                        {
                            "name": "mpsl_fem_pa_gain_set",
                            "size": 8,
                            "identifier": ":\\mpsl_fem_pa_gain_set"
                        },
                        {
                            "name": "sym_Y4YRJRQYBZO6PGAQYLST7K67PDXS4EJWF2FNNKA",
                            "size": 142,
                            "identifier": ":\\sym_Y4YRJRQYBZO6PGAQYLST7K67PDXS4EJWF2FNNKA"
                        },
                        {
                            "name": "sym_AOU55ZK756JLPLCLZ5TZSSVKOAWWFUNQZATBXUI",
                            "size": 84,
                            "identifier": ":\\sym_AOU55ZK756JLPLCLZ5TZSSVKOAWWFUNQZATBXUI"
                        },
                        {
                            "name": "sym_77ICNIHY2R2L3JRP4ZLMOWZSS3UZRKJXJOBWTWI",
                            "size": 20,
                            "identifier": ":\\sym_77ICNIHY2R2L3JRP4ZLMOWZSS3UZRKJXJOBWTWI"
                        },
                        {
                            "name": "__sfp_lock_acquire",
                            "size": 12,
                            "identifier": ":\\__sfp_lock_acquire"
                        },
                        {
                            "name": "sym_KM5SKFVNZKDXUQ7BDD3RZ5UCA5E3ZDVNWYJVR3Y",
                            "size": 22,
                            "identifier": ":\\sym_KM5SKFVNZKDXUQ7BDD3RZ5UCA5E3ZDVNWYJVR3Y"
                        },
                        {
                            "name": "__aeabi_dcmpge",
                            "size": 18,
                            "identifier": ":\\__aeabi_dcmpge"
                        },
                        {
                            "name": "sym_RZ4KEX57U2ASIFFSRQDHBCB7WVJNTOCZSYKJFSA",
                            "size": 26,
                            "identifier": ":\\sym_RZ4KEX57U2ASIFFSRQDHBCB7WVJNTOCZSYKJFSA"
                        },
                        {
                            "name": "sym_HHT5YV37VWRBGUMO4AOJUKOJARZKAH2OUWPZF7Q",
                            "size": 38,
                            "identifier": ":\\sym_HHT5YV37VWRBGUMO4AOJUKOJARZKAH2OUWPZF7Q"
                        },
                        {
                            "name": "__device_dts_ord_17",
                            "size": 28,
                            "identifier": ":\\__device_dts_ord_17"
                        },
                        {
                            "name": "sym_MWD4AC6ISIKEYDTZF7KXOTJOBUPKKWWLNRGAYAA",
                            "size": 30,
                            "identifier": ":\\sym_MWD4AC6ISIKEYDTZF7KXOTJOBUPKKWWLNRGAYAA"
                        },
                        {
                            "name": "sdc_hci_data_put",
                            "size": 22,
                            "identifier": ":\\sdc_hci_data_put"
                        },
                        {
                            "name": "sym_EHH4TL4V6XWVDGG5OCXTIQQT5C4OFTGXZXSIJAA",
                            "size": 28,
                            "identifier": ":\\sym_EHH4TL4V6XWVDGG5OCXTIQQT5C4OFTGXZXSIJAA"
                        },
                        {
                            "name": "sym_CFZK3G6ZC4ONUAYO2UALWQ4CBO7A6ADNAS2FS7Y",
                            "size": 62,
                            "identifier": ":\\sym_CFZK3G6ZC4ONUAYO2UALWQ4CBO7A6ADNAS2FS7Y"
                        },
                        {
                            "name": "mpsl_fem_tx_power_split",
                            "size": 14,
                            "identifier": ":\\mpsl_fem_tx_power_split"
                        },
                        {
                            "name": "sym_35ZAQW4ABRMBYES2ZHPK63BHZAFFFC4WMGEJ6NA",
                            "size": 44,
                            "identifier": ":\\sym_35ZAQW4ABRMBYES2ZHPK63BHZAFFFC4WMGEJ6NA"
                        },
                        {
                            "name": "sym_J2SUO2NMPPNDQZAGB2FE5TAXJFMJ5FZXKAPNVFQ",
                            "size": 16,
                            "identifier": ":\\sym_J2SUO2NMPPNDQZAGB2FE5TAXJFMJ5FZXKAPNVFQ"
                        },
                        {
                            "name": "sym_5UID3SBXLTGQYGRFXVINZNLWHB7EKFT76O275JI",
                            "size": 36,
                            "identifier": ":\\sym_5UID3SBXLTGQYGRFXVINZNLWHB7EKFT76O275JI"
                        },
                        {
                            "name": "__device_dts_ord_51",
                            "size": 28,
                            "identifier": ":\\__device_dts_ord_51"
                        },
                        {
                            "name": "__swrite",
                            "size": 56,
                            "identifier": ":\\__swrite"
                        },
                        {
                            "name": "sym_RYQA5YFFRJZLTYB2ISC2Y3WUY3XB3LBBL37F22Q",
                            "size": 4,
                            "identifier": ":\\sym_RYQA5YFFRJZLTYB2ISC2Y3WUY3XB3LBBL37F22Q"
                        },
                        {
                            "name": "sym_UEYPZKGY2IF5BYZ3QDKK4LEW4OE7NWR6DH5XEZQ",
                            "size": 10,
                            "identifier": ":\\sym_UEYPZKGY2IF5BYZ3QDKK4LEW4OE7NWR6DH5XEZQ"
                        },
                        {
                            "name": "sym_2YSDS7VWGMSD5CN64D2VGQIYXBV3A6NJCHWFZEY",
                            "size": 90,
                            "identifier": ":\\sym_2YSDS7VWGMSD5CN64D2VGQIYXBV3A6NJCHWFZEY"
                        },
                        {
                            "name": "sym_YAOI5BW7G2C6EUUY2B4S7A3CWX63A6MP2T3O5KA",
                            "size": 48,
                            "identifier": ":\\sym_YAOI5BW7G2C6EUUY2B4S7A3CWX63A6MP2T3O5KA"
                        },
                        {
                            "name": "sym_4BGPQMJJRBR2ET4K6M3CH3OLXQGTP2TS7FVXINA",
                            "size": 22,
                            "identifier": ":\\sym_4BGPQMJJRBR2ET4K6M3CH3OLXQGTP2TS7FVXINA"
                        },
                        {
                            "name": "sym_F77FUTRRLLWPYDS7BBANG2WE3C4EDMYMAPNI54A",
                            "size": 18,
                            "identifier": ":\\sym_F77FUTRRLLWPYDS7BBANG2WE3C4EDMYMAPNI54A"
                        },
                        {
                            "name": "mpsl_fem_pa_is_configured",
                            "size": 8,
                            "identifier": ":\\mpsl_fem_pa_is_configured"
                        },
                        {
                            "name": "sym_NT2IJ3T3KMFT6N2I2OJU2HPSQ63J6FQHEAYOFIA",
                            "size": 44,
                            "identifier": ":\\sym_NT2IJ3T3KMFT6N2I2OJU2HPSQ63J6FQHEAYOFIA"
                        },
                        {
                            "name": "__aeabi_dmul",
                            "size": 596,
                            "identifier": ":\\__aeabi_dmul"
                        },
                        {
                            "name": "sym_MEYOCD6AYGN6BYYH5M35H6GLLMHM6TYBBTCW2LI",
                            "size": 74,
                            "identifier": ":\\sym_MEYOCD6AYGN6BYYH5M35H6GLLMHM6TYBBTCW2LI"
                        },
                        {
                            "name": "sym_XRSFUVJVALTQXGE7INRI3M6HEEON3PEMDM73SDI",
                            "size": 26,
                            "identifier": ":\\sym_XRSFUVJVALTQXGE7INRI3M6HEEON3PEMDM73SDI"
                        },
                        {
                            "name": "sym_Q4EW623JZHY67RB7U4Z2L2SMI5ENWIDFL23JZHQ",
                            "size": 40,
                            "identifier": ":\\sym_Q4EW623JZHY67RB7U4Z2L2SMI5ENWIDFL23JZHQ"
                        },
                        {
                            "name": "ocrypto_curve_p256_scalarmult_base",
                            "size": 12,
                            "identifier": ":\\ocrypto_curve_p256_scalarmult_base"
                        },
                        {
                            "name": "sym_H2QJCU2ORTYAFBAQQ2FHUYIAZO4HCXEKCQ4SS2Q",
                            "size": 20,
                            "identifier": ":\\sym_H2QJCU2ORTYAFBAQQ2FHUYIAZO4HCXEKCQ4SS2Q"
                        },
                        {
                            "name": "sym_M4DIQOXJAE3BNHQBIUCZXAABSM24CWUEJOCU7DY",
                            "size": 6,
                            "identifier": ":\\sym_M4DIQOXJAE3BNHQBIUCZXAABSM24CWUEJOCU7DY"
                        },
                        {
                            "name": "sym_3CD5EC6VYR6RXXLO3FXSZQ37BOYSM63APF5D5BA",
                            "size": 48,
                            "identifier": ":\\sym_3CD5EC6VYR6RXXLO3FXSZQ37BOYSM63APF5D5BA"
                        },
                        {
                            "name": "close",
                            "size": 6,
                            "identifier": ":\\close"
                        },
                        {
                            "name": "sym_3NUECOSAIC227DBCPHAP4U7EQ3UBTGANU5ASIOA",
                            "size": 6,
                            "identifier": ":\\sym_3NUECOSAIC227DBCPHAP4U7EQ3UBTGANU5ASIOA"
                        },
                        {
                            "name": "sym_SFR5TVV24PZRIRC5QGOHL2X436PUHKRY2QWKP5Y",
                            "size": 424,
                            "identifier": ":\\sym_SFR5TVV24PZRIRC5QGOHL2X436PUHKRY2QWKP5Y"
                        },
                        {
                            "name": "__aeabi_dcmpun",
                            "size": 44,
                            "identifier": ":\\__aeabi_dcmpun"
                        },
                        {
                            "name": "sym_ORUJDMUJV7RZIFXM3X5KLRROPKJ7VPLJ65JMLRQ",
                            "size": 118,
                            "identifier": ":\\sym_ORUJDMUJV7RZIFXM3X5KLRROPKJ7VPLJ65JMLRQ"
                        },
                        {
                            "name": "__device_dts_ord_91",
                            "size": 28,
                            "identifier": ":\\__device_dts_ord_91"
                        },
                        {
                            "name": "sym_JU2KBYZVAT7EYGVZA4FU7TNK2PDUQNCWUBE5MWQ",
                            "size": 102,
                            "identifier": ":\\sym_JU2KBYZVAT7EYGVZA4FU7TNK2PDUQNCWUBE5MWQ"
                        },
                        {
                            "name": "sym_Z3P3D5U3YDA66QTFRMTODYQPS5XZL7N2E3M2DIY",
                            "size": 16,
                            "identifier": ":\\sym_Z3P3D5U3YDA66QTFRMTODYQPS5XZL7N2E3M2DIY"
                        },
                        {
                            "name": "sym_PVKZWZJ5CJJGE5FITE5FOMMY5J4BUV2COWMQKSY",
                            "size": 18,
                            "identifier": ":\\sym_PVKZWZJ5CJJGE5FITE5FOMMY5J4BUV2COWMQKSY"
                        },
                        {
                            "name": "sdc_hci_cmd_vs_llpm_mode_set",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_vs_llpm_mode_set"
                        },
                        {
                            "name": "sym_LSYZDZOMTD6BKKRX25HIBNLFKSFDXBS3PS4UKOY",
                            "size": 12,
                            "identifier": ":\\sym_LSYZDZOMTD6BKKRX25HIBNLFKSFDXBS3PS4UKOY"
                        },
                        {
                            "name": "sdc_hci_cmd_le_set_adv_params",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_set_adv_params"
                        },
                        {
                            "name": "__aeabi_dcmple",
                            "size": 18,
                            "identifier": ":\\__aeabi_dcmple"
                        },
                        {
                            "name": "sym_S6U6ANENQP6QL5TLITNXPOYFSB26Q5AFTW32CXI",
                            "size": 22,
                            "identifier": ":\\sym_S6U6ANENQP6QL5TLITNXPOYFSB26Q5AFTW32CXI"
                        },
                        {
                            "name": "__subsf3",
                            "size": 356,
                            "identifier": ":\\__subsf3"
                        },
                        {
                            "name": "sym_VBKW2EEGTD4JJSNUU73GLQHLYR7TWOGYRMQYZEY",
                            "size": 14,
                            "identifier": ":\\sym_VBKW2EEGTD4JJSNUU73GLQHLYR7TWOGYRMQYZEY"
                        },
                        {
                            "name": "mpu_config",
                            "size": 8,
                            "identifier": ":\\mpu_config"
                        },
                        {
                            "name": "sym_ARLNRKQ66P65CL63VENK3NR6NFAZLWPJOOVV7RQ",
                            "size": 8,
                            "identifier": ":\\sym_ARLNRKQ66P65CL63VENK3NR6NFAZLWPJOOVV7RQ"
                        },
                        {
                            "name": "sym_BJJ4JJDCVJTQH3OQZK6RMMOLISQZEJEZ3BJOKJY",
                            "size": 26,
                            "identifier": ":\\sym_BJJ4JJDCVJTQH3OQZK6RMMOLISQZEJEZ3BJOKJY"
                        },
                        {
                            "name": "ocrypto_curve_p256_to64bytes",
                            "size": 26,
                            "identifier": ":\\ocrypto_curve_p256_to64bytes"
                        },
                        {
                            "name": "sym_DDEKRCVCBAV6DMR2JGOTTXJPMB6OW3IK3MJRV2Q",
                            "size": 8,
                            "identifier": ":\\sym_DDEKRCVCBAV6DMR2JGOTTXJPMB6OW3IK3MJRV2Q"
                        },
                        {
                            "name": "_cleanup_r",
                            "size": 12,
                            "identifier": ":\\_cleanup_r"
                        },
                        {
                            "name": "_ZN4carl3hal12batteryGauge12timerBat_semE",
                            "size": 24,
                            "identifier": ":\\_ZN4carl3hal12batteryGauge12timerBat_semE"
                        },
                        {
                            "name": "sym_JQOBED6Y6P46KNYF2UD53QPDVNRPPOKMQL6EEBY",
                            "size": 6,
                            "identifier": ":\\sym_JQOBED6Y6P46KNYF2UD53QPDVNRPPOKMQL6EEBY"
                        },
                        {
                            "name": "sdc_build_revision_get",
                            "size": 22,
                            "identifier": ":\\sdc_build_revision_get"
                        },
                        {
                            "name": "sym_266BMVQDBLXULMLATXWWN2P23YFP57RBL2ZNQ7A",
                            "size": 6,
                            "identifier": ":\\sym_266BMVQDBLXULMLATXWWN2P23YFP57RBL2ZNQ7A"
                        },
                        {
                            "name": "__device_dts_ord_100",
                            "size": 28,
                            "identifier": ":\\__device_dts_ord_100"
                        },
                        {
                            "name": "sym_W447CEMR6K6QRW3N63PRPIR7NK6ENOSBFXLCPRQ",
                            "size": 42,
                            "identifier": ":\\sym_W447CEMR6K6QRW3N63PRPIR7NK6ENOSBFXLCPRQ"
                        },
                        {
                            "name": "_ZN11phyphox_ble7autogen10exp_headerE",
                            "size": 15,
                            "identifier": ":\\_ZN11phyphox_ble7autogen10exp_headerE"
                        },
                        {
                            "name": "__device_dts_ord_8",
                            "size": 28,
                            "identifier": ":\\__device_dts_ord_8"
                        },
                        {
                            "name": "sym_WGJLFS2PDN6RZG7JWUITZ3W5MGJYYXFXIKI3GGQ",
                            "size": 14,
                            "identifier": ":\\sym_WGJLFS2PDN6RZG7JWUITZ3W5MGJYYXFXIKI3GGQ"
                        },
                        {
                            "name": "__device_dts_ord_7",
                            "size": 28,
                            "identifier": ":\\__device_dts_ord_7"
                        },
                        {
                            "name": "sym_UHWWEFDYCEMO6BV2Q3GVLMFC37EIDJEWGQC2XUA",
                            "size": 26,
                            "identifier": ":\\sym_UHWWEFDYCEMO6BV2Q3GVLMFC37EIDJEWGQC2XUA"
                        },
                        {
                            "name": "sym_ULWM63O6UPJLQWAHX3MM6KEQT4NBSDWNEO3LSBY",
                            "size": 64,
                            "identifier": ":\\sym_ULWM63O6UPJLQWAHX3MM6KEQT4NBSDWNEO3LSBY"
                        },
                        {
                            "name": "__sseek",
                            "size": 36,
                            "identifier": ":\\__sseek"
                        },
                        {
                            "name": "sym_C4ZAWP4QAOEKUKS7VCLA6E4RPDOWCDVMBYVKPFI",
                            "size": 120,
                            "identifier": ":\\sym_C4ZAWP4QAOEKUKS7VCLA6E4RPDOWCDVMBYVKPFI"
                        },
                        {
                            "name": "sym_L64WJ6W52HQBFQCTPO5LHELOWQEJNMIWLQKG6JY",
                            "size": 60,
                            "identifier": ":\\sym_L64WJ6W52HQBFQCTPO5LHELOWQEJNMIWLQKG6JY"
                        },
                        {
                            "name": "sym_2UKPFKMGRDZ4VV635IPSP7DNWK4DJAJ7LOHQN6A",
                            "size": 40,
                            "identifier": ":\\sym_2UKPFKMGRDZ4VV635IPSP7DNWK4DJAJ7LOHQN6A"
                        },
                        {
                            "name": "_ZN4carl8led_task9timer_semE",
                            "size": 24,
                            "identifier": ":\\_ZN4carl8led_task9timer_semE"
                        },
                        {
                            "name": "sym_O6J3MUC4KJEDMNJLCC5Z3G5LTC5IHVL4PW7F6QI",
                            "size": 6,
                            "identifier": ":\\sym_O6J3MUC4KJEDMNJLCC5Z3G5LTC5IHVL4PW7F6QI"
                        },
                        {
                            "name": "__device_dts_ord_2",
                            "size": 28,
                            "identifier": ":\\__device_dts_ord_2"
                        },
                        {
                            "name": "k_work_delayable_busy_get",
                            "size": 4,
                            "identifier": ":\\k_work_delayable_busy_get"
                        },
                        {
                            "name": "sym_W6IKRDQNYMHGTRDGPLEMFTUCJYSU6SRYW73T4XI",
                            "size": 34,
                            "identifier": ":\\sym_W6IKRDQNYMHGTRDGPLEMFTUCJYSU6SRYW73T4XI"
                        },
                        {
                            "name": "sym_UOYZDE3MDLGPDL5S5WKUFLPYH4DJIMF3BJSBDYA",
                            "size": 80,
                            "identifier": ":\\sym_UOYZDE3MDLGPDL5S5WKUFLPYH4DJIMF3BJSBDYA"
                        },
                        {
                            "name": "ocrypto_mod_p256_cneg",
                            "size": 58,
                            "identifier": ":\\ocrypto_mod_p256_cneg"
                        },
                        {
                            "name": "sdc_hci_cmd_ip_read_local_version_information",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_ip_read_local_version_information"
                        },
                        {
                            "name": "rint",
                            "size": 276,
                            "identifier": ":\\rint"
                        },
                        {
                            "name": "sym_A7PVZLRTORLFMETW3GOBE4DG32WTH46LP2SW5QQ",
                            "size": 82,
                            "identifier": ":\\sym_A7PVZLRTORLFMETW3GOBE4DG32WTH46LP2SW5QQ"
                        },
                        {
                            "name": "__device_dts_ord_9",
                            "size": 28,
                            "identifier": ":\\__device_dts_ord_9"
                        },
                        {
                            "name": "sym_GNUIHYMK3THJZQYGL7BBI74HDMHN6SBQQRVNSAY",
                            "size": 4,
                            "identifier": ":\\sym_GNUIHYMK3THJZQYGL7BBI74HDMHN6SBQQRVNSAY"
                        },
                        {
                            "name": "sym_QA2HTUWXDQAGJZ32BSTQMVSMKKNETZBUHL37LYA",
                            "size": 10,
                            "identifier": ":\\sym_QA2HTUWXDQAGJZ32BSTQMVSMKKNETZBUHL37LYA"
                        },
                        {
                            "name": "sym_PPT6FEOF2T6DRALMCRRTUI7CHLEPBAN25HYV3KQ",
                            "size": 12,
                            "identifier": ":\\sym_PPT6FEOF2T6DRALMCRRTUI7CHLEPBAN25HYV3KQ"
                        },
                        {
                            "name": "sym_A5S3P57NWYYY5XJWBYERU6H4QSVP5TCTU7HKA5Y",
                            "size": 148,
                            "identifier": ":\\sym_A5S3P57NWYYY5XJWBYERU6H4QSVP5TCTU7HKA5Y"
                        },
                        {
                            "name": "sym_YBOODJ7VBLXRRILCBQXIORIXU3GHRAYK6WULLQY",
                            "size": 18,
                            "identifier": ":\\sym_YBOODJ7VBLXRRILCBQXIORIXU3GHRAYK6WULLQY"
                        },
                        {
                            "name": "sym_XMQQMVD4MD6DRWNW2DWSCGOMJHFY3IX7NXUHTGI",
                            "size": 836,
                            "identifier": ":\\sym_XMQQMVD4MD6DRWNW2DWSCGOMJHFY3IX7NXUHTGI"
                        },
                        {
                            "name": "_getpid_r",
                            "size": 4,
                            "identifier": ":\\_getpid_r"
                        },
                        {
                            "name": "__aeabi_cfrcmple",
                            "size": 24,
                            "identifier": ":\\__aeabi_cfrcmple"
                        },
                        {
                            "name": "sym_L25WURT3DTWGSITXNUG75XVVQF2UVCFLN5ZBQUA",
                            "size": 124,
                            "identifier": ":\\sym_L25WURT3DTWGSITXNUG75XVVQF2UVCFLN5ZBQUA"
                        },
                        {
                            "name": "sym_KBJ4SX4MJK4IAM4DI3ILSISVXIP6O72O62TW3OQ",
                            "size": 374,
                            "identifier": ":\\sym_KBJ4SX4MJK4IAM4DI3ILSISVXIP6O72O62TW3OQ"
                        },
                        {
                            "name": "sym_DQFOGVCNU4NTOMWSL3IYDNCMIXT2LT7SZHL5IHI",
                            "size": 542,
                            "identifier": ":\\sym_DQFOGVCNU4NTOMWSL3IYDNCMIXT2LT7SZHL5IHI"
                        },
                        {
                            "name": "sdc_hci_cmd_le_rand",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_rand"
                        },
                        {
                            "name": "sym_PAD7XREQQORPXRJMXMW2EYVS4S43S42A5D43SBA",
                            "size": 4,
                            "identifier": ":\\sym_PAD7XREQQORPXRJMXMW2EYVS4S43S42A5D43SBA"
                        },
                        {
                            "name": "sym_KQELUVJKUXDWI537IIFYFUVTNDSZOYYQ6RIVVLY",
                            "size": 76,
                            "identifier": ":\\sym_KQELUVJKUXDWI537IIFYFUVTNDSZOYYQ6RIVVLY"
                        },
                        {
                            "name": "sym_65MVSHFHYY3W6LGERKUEYJPJ7ENCODZZSM2L7CQ",
                            "size": 4,
                            "identifier": ":\\sym_65MVSHFHYY3W6LGERKUEYJPJ7ENCODZZSM2L7CQ"
                        },
                        {
                            "name": "__device_dts_ord_109",
                            "size": 28,
                            "identifier": ":\\__device_dts_ord_109"
                        },
                        {
                            "name": "sym_FY3JF6XBXLAG22E42UPFUU55A3QFAFZDUGSPAPY",
                            "size": 40,
                            "identifier": ":\\sym_FY3JF6XBXLAG22E42UPFUU55A3QFAFZDUGSPAPY"
                        },
                        {
                            "name": "sym_QPP3IZFSWHUV4JQ6ODMIVIARPB4PQYUFESV7BRQ",
                            "size": 24,
                            "identifier": ":\\sym_QPP3IZFSWHUV4JQ6ODMIVIARPB4PQYUFESV7BRQ"
                        },
                        {
                            "name": "sym_F5SXUQLY6DFZ5NXKJ4VFIGAK52D6AM5LN2AJKSY",
                            "size": 96,
                            "identifier": ":\\sym_F5SXUQLY6DFZ5NXKJ4VFIGAK52D6AM5LN2AJKSY"
                        },
                        {
                            "name": "sym_3BQBYKVQGWCA6VF5GDIUVXGAPLPPXRSSEFO5TXA",
                            "size": 12,
                            "identifier": ":\\sym_3BQBYKVQGWCA6VF5GDIUVXGAPLPPXRSSEFO5TXA"
                        },
                        {
                            "name": "__device_dts_ord_108",
                            "size": 28,
                            "identifier": ":\\__device_dts_ord_108"
                        },
                        {
                            "name": "sym_4HDCBJCT2JOHNORERPDEH2A3V47FOX6NCTAKLUA",
                            "size": 4,
                            "identifier": ":\\sym_4HDCBJCT2JOHNORERPDEH2A3V47FOX6NCTAKLUA"
                        },
                        {
                            "name": "sdc_hci_cmd_le_set_address_resolution_enable",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_set_address_resolution_enable"
                        },
                        {
                            "name": "sym_YLRTPBVG5ROXKOW4KXUYITRUY3FD2MVZW5LF7ZA",
                            "size": 16,
                            "identifier": ":\\sym_YLRTPBVG5ROXKOW4KXUYITRUY3FD2MVZW5LF7ZA"
                        },
                        {
                            "name": "sym_NFDFVOR5BUFND4TNTGYIYR4ARXJRXWSQ4PVFUKY",
                            "size": 1344,
                            "identifier": ":\\sym_NFDFVOR5BUFND4TNTGYIYR4ARXJRXWSQ4PVFUKY"
                        },
                        {
                            "name": "sym_4NT3PFFI5Z6RN57T2HW54HJZ23JEQUTUQPJLJGI",
                            "size": 208,
                            "identifier": ":\\sym_4NT3PFFI5Z6RN57T2HW54HJZ23JEQUTUQPJLJGI"
                        },
                        {
                            "name": "sym_BN6ZO2NBHRGKZ2NRQYWFBXVGKNG6Y5K55UNAWGA",
                            "size": 20,
                            "identifier": ":\\sym_BN6ZO2NBHRGKZ2NRQYWFBXVGKNG6Y5K55UNAWGA"
                        },
                        {
                            "name": "sym_EQ53CEL7EDVHMFMHMFPRRQU46C5YKKFEBAACFOA",
                            "size": 114,
                            "identifier": ":\\sym_EQ53CEL7EDVHMFMHMFPRRQU46C5YKKFEBAACFOA"
                        },
                        {
                            "name": "sym_J22YCCWNUNOSXHAJQUUQAO7YZP2SNXLIWISZVHI",
                            "size": 60,
                            "identifier": ":\\sym_J22YCCWNUNOSXHAJQUUQAO7YZP2SNXLIWISZVHI"
                        },
                        {
                            "name": "sym_ZY67JFDYC72ZRZASFF2HOA7TV55LM74BXABVWRI",
                            "size": 30,
                            "identifier": ":\\sym_ZY67JFDYC72ZRZASFF2HOA7TV55LM74BXABVWRI"
                        },
                        {
                            "name": "sym_IYZQNCOB4T4XO27DREWRIWJFVHVS355NEDBEGEQ",
                            "size": 30,
                            "identifier": ":\\sym_IYZQNCOB4T4XO27DREWRIWJFVHVS355NEDBEGEQ"
                        },
                        {
                            "name": "sym_UGOJA475OXR5HR5WFINUK27HP5BRGNWCZXQLKDI",
                            "size": 202,
                            "identifier": ":\\sym_UGOJA475OXR5HR5WFINUK27HP5BRGNWCZXQLKDI"
                        },
                        {
                            "name": "sym_QFSP7NEBRUPCXI7KU3RYDOWD7SSPVNXVSULPYYY",
                            "size": 34,
                            "identifier": ":\\sym_QFSP7NEBRUPCXI7KU3RYDOWD7SSPVNXVSULPYYY"
                        },
                        {
                            "name": "sym_CVMXQJYKHZVHIOMGOYEICPLVAIQNUBL6USVNZSA",
                            "size": 22,
                            "identifier": ":\\sym_CVMXQJYKHZVHIOMGOYEICPLVAIQNUBL6USVNZSA"
                        },
                        {
                            "name": "sym_QDD7GI62CPYTU4DR5RMOF6JH72V5L65ZJXU3VAA",
                            "size": 4,
                            "identifier": ":\\sym_QDD7GI62CPYTU4DR5RMOF6JH72V5L65ZJXU3VAA"
                        },
                        {
                            "name": "sym_5OKDNHIYSDG2NFFB242VCRESG3W37YENBGQLRBA",
                            "size": 14,
                            "identifier": ":\\sym_5OKDNHIYSDG2NFFB242VCRESG3W37YENBGQLRBA"
                        },
                        {
                            "name": "sym_E5WZNPP2DINHF6K4PHXLYLX5AXTYBQYGQESRSGQ",
                            "size": 32,
                            "identifier": ":\\sym_E5WZNPP2DINHF6K4PHXLYLX5AXTYBQYGQESRSGQ"
                        },
                        {
                            "name": "sym_BAUTABQSJLBAZ6GNH7KOF4MJMAA6NF7CDAZNOEQ",
                            "size": 20,
                            "identifier": ":\\sym_BAUTABQSJLBAZ6GNH7KOF4MJMAA6NF7CDAZNOEQ"
                        },
                        {
                            "name": "sym_IS5N626FV5MT54PZIWSKFZUUH6WWJWJ46G6YN3A",
                            "size": 18,
                            "identifier": ":\\sym_IS5N626FV5MT54PZIWSKFZUUH6WWJWJ46G6YN3A"
                        },
                        {
                            "name": "sym_FHGEXLJ7V34P3MECCDTYSDEZTZHFJ2TXYSFZQHQ",
                            "size": 8,
                            "identifier": ":\\sym_FHGEXLJ7V34P3MECCDTYSDEZTZHFJ2TXYSFZQHQ"
                        },
                        {
                            "name": "sym_UA37MSV2DKCYXYIDDSBDMFEEGPUD3YMYMAH3IEI",
                            "size": 4,
                            "identifier": ":\\sym_UA37MSV2DKCYXYIDDSBDMFEEGPUD3YMYMAH3IEI"
                        },
                        {
                            "name": "sdc_hci_cmd_le_read_max_data_length",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_read_max_data_length"
                        },
                        {
                            "name": "sdc_hci_cmd_vs_zephyr_write_bd_addr",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_vs_zephyr_write_bd_addr"
                        },
                        {
                            "name": "sym_NREHYZNNGMA6T4VUMP47EJMM5IU7BRHAZURXRLQ",
                            "size": 18,
                            "identifier": ":\\sym_NREHYZNNGMA6T4VUMP47EJMM5IU7BRHAZURXRLQ"
                        },
                        {
                            "name": "sym_WTOZYVN52TSAPXLTHQQLG45KSAFDDSBJMHMFM6Q",
                            "size": 36,
                            "identifier": ":\\sym_WTOZYVN52TSAPXLTHQQLG45KSAFDDSBJMHMFM6Q"
                        },
                        {
                            "name": "_ZN5bliss12StateMachine17wait_connection_sE",
                            "size": 20,
                            "identifier": ":\\_ZN5bliss12StateMachine17wait_connection_sE"
                        },
                        {
                            "name": "sym_NITRJIWYGM7PLEIQEII3QZID3O3DS62GXB3UYIA",
                            "size": 28,
                            "identifier": ":\\sym_NITRJIWYGM7PLEIQEII3QZID3O3DS62GXB3UYIA"
                        },
                        {
                            "name": "sdc_hci_cmd_vs_conn_event_extend",
                            "size": 16,
                            "identifier": ":\\sdc_hci_cmd_vs_conn_event_extend"
                        },
                        {
                            "name": "bt_addr_le_none",
                            "size": 7,
                            "identifier": ":\\bt_addr_le_none"
                        },
                        {
                            "name": "_ZTVN5bliss12StateMachineE",
                            "size": 36,
                            "identifier": ":\\_ZTVN5bliss12StateMachineE"
                        },
                        {
                            "name": "sym_5EMU3BEOS6JCQEXTZ5M5LP72YGJNCV3W3R43AOI",
                            "size": 4,
                            "identifier": ":\\sym_5EMU3BEOS6JCQEXTZ5M5LP72YGJNCV3W3R43AOI"
                        },
                        {
                            "name": "sym_WAXMY55QAGCTLTIDQV34FPT2PPSDRT5VDN7EYYY",
                            "size": 6,
                            "identifier": ":\\sym_WAXMY55QAGCTLTIDQV34FPT2PPSDRT5VDN7EYYY"
                        },
                        {
                            "name": "sdc_hci_cmd_le_encrypt",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_encrypt"
                        },
                        {
                            "name": "ocrypto_ecdh_p256_common_secret",
                            "size": 52,
                            "identifier": ":\\ocrypto_ecdh_p256_common_secret"
                        },
                        {
                            "name": "mpsl_fem_lna_configuration_clear",
                            "size": 8,
                            "identifier": ":\\mpsl_fem_lna_configuration_clear"
                        },
                        {
                            "name": "_ZdlPv",
                            "size": 4,
                            "identifier": ":\\_ZdlPv"
                        },
                        {
                            "name": "sym_PIRI3CTIHOPR5MPDQRHBJRRZEA2NVOD4J3GXGOA",
                            "size": 8,
                            "identifier": ":\\sym_PIRI3CTIHOPR5MPDQRHBJRRZEA2NVOD4J3GXGOA"
                        },
                        {
                            "name": "__aeabi_i2d",
                            "size": 34,
                            "identifier": ":\\__aeabi_i2d"
                        },
                        {
                            "name": "__sf_fake_stdin",
                            "size": 32,
                            "identifier": ":\\__sf_fake_stdin"
                        },
                        {
                            "name": "sym_K5GMJMBHBYPRCUIWKNEXGPSNQEZKEMBAP4JWHBQ",
                            "size": 6,
                            "identifier": ":\\sym_K5GMJMBHBYPRCUIWKNEXGPSNQEZKEMBAP4JWHBQ"
                        },
                        {
                            "name": "sym_MKU2XEL6QB4MO4JU3HW4P3NALUM7PALQ3OF2VGA",
                            "size": 78,
                            "identifier": ":\\sym_MKU2XEL6QB4MO4JU3HW4P3NALUM7PALQ3OF2VGA"
                        },
                        {
                            "name": "__aeabi_i2f",
                            "size": 28,
                            "identifier": ":\\__aeabi_i2f"
                        },
                        {
                            "name": "sym_VKORYLCFNIWNGETWJR24ZOUACQP66MFSZSXVABY",
                            "size": 6,
                            "identifier": ":\\sym_VKORYLCFNIWNGETWJR24ZOUACQP66MFSZSXVABY"
                        },
                        {
                            "name": "sym_E3GR2VF26UUA2VWZ2Y3HIYXNU3SITAZBGOK2GXA",
                            "size": 84,
                            "identifier": ":\\sym_E3GR2VF26UUA2VWZ2Y3HIYXNU3SITAZBGOK2GXA"
                        },
                        {
                            "name": "sym_NQG4U7UYIQILZLC5ENYCA4NQMQM6PBAZC345PPA",
                            "size": 26,
                            "identifier": ":\\sym_NQG4U7UYIQILZLC5ENYCA4NQMQM6PBAZC345PPA"
                        },
                        {
                            "name": "sym_VIDE7XVSTT4HHX2MQJX6VUVABAKVNGIPRTLRLEQ",
                            "size": 22,
                            "identifier": ":\\sym_VIDE7XVSTT4HHX2MQJX6VUVABAKVNGIPRTLRLEQ"
                        },
                        {
                            "name": "sym_YL4RMM7WH2QQSRTLJX7L5Q2F5KYIEZ5IWMCN3UQ",
                            "size": 156,
                            "identifier": ":\\sym_YL4RMM7WH2QQSRTLJX7L5Q2F5KYIEZ5IWMCN3UQ"
                        },
                        {
                            "name": "sym_LIYGXI2UGDXBB3WZBJYHTKFR7X66AHBTSGA7ZTA",
                            "size": 28,
                            "identifier": ":\\sym_LIYGXI2UGDXBB3WZBJYHTKFR7X66AHBTSGA7ZTA"
                        },
                        {
                            "name": "sym_MBHLAUPQK3H6ERLQXCLUB2AQHB6N7MDDZSUQGSI",
                            "size": 50,
                            "identifier": ":\\sym_MBHLAUPQK3H6ERLQXCLUB2AQHB6N7MDDZSUQGSI"
                        },
                        {
                            "name": "mpsl_timeslot_session_open",
                            "size": 112,
                            "identifier": ":\\mpsl_timeslot_session_open"
                        },
                        {
                            "name": "mpsl_fem_init",
                            "size": 4,
                            "identifier": ":\\mpsl_fem_init"
                        },
                        {
                            "name": "__sclose",
                            "size": 8,
                            "identifier": ":\\__sclose"
                        },
                        {
                            "name": "sym_VT36OYILRYR2ODZV34U7WHVGGSRS7VN6JG7WPYI",
                            "size": 84,
                            "identifier": ":\\sym_VT36OYILRYR2ODZV34U7WHVGGSRS7VN6JG7WPYI"
                        },
                        {
                            "name": "_ZTVN4carl3app10SamplingSME",
                            "size": 36,
                            "identifier": ":\\_ZTVN4carl3app10SamplingSME"
                        },
                        {
                            "name": "sym_JANNQMW3JZGYLNSOPAA2HBYBA6JBSX4W7VBR56Q",
                            "size": 8,
                            "identifier": ":\\sym_JANNQMW3JZGYLNSOPAA2HBYBA6JBSX4W7VBR56Q"
                        },
                        {
                            "name": "sym_MJCF2WRL4I323V23HKVENOJWV5IXH54R5X6LJRY",
                            "size": 22,
                            "identifier": ":\\sym_MJCF2WRL4I323V23HKVENOJWV5IXH54R5X6LJRY"
                        },
                        {
                            "name": "sym_2TCPCDAUQ3FXZYG56Z6ZP7VCFNUJTBV3EZJYPGY",
                            "size": 30,
                            "identifier": ":\\sym_2TCPCDAUQ3FXZYG56Z6ZP7VCFNUJTBV3EZJYPGY"
                        },
                        {
                            "name": "sym_MR2HDMT6FMX7P5HJAUSXDTOYNLKDM5AILMXKYDY",
                            "size": 4,
                            "identifier": ":\\sym_MR2HDMT6FMX7P5HJAUSXDTOYNLKDM5AILMXKYDY"
                        },
                        {
                            "name": "sym_2DIQZNL4PQ4LJGTNCUPMO2N2CADFMWHJOSUVSUQ",
                            "size": 50,
                            "identifier": ":\\sym_2DIQZNL4PQ4LJGTNCUPMO2N2CADFMWHJOSUVSUQ"
                        },
                        {
                            "name": "mpsl_clock_hfclk_release",
                            "size": 22,
                            "identifier": ":\\mpsl_clock_hfclk_release"
                        },
                        {
                            "name": "sdc_support_le_2m_phy",
                            "size": 26,
                            "identifier": ":\\sdc_support_le_2m_phy"
                        },
                        {
                            "name": "sdc_hci_cmd_le_set_scan_response_data",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_set_scan_response_data"
                        },
                        {
                            "name": "sym_KQ4RAL3HW3LUBE4EKZDESO77BJMQRXFGP63ANLQ",
                            "size": 36,
                            "identifier": ":\\sym_KQ4RAL3HW3LUBE4EKZDESO77BJMQRXFGP63ANLQ"
                        },
                        {
                            "name": "sym_57CDLB7NR4I66F4XUEVXWWEJBBBXGSJ37LGPUXA",
                            "size": 6,
                            "identifier": ":\\sym_57CDLB7NR4I66F4XUEVXWWEJBBBXGSJ37LGPUXA"
                        },
                        {
                            "name": "sym_ECAFXV3NMZ2THIWY27PTYY6WSGFWQJNAJOG5HIY",
                            "size": 30,
                            "identifier": ":\\sym_ECAFXV3NMZ2THIWY27PTYY6WSGFWQJNAJOG5HIY"
                        },
                        {
                            "name": "ocrypto_ecdh_p256_public_key",
                            "size": 38,
                            "identifier": ":\\ocrypto_ecdh_p256_public_key"
                        },
                        {
                            "name": "sym_TP55RLOURTPNDYOY752QBNWCGKAGCOF4JK2H3IA",
                            "size": 54,
                            "identifier": ":\\sym_TP55RLOURTPNDYOY752QBNWCGKAGCOF4JK2H3IA"
                        },
                        {
                            "name": "sym_XK3TMLCZALCYYWGULGHQIRSOBMPIIPJ7HEMOZIQ",
                            "size": 20,
                            "identifier": ":\\sym_XK3TMLCZALCYYWGULGHQIRSOBMPIIPJ7HEMOZIQ"
                        },
                        {
                            "name": "sym_XCEN5K7VEI2CAO42XW7S3FKM3HKMOCDCUFDX25Y",
                            "size": 28,
                            "identifier": ":\\sym_XCEN5K7VEI2CAO42XW7S3FKM3HKMOCDCUFDX25Y"
                        },
                        {
                            "name": "sym_EXF7QYQZRNDSXD5BXX5JHASOOMIXFF6ILEF5NVA",
                            "size": 372,
                            "identifier": ":\\sym_EXF7QYQZRNDSXD5BXX5JHASOOMIXFF6ILEF5NVA"
                        },
                        {
                            "name": "sym_C5MZWIO7BXLJIO65K7CGSHP3SLST2VORSHVBOVI",
                            "size": 26,
                            "identifier": ":\\sym_C5MZWIO7BXLJIO65K7CGSHP3SLST2VORSHVBOVI"
                        },
                        {
                            "name": "sym_GDGGQ5EKEJNZBTEWASFQ2LUSL4TZGNXHPD7BDQA",
                            "size": 54,
                            "identifier": ":\\sym_GDGGQ5EKEJNZBTEWASFQ2LUSL4TZGNXHPD7BDQA"
                        },
                        {
                            "name": "sym_BWPZYUAKR5BUOCM2NWAMEPWQB6GIJXBPUENADMI",
                            "size": 4,
                            "identifier": ":\\sym_BWPZYUAKR5BUOCM2NWAMEPWQB6GIJXBPUENADMI"
                        },
                        {
                            "name": "sym_WHSZ4VQHSDNZTVWJWAYGMNU7AWSUZKLKTBUNDPY",
                            "size": 6,
                            "identifier": ":\\sym_WHSZ4VQHSDNZTVWJWAYGMNU7AWSUZKLKTBUNDPY"
                        },
                        {
                            "name": "sdc_hci_cmd_le_set_random_address",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_set_random_address"
                        },
                        {
                            "name": "sym_DGN3THKILL676ISUGG6LI5PGTHVDBLTDPNXUCAA",
                            "size": 16,
                            "identifier": ":\\sym_DGN3THKILL676ISUGG6LI5PGTHVDBLTDPNXUCAA"
                        },
                        {
                            "name": "sym_5NOMYYLIL22YATRZCGPQVOYH6BFSDNIEMEEMIZA",
                            "size": 8,
                            "identifier": ":\\sym_5NOMYYLIL22YATRZCGPQVOYH6BFSDNIEMEEMIZA"
                        },
                        {
                            "name": "sym_BGPX36PUCNVPV3544HQ5RQFY5WG7CJAFVVBI7AY",
                            "size": 2,
                            "identifier": ":\\sym_BGPX36PUCNVPV3544HQ5RQFY5WG7CJAFVVBI7AY"
                        },
                        {
                            "name": "sym_IBQ2J6PQMWEGB2QFNQVSDUN2ZUMMRTUFKUUZT2I",
                            "size": 16,
                            "identifier": ":\\sym_IBQ2J6PQMWEGB2QFNQVSDUN2ZUMMRTUFKUUZT2I"
                        },
                        {
                            "name": "sym_KC3JIKE7HTERE3Q3BXMRUIDPAENUZKVBIDO6ODY",
                            "size": 42,
                            "identifier": ":\\sym_KC3JIKE7HTERE3Q3BXMRUIDPAENUZKVBIDO6ODY"
                        },
                        {
                            "name": "sym_4RNEPYYQOFM4LAOGLN2TB27X7L3XBISTGAWYOHQ",
                            "size": 24,
                            "identifier": ":\\sym_4RNEPYYQOFM4LAOGLN2TB27X7L3XBISTGAWYOHQ"
                        },
                        {
                            "name": "mpsl_is_initialized",
                            "size": 6,
                            "identifier": ":\\mpsl_is_initialized"
                        },
                        {
                            "name": "sym_HAHVMCZ4V2U4G5KM2JOTYBKS4GFM72EJZRT7M3A",
                            "size": 4,
                            "identifier": ":\\sym_HAHVMCZ4V2U4G5KM2JOTYBKS4GFM72EJZRT7M3A"
                        },
                        {
                            "name": "sym_ETIE3PCEXQYLK2GIVZENQ6V7PLBRV57MB7BDMNY",
                            "size": 6,
                            "identifier": ":\\sym_ETIE3PCEXQYLK2GIVZENQ6V7PLBRV57MB7BDMNY"
                        },
                        {
                            "name": "sym_3DXBFDJKO3IQEXOOHBMVXVTLDDG5FSS3TKAZNFY",
                            "size": 72,
                            "identifier": ":\\sym_3DXBFDJKO3IQEXOOHBMVXVTLDDG5FSS3TKAZNFY"
                        },
                        {
                            "name": "sym_A32XXMQ5QRPQRH3R656RZXETZB6Y54SG45FSCYI",
                            "size": 158,
                            "identifier": ":\\sym_A32XXMQ5QRPQRH3R656RZXETZB6Y54SG45FSCYI"
                        },
                        {
                            "name": "sym_AR22FPVUFSZMVYMQBBXG7EEZNA2HPS2RLAKRPBA",
                            "size": 38,
                            "identifier": ":\\sym_AR22FPVUFSZMVYMQBBXG7EEZNA2HPS2RLAKRPBA"
                        },
                        {
                            "name": "sym_5ANWEAIBKDLEVCFMBX2VFT7WI2MWAIHK5BAGBTA",
                            "size": 28,
                            "identifier": ":\\sym_5ANWEAIBKDLEVCFMBX2VFT7WI2MWAIHK5BAGBTA"
                        },
                        {
                            "name": "sym_KZ5CVONZGMGIGNMI7YD6HLN3FXAAJK6OMEJW6BQ",
                            "size": 36,
                            "identifier": ":\\sym_KZ5CVONZGMGIGNMI7YD6HLN3FXAAJK6OMEJW6BQ"
                        },
                        {
                            "name": "sym_PBZPB3PSJJYSQQW7TH2XDGNLD2UYSZR6YJ4ZZNQ",
                            "size": 8,
                            "identifier": ":\\sym_PBZPB3PSJJYSQQW7TH2XDGNLD2UYSZR6YJ4ZZNQ"
                        },
                        {
                            "name": "sym_BFBDHRTPYGNRMJSAT7WCAPOXBGIVSWF4E5GFHOA",
                            "size": 34,
                            "identifier": ":\\sym_BFBDHRTPYGNRMJSAT7WCAPOXBGIVSWF4E5GFHOA"
                        },
                        {
                            "name": "sym_ZUFGUNQKQRINYDDQ2AFT3BJLR3IFVV6WJFPT3PA",
                            "size": 46,
                            "identifier": ":\\sym_ZUFGUNQKQRINYDDQ2AFT3BJLR3IFVV6WJFPT3PA"
                        },
                        {
                            "name": "nan",
                            "size": 12,
                            "identifier": ":\\nan"
                        },
                        {
                            "name": "sym_CIVMWIRGIOQ374UFFPIFNN4ZGKYK2FRKTT6YRYA",
                            "size": 12,
                            "identifier": ":\\sym_CIVMWIRGIOQ374UFFPIFNN4ZGKYK2FRKTT6YRYA"
                        },
                        {
                            "name": "sym_N4QRZBF2FIWL2SJPDNB5CJNAF73PGHUMQ7KGJGA",
                            "size": 20,
                            "identifier": ":\\sym_N4QRZBF2FIWL2SJPDNB5CJNAF73PGHUMQ7KGJGA"
                        },
                        {
                            "name": "__device_dts_ord_44",
                            "size": 28,
                            "identifier": ":\\__device_dts_ord_44"
                        },
                        {
                            "name": "__malloc_lock",
                            "size": 12,
                            "identifier": ":\\__malloc_lock"
                        },
                        {
                            "name": "sdc_hci_cmd_vs_conn_update",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_vs_conn_update"
                        },
                        {
                            "name": "sym_65LA7GM3MU7DDFQKTB75BYTZMPMROSWKS3VXCNI",
                            "size": 38,
                            "identifier": ":\\sym_65LA7GM3MU7DDFQKTB75BYTZMPMROSWKS3VXCNI"
                        },
                        {
                            "name": "_raise_r",
                            "size": 80,
                            "identifier": ":\\_raise_r"
                        },
                        {
                            "name": "sdc_support_phy_update_peripheral",
                            "size": 26,
                            "identifier": ":\\sdc_support_phy_update_peripheral"
                        },
                        {
                            "name": "sym_CEENVC5DZRUT7MGF5LABXKT4NV7YUL5F6EX6TEQ",
                            "size": 10,
                            "identifier": ":\\sym_CEENVC5DZRUT7MGF5LABXKT4NV7YUL5F6EX6TEQ"
                        },
                        {
                            "name": "sym_AIEQYZJFZQBQ5LEMJNMQV56TMLIGCBAC63QLHGI",
                            "size": 8,
                            "identifier": ":\\sym_AIEQYZJFZQBQ5LEMJNMQV56TMLIGCBAC63QLHGI"
                        },
                        {
                            "name": "sym_XYKOVFYGOSL56Y753SKDQGINYTUFZGQJGBB54WI",
                            "size": 42,
                            "identifier": ":\\sym_XYKOVFYGOSL56Y753SKDQGINYTUFZGQJGBB54WI"
                        },
                        {
                            "name": "__udivmoddi4",
                            "size": 672,
                            "identifier": ":\\__udivmoddi4"
                        },
                        {
                            "name": "__aeabi_fmul",
                            "size": 360,
                            "identifier": ":\\__aeabi_fmul"
                        },
                        {
                            "name": "sym_XBPRCWTRXORTYBBILZLCEINUIX4S5BJ5RTZD2RY",
                            "size": 110,
                            "identifier": ":\\sym_XBPRCWTRXORTYBBILZLCEINUIX4S5BJ5RTZD2RY"
                        },
                        {
                            "name": "__aeabi_fcmpge",
                            "size": 18,
                            "identifier": ":\\__aeabi_fcmpge"
                        },
                        {
                            "name": "sym_6NROXJNXJONASXBRH4ZGPEEQ42PSH3YLRTC74GQ",
                            "size": 8,
                            "identifier": ":\\sym_6NROXJNXJONASXBRH4ZGPEEQ42PSH3YLRTC74GQ"
                        },
                        {
                            "name": "sym_472GCM45ITLH5GOXITRUEUJXOU6SPVHTMEVFHWQ",
                            "size": 184,
                            "identifier": ":\\sym_472GCM45ITLH5GOXITRUEUJXOU6SPVHTMEVFHWQ"
                        },
                        {
                            "name": "sym_RXYEX777ZXB2E2DXJWDBCV7AAHWTCHNTLOSENBY",
                            "size": 20,
                            "identifier": ":\\sym_RXYEX777ZXB2E2DXJWDBCV7AAHWTCHNTLOSENBY"
                        },
                        {
                            "name": "sym_FW4JPGKXKHARAAJ7L3QR6HU5OB4PHXARNGBNCMY",
                            "size": 52,
                            "identifier": ":\\sym_FW4JPGKXKHARAAJ7L3QR6HU5OB4PHXARNGBNCMY"
                        },
                        {
                            "name": "free",
                            "size": 16,
                            "identifier": ":\\free"
                        },
                        {
                            "name": "sym_L2IWXNCKXJIQJRTEIIW7HGFEPJAQM34TKD2GOIA",
                            "size": 332,
                            "identifier": ":\\sym_L2IWXNCKXJIQJRTEIIW7HGFEPJAQM34TKD2GOIA"
                        },
                        {
                            "name": "sym_ZQHB3ANU2DANFLJZLZL5U4SPQ2ZDVUAHI35744Y",
                            "size": 30,
                            "identifier": ":\\sym_ZQHB3ANU2DANFLJZLZL5U4SPQ2ZDVUAHI35744Y"
                        },
                        {
                            "name": "sym_WLH66EC4H754I3MAYKGHFOCADIOY4E4WNRBI4TA",
                            "size": 116,
                            "identifier": ":\\sym_WLH66EC4H754I3MAYKGHFOCADIOY4E4WNRBI4TA"
                        },
                        {
                            "name": "sym_6TZLBWMEWRMPI4KKAUVLC2XHUBDGXEA4B4JJJYQ",
                            "size": 4,
                            "identifier": ":\\sym_6TZLBWMEWRMPI4KKAUVLC2XHUBDGXEA4B4JJJYQ"
                        },
                        {
                            "name": "sym_4FKJZF4AXR7RHM7IPPZMVUWU7W6MFHLX726TPNY",
                            "size": 24,
                            "identifier": ":\\sym_4FKJZF4AXR7RHM7IPPZMVUWU7W6MFHLX726TPNY"
                        },
                        {
                            "name": "sym_LD2UWOJIHNEPQLGRHPDQLYGR7RM2YL5X5777QYQ",
                            "size": 20,
                            "identifier": ":\\sym_LD2UWOJIHNEPQLGRHPDQLYGR7RM2YL5X5777QYQ"
                        },
                        {
                            "name": "__ssputs_r",
                            "size": 182,
                            "identifier": ":\\__ssputs_r"
                        },
                        {
                            "name": "sym_QOK2KYWK62QNZBQRPK2GPAU2IEJXSELK32IAUUA",
                            "size": 36,
                            "identifier": ":\\sym_QOK2KYWK62QNZBQRPK2GPAU2IEJXSELK32IAUUA"
                        },
                        {
                            "name": "sym_HG37ZAHWDO2P65KBJXRLV5PVSG5TCUWPMKZOZLQ",
                            "size": 6,
                            "identifier": ":\\sym_HG37ZAHWDO2P65KBJXRLV5PVSG5TCUWPMKZOZLQ"
                        },
                        {
                            "name": "sym_2UM6LVQLLMOP7WZDJLNUGNNDXOSOGAIT6WB627Q",
                            "size": 12,
                            "identifier": ":\\sym_2UM6LVQLLMOP7WZDJLNUGNNDXOSOGAIT6WB627Q"
                        },
                        {
                            "name": "sym_6PPYXQQOLTVZ6DHASA45P4Y6MOJ5US37OHECCGI",
                            "size": 104,
                            "identifier": ":\\sym_6PPYXQQOLTVZ6DHASA45P4Y6MOJ5US37OHECCGI"
                        },
                        {
                            "name": "__ledf2",
                            "size": 130,
                            "identifier": ":\\__ledf2"
                        },
                        {
                            "name": "sdc_hci_cmd_le_write_suggested_default_data_length",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_write_suggested_default_data_length"
                        },
                        {
                            "name": "sym_6BTYZXVNYPYTH2WUVFE5C5JVTZHQJAJ5IGD6OCA",
                            "size": 50,
                            "identifier": ":\\sym_6BTYZXVNYPYTH2WUVFE5C5JVTZHQJAJ5IGD6OCA"
                        },
                        {
                            "name": "sym_RPDYS5TXULS3Z2BQR7IFNSOINXPPN4LN764SRIY",
                            "size": 44,
                            "identifier": ":\\sym_RPDYS5TXULS3Z2BQR7IFNSOINXPPN4LN764SRIY"
                        },
                        {
                            "name": "sym_AF5XKA2WT4DMFZTLKHOBWE7E2EZAMLDDFPQGGTQ",
                            "size": 52,
                            "identifier": ":\\sym_AF5XKA2WT4DMFZTLKHOBWE7E2EZAMLDDFPQGGTQ"
                        },
                        {
                            "name": "__device_dts_ord_80",
                            "size": 28,
                            "identifier": ":\\__device_dts_ord_80"
                        },
                        {
                            "name": "_fflush_r",
                            "size": 120,
                            "identifier": ":\\_fflush_r"
                        },
                        {
                            "name": "sym_E7IS652W2J5N5UTHP752WOA4YNSR7E5S5H4J2AA",
                            "size": 200,
                            "identifier": ":\\sym_E7IS652W2J5N5UTHP752WOA4YNSR7E5S5H4J2AA"
                        },
                        {
                            "name": "sdc_cfg_set",
                            "size": 146,
                            "identifier": ":\\sdc_cfg_set"
                        },
                        {
                            "name": "sym_4WL3TG4Q7RCTFEMPQ2CQTOL4PAKUULDPJUM5DTY",
                            "size": 34,
                            "identifier": ":\\sym_4WL3TG4Q7RCTFEMPQ2CQTOL4PAKUULDPJUM5DTY"
                        },
                        {
                            "name": "sym_RWBLK2534FJMTER76IYUPZQ3YF74JEALZ2OBIDI",
                            "size": 28,
                            "identifier": ":\\sym_RWBLK2534FJMTER76IYUPZQ3YF74JEALZ2OBIDI"
                        },
                        {
                            "name": "sym_BD2MQHSWE7QNCT7DV5JGZCA5J2QIL2T6RGRVJ3Y",
                            "size": 8,
                            "identifier": ":\\sym_BD2MQHSWE7QNCT7DV5JGZCA5J2QIL2T6RGRVJ3Y"
                        },
                        {
                            "name": "sym_3LZ364FVGUVSOSH6XGIFMW5SY36X7BQXDOES46Y",
                            "size": 146,
                            "identifier": ":\\sym_3LZ364FVGUVSOSH6XGIFMW5SY36X7BQXDOES46Y"
                        },
                        {
                            "name": "sym_BPVIPCP3IMFHHNRASYWRUQPTOXIXQGWP3DTKXWI",
                            "size": 8,
                            "identifier": ":\\sym_BPVIPCP3IMFHHNRASYWRUQPTOXIXQGWP3DTKXWI"
                        },
                        {
                            "name": "sym_6AONFMPWPBAZBMQ4KY5PX7QPX2FM4UPZQRFPZSQ",
                            "size": 32,
                            "identifier": ":\\sym_6AONFMPWPBAZBMQ4KY5PX7QPX2FM4UPZQRFPZSQ"
                        },
                        {
                            "name": "sym_AB3LPEZLZTHWVJYT4X3CSIX3UJONE76BJDZFP2Y",
                            "size": 34,
                            "identifier": ":\\sym_AB3LPEZLZTHWVJYT4X3CSIX3UJONE76BJDZFP2Y"
                        },
                        {
                            "name": "_ZdlPvj",
                            "size": 4,
                            "identifier": ":\\_ZdlPvj"
                        },
                        {
                            "name": "sdc_hci_get",
                            "size": 32,
                            "identifier": ":\\sdc_hci_get"
                        },
                        {
                            "name": "__aeabi_dcmplt",
                            "size": 18,
                            "identifier": ":\\__aeabi_dcmplt"
                        },
                        {
                            "name": "__sread",
                            "size": 34,
                            "identifier": ":\\__sread"
                        },
                        {
                            "name": "_ZN5bliss12StateMachine6Idle_sE",
                            "size": 20,
                            "identifier": ":\\_ZN5bliss12StateMachine6Idle_sE"
                        },
                        {
                            "name": "sym_Z5WZCMHZDI7RNMVB5GZYQIRS7P3BTO7552UV62I",
                            "size": 1,
                            "identifier": ":\\sym_Z5WZCMHZDI7RNMVB5GZYQIRS7P3BTO7552UV62I"
                        },
                        {
                            "name": "sym_GII4UQLGDHD6D5DSTGUIOYZXEEJFVPTQQUWUNII",
                            "size": 6,
                            "identifier": ":\\sym_GII4UQLGDHD6D5DSTGUIOYZXEEJFVPTQQUWUNII"
                        },
                        {
                            "name": "sym_XR32KBBIVYD5OVRJM2RBQ57EGCCM2C3F5IY6OHQ",
                            "size": 32,
                            "identifier": ":\\sym_XR32KBBIVYD5OVRJM2RBQ57EGCCM2C3F5IY6OHQ"
                        },
                        {
                            "name": "sym_TTWYMXRKLVLI7DIZYVTKGZHSGKFWB63OVH3AYYQ",
                            "size": 202,
                            "identifier": ":\\sym_TTWYMXRKLVLI7DIZYVTKGZHSGKFWB63OVH3AYYQ"
                        },
                        {
                            "name": "sym_QEQGMTIGG3AOZQY7JM4T2FY2O3KM2UFUMT6Q7PI",
                            "size": 24,
                            "identifier": ":\\sym_QEQGMTIGG3AOZQY7JM4T2FY2O3KM2UFUMT6Q7PI"
                        },
                        {
                            "name": "__device_dts_ord_111",
                            "size": 28,
                            "identifier": ":\\__device_dts_ord_111"
                        },
                        {
                            "name": "mpsl_fem_lna_configuration_set",
                            "size": 8,
                            "identifier": ":\\mpsl_fem_lna_configuration_set"
                        },
                        {
                            "name": "sym_REO6MG4FRJTNQQ56RDJDYGEWFEO5TFVYGRW6OLI",
                            "size": 4,
                            "identifier": ":\\sym_REO6MG4FRJTNQQ56RDJDYGEWFEO5TFVYGRW6OLI"
                        },
                        {
                            "name": "__device_dts_ord_110",
                            "size": 28,
                            "identifier": ":\\__device_dts_ord_110"
                        },
                        {
                            "name": "sym_THL6EKGE7AKTO5JDGU45MV33YSIXORBRMDECS2Q",
                            "size": 14,
                            "identifier": ":\\sym_THL6EKGE7AKTO5JDGU45MV33YSIXORBRMDECS2Q"
                        },
                        {
                            "name": "sym_WGW6HZ6PNLYQSUJALICWZO27AY5UJWYCU6B6ACI",
                            "size": 22,
                            "identifier": ":\\sym_WGW6HZ6PNLYQSUJALICWZO27AY5UJWYCU6B6ACI"
                        },
                        {
                            "name": "sdc_hci_cmd_cb_read_authenticated_payload_timeout",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_cb_read_authenticated_payload_timeout"
                        },
                        {
                            "name": "sym_PDDLBAI7RAK2OQ7ZHFU33L5KMJV5YKPLX5ITXAY",
                            "size": 44,
                            "identifier": ":\\sym_PDDLBAI7RAK2OQ7ZHFU33L5KMJV5YKPLX5ITXAY"
                        },
                        {
                            "name": "sym_7OWCT6RQNC7NMJTETN4SHKZQ2DXHZYW5I4QMKDQ",
                            "size": 210,
                            "identifier": ":\\sym_7OWCT6RQNC7NMJTETN4SHKZQ2DXHZYW5I4QMKDQ"
                        },
                        {
                            "name": "sym_F2LWAH27IT4H2IA7TZWGNABUCWINGT6MWXH2WIA",
                            "size": 20,
                            "identifier": ":\\sym_F2LWAH27IT4H2IA7TZWGNABUCWINGT6MWXH2WIA"
                        },
                        {
                            "name": "__aeabi_dcmpgt",
                            "size": 18,
                            "identifier": ":\\__aeabi_dcmpgt"
                        },
                        {
                            "name": "sym_P3OAHUDLNMEJKO66PKADYJ5KBQTQCDBZBHL5ZUY",
                            "size": 34,
                            "identifier": ":\\sym_P3OAHUDLNMEJKO66PKADYJ5KBQTQCDBZBHL5ZUY"
                        },
                        {
                            "name": "mpsl_timeslot_session_close",
                            "size": 66,
                            "identifier": ":\\mpsl_timeslot_session_close"
                        },
                        {
                            "name": "sym_SKFSQME5SGNPYLL7B75KY7PHXFYWSRI2HSTT45A",
                            "size": 6,
                            "identifier": ":\\sym_SKFSQME5SGNPYLL7B75KY7PHXFYWSRI2HSTT45A"
                        },
                        {
                            "name": "sdc_hci_cmd_le_set_data_related_address_changes",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_set_data_related_address_changes"
                        },
                        {
                            "name": "_ZTVN2QP7QActiveE",
                            "size": 36,
                            "identifier": ":\\_ZTVN2QP7QActiveE"
                        },
                        {
                            "name": "sym_4ZZLWI6QQY4KJYYVP4RVDTJJJ6MW72AL2TJDVOI",
                            "size": 62,
                            "identifier": ":\\sym_4ZZLWI6QQY4KJYYVP4RVDTJJJ6MW72AL2TJDVOI"
                        },
                        {
                            "name": "sym_YZMCMF2VDK5EZ5GH5K4G77V4XY7KHBJNPGELPVQ",
                            "size": 6,
                            "identifier": ":\\sym_YZMCMF2VDK5EZ5GH5K4G77V4XY7KHBJNPGELPVQ"
                        },
                        {
                            "name": "sym_M7NFHAM4FWTXSZMPV3DTHM2V6JD26AKK4R2A6YI",
                            "size": 12,
                            "identifier": ":\\sym_M7NFHAM4FWTXSZMPV3DTHM2V6JD26AKK4R2A6YI"
                        },
                        {
                            "name": "sym_OHZGE3PRU72NL3TJSLCEUVROHETUDPWEUAQ7GMA",
                            "size": 6,
                            "identifier": ":\\sym_OHZGE3PRU72NL3TJSLCEUVROHETUDPWEUAQ7GMA"
                        },
                        {
                            "name": "sym_EZ7BAEZZMYJFIJAONX254JF3WPGEXUT4NMP2WJQ",
                            "size": 22,
                            "identifier": ":\\sym_EZ7BAEZZMYJFIJAONX254JF3WPGEXUT4NMP2WJQ"
                        },
                        {
                            "name": "_lseek_r",
                            "size": 36,
                            "identifier": ":\\_lseek_r"
                        },
                        {
                            "name": "sym_MF4WRTQNYFRYRFGW7FZUI3ZAYNQZ5EQ54QSK6JQ",
                            "size": 6,
                            "identifier": ":\\sym_MF4WRTQNYFRYRFGW7FZUI3ZAYNQZ5EQ54QSK6JQ"
                        },
                        {
                            "name": "sym_XW2AJRDPRGLPOQ7S6SBIDHJSPT737QJRC7LOWOI",
                            "size": 8,
                            "identifier": ":\\sym_XW2AJRDPRGLPOQ7S6SBIDHJSPT737QJRC7LOWOI"
                        },
                        {
                            "name": "sym_EANB2LFFCPDZUHTPF7SNNYVWVGG3AE7JVOONSTY",
                            "size": 24,
                            "identifier": ":\\sym_EANB2LFFCPDZUHTPF7SNNYVWVGG3AE7JVOONSTY"
                        },
                        {
                            "name": "sym_UEZ3FVWFJ5XVLQBVVAHW7UTXVCC77F7ZYGOMLTQ",
                            "size": 8,
                            "identifier": ":\\sym_UEZ3FVWFJ5XVLQBVVAHW7UTXVCC77F7ZYGOMLTQ"
                        },
                        {
                            "name": "sdc_soc_ecb_block_encrypt",
                            "size": 58,
                            "identifier": ":\\sdc_soc_ecb_block_encrypt"
                        },
                        {
                            "name": "sym_EROH2ERI6YP4PUJVAMOS4KJ2YDG74D2WAXB2TOI",
                            "size": 68,
                            "identifier": ":\\sym_EROH2ERI6YP4PUJVAMOS4KJ2YDG74D2WAXB2TOI"
                        },
                        {
                            "name": "sym_NKFCLZ5HTE6KVHDV5DGZ6TJP4KSZI43SYBECPRY",
                            "size": 6,
                            "identifier": ":\\sym_NKFCLZ5HTE6KVHDV5DGZ6TJP4KSZI43SYBECPRY"
                        },
                        {
                            "name": "sym_A6H6572F75Y3NWHNM7XTQ5XKFPHT472D7ZS7PFQ",
                            "size": 32,
                            "identifier": ":\\sym_A6H6572F75Y3NWHNM7XTQ5XKFPHT472D7ZS7PFQ"
                        },
                        {
                            "name": "sym_RHE23VLW3YS5P4HRDMPTVWIHXVLEGJ7BJEAEEUI",
                            "size": 134,
                            "identifier": ":\\sym_RHE23VLW3YS5P4HRDMPTVWIHXVLEGJ7BJEAEEUI"
                        },
                        {
                            "name": "sym_Y5RIWFUVP4FHJFYC7FBZKM2MV7INK43TLWQ5URA",
                            "size": 14,
                            "identifier": ":\\sym_Y5RIWFUVP4FHJFYC7FBZKM2MV7INK43TLWQ5URA"
                        },
                        {
                            "name": "sym_I72BLVRK23UDT6KM4GEW6EVDLN4L7QB2CLD4CMY",
                            "size": 8,
                            "identifier": ":\\sym_I72BLVRK23UDT6KM4GEW6EVDLN4L7QB2CLD4CMY"
                        },
                        {
                            "name": "sym_P2OZB7UAJZNJ47VR5DS7V33BAD5DESWDHJYKOZA",
                            "size": 36,
                            "identifier": ":\\sym_P2OZB7UAJZNJ47VR5DS7V33BAD5DESWDHJYKOZA"
                        },
                        {
                            "name": "sdc_hci_cmd_cb_set_event_mask_page_2",
                            "size": 10,
                            "identifier": ":\\sdc_hci_cmd_cb_set_event_mask_page_2"
                        },
                        {
                            "name": "sym_4WIY2RAFLOZNOS4O5BEVWEYHIO3NV42IZ2Q2NWQ",
                            "size": 36,
                            "identifier": ":\\sym_4WIY2RAFLOZNOS4O5BEVWEYHIO3NV42IZ2Q2NWQ"
                        },
                        {
                            "name": "sym_GRKUQI62F6CK2HPCZKZRWSZ3PZVCGXTWPZAIMJA",
                            "size": 500,
                            "identifier": ":\\sym_GRKUQI62F6CK2HPCZKZRWSZ3PZVCGXTWPZAIMJA"
                        },
                        {
                            "name": "sym_FYMYD324TMLKJZE62CZN4WTXFSPL6FPU2SZH6CI",
                            "size": 116,
                            "identifier": ":\\sym_FYMYD324TMLKJZE62CZN4WTXFSPL6FPU2SZH6CI"
                        },
                        {
                            "name": "sym_365Y77DXDRWJHR4QPTXJM46KZ7L557J533F2SNY",
                            "size": 154,
                            "identifier": ":\\sym_365Y77DXDRWJHR4QPTXJM46KZ7L557J533F2SNY"
                        },
                        {
                            "name": "sym_WJZCKVDJU3WW5NVNH77DPRGYVZQLD372GLDYO6I",
                            "size": 182,
                            "identifier": ":\\sym_WJZCKVDJU3WW5NVNH77DPRGYVZQLD372GLDYO6I"
                        },
                        {
                            "name": "sym_WN24RDMSAOQ4REDS6M5SAD27A5BMKW36N3VHGXI",
                            "size": 16,
                            "identifier": ":\\sym_WN24RDMSAOQ4REDS6M5SAD27A5BMKW36N3VHGXI"
                        },
                        {
                            "name": "sym_L4JTLGMK2AWYAAPRB3O77773SG36X2NTZJ3FAHA",
                            "size": 8,
                            "identifier": ":\\sym_L4JTLGMK2AWYAAPRB3O77773SG36X2NTZJ3FAHA"
                        },
                        {
                            "name": "sym_7BUNPUBNWNFVXXIMNFFNK765OVON5LBIUZ66QRI",
                            "size": 10,
                            "identifier": ":\\sym_7BUNPUBNWNFVXXIMNFFNK765OVON5LBIUZ66QRI"
                        },
                        {
                            "name": "sym_BR7VCSB75RGRQ7O7PYOVLMHXKJKUMK6XH3GVGZA",
                            "size": 36,
                            "identifier": ":\\sym_BR7VCSB75RGRQ7O7PYOVLMHXKJKUMK6XH3GVGZA"
                        },
                        {
                            "name": "sym_DVVOECRRYK6EAGDREB2UKKQZT5MAOOUK66XNPTA",
                            "size": 22,
                            "identifier": ":\\sym_DVVOECRRYK6EAGDREB2UKKQZT5MAOOUK66XNPTA"
                        },
                        {
                            "name": "sym_IPYDOGNKVSD5CNASNRZPFKSG4XKU4ZG4SVERI7Q",
                            "size": 92,
                            "identifier": ":\\sym_IPYDOGNKVSD5CNASNRZPFKSG4XKU4ZG4SVERI7Q"
                        },
                        {
                            "name": "sym_CYYZ5DA5UWAE37FM7XP643I473QUSWWZ2MS7OLY",
                            "size": 24,
                            "identifier": ":\\sym_CYYZ5DA5UWAE37FM7XP643I473QUSWWZ2MS7OLY"
                        },
                        {
                            "name": "__sfmoreglue",
                            "size": 44,
                            "identifier": ":\\__sfmoreglue"
                        },
                        {
                            "name": "sym_4CZSFTTT34WDYFZKE2NSCSVSYLPHLZYN7QUTGHY",
                            "size": 12,
                            "identifier": ":\\sym_4CZSFTTT34WDYFZKE2NSCSVSYLPHLZYN7QUTGHY"
                        },
                        {
                            "name": "_ZN4carl6sensor9Gyroscope14set_rpm_offsetEd",
                            "size": 4,
                            "identifier": ":\\_ZN4carl6sensor9Gyroscope14set_rpm_offsetEd"
                        },
                        {
                            "name": "sym_H6NC6L6VJY74V6C72Y6E5P4HGSZIVJQXMUOQZ5Y",
                            "size": 10,
                            "identifier": ":\\sym_H6NC6L6VJY74V6C72Y6E5P4HGSZIVJQXMUOQZ5Y"
                        },
                        {
                            "name": "sdc_hci_cmd_vs_zephyr_read_chip_temp",
                            "size": 40,
                            "identifier": ":\\sdc_hci_cmd_vs_zephyr_read_chip_temp"
                        },
                        {
                            "name": "sym_HE5JGYEZFIITGQL7PMATDHSORSCK7HJIY5UXOZA",
                            "size": 6,
                            "identifier": ":\\sym_HE5JGYEZFIITGQL7PMATDHSORSCK7HJIY5UXOZA"
                        },
                        {
                            "name": "mpsl_fem_pa_configuration_clear",
                            "size": 8,
                            "identifier": ":\\mpsl_fem_pa_configuration_clear"
                        },
                        {
                            "name": "sym_XCF2HHS4DO2JW2ILCF4RJW66HXXYOROBK7NUPMY",
                            "size": 92,
                            "identifier": ":\\sym_XCF2HHS4DO2JW2ILCF4RJW66HXXYOROBK7NUPMY"
                        },
                        {
                            "name": "sym_5SQGEOI2QIBONU3LMZVAMW3SSGU24TVE57VDLBA",
                            "size": 8,
                            "identifier": ":\\sym_5SQGEOI2QIBONU3LMZVAMW3SSGU24TVE57VDLBA"
                        },
                        {
                            "name": "sym_KQ364TAUBSTGBVLC6BUZ6LU5UQACEISDV2KKO5I",
                            "size": 32,
                            "identifier": ":\\sym_KQ364TAUBSTGBVLC6BUZ6LU5UQACEISDV2KKO5I"
                        },
                        {
                            "name": "sym_PEUB6CZG5CWXXD4M2S6OVBXZGDFOG4XII7USUDQ",
                            "size": 34,
                            "identifier": ":\\sym_PEUB6CZG5CWXXD4M2S6OVBXZGDFOG4XII7USUDQ"
                        },
                        {
                            "name": "memcpy",
                            "size": 28,
                            "identifier": ":\\memcpy"
                        },
                        {
                            "name": "sym_CT735EXQUXWPD7TNRP2WWTA3LGLYUEOZMPS7RMI",
                            "size": 56,
                            "identifier": ":\\sym_CT735EXQUXWPD7TNRP2WWTA3LGLYUEOZMPS7RMI"
                        },
                        {
                            "name": "sym_STP6UONGXHZIIGYZLLHSWZFO5DU7227CCUKBTDQ",
                            "size": 24,
                            "identifier": ":\\sym_STP6UONGXHZIIGYZLLHSWZFO5DU7227CCUKBTDQ"
                        },
                        {
                            "name": "__malloc_unlock",
                            "size": 12,
                            "identifier": ":\\__malloc_unlock"
                        },
                        {
                            "name": "__aeabi_fcmpgt",
                            "size": 18,
                            "identifier": ":\\__aeabi_fcmpgt"
                        },
                        {
                            "name": "sym_MHDCHYAEWBCIUYGOTWRWGZEJ6XEBEBUHOO5T6WY",
                            "size": 6,
                            "identifier": ":\\sym_MHDCHYAEWBCIUYGOTWRWGZEJ6XEBEBUHOO5T6WY"
                        },
                        {
                            "name": "sym_AL7FCNVVCF72BNYCTLA5UGAWCQFXFPGE2ULTWOA",
                            "size": 20,
                            "identifier": ":\\sym_AL7FCNVVCF72BNYCTLA5UGAWCQFXFPGE2ULTWOA"
                        },
                        {
                            "name": "sym_HVFGTYCGAECGUJHOFSPMGUV2G4PTWWUYTJVAPNA",
                            "size": 26,
                            "identifier": ":\\sym_HVFGTYCGAECGUJHOFSPMGUV2G4PTWWUYTJVAPNA"
                        },
                        {
                            "name": "__aeabi_l2f",
                            "size": 124,
                            "identifier": ":\\__aeabi_l2f"
                        },
                        {
                            "name": "sym_DG6VHZEFRVR44ESTRZM42ZEBJG4KXT7IVJESA4Y",
                            "size": 18,
                            "identifier": ":\\sym_DG6VHZEFRVR44ESTRZM42ZEBJG4KXT7IVJESA4Y"
                        },
                        {
                            "name": "sym_LZEJCP3HZIBKMJQC47UQXAHGCQ52QF47EXOH2WA",
                            "size": 32,
                            "identifier": ":\\sym_LZEJCP3HZIBKMJQC47UQXAHGCQ52QF47EXOH2WA"
                        },
                        {
                            "name": "sdc_hci_cmd_le_add_device_to_resolving_list",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_add_device_to_resolving_list"
                        },
                        {
                            "name": "sym_3E5VWVFRMYHMNGUSJEPBKKOP7X6VGWWURR334MQ",
                            "size": 18,
                            "identifier": ":\\sym_3E5VWVFRMYHMNGUSJEPBKKOP7X6VGWWURR334MQ"
                        },
                        {
                            "name": "sym_WDNTHBFS7DQM3AR7WDCR7ZEICFH5ZM5PJ35BRPY",
                            "size": 30,
                            "identifier": ":\\sym_WDNTHBFS7DQM3AR7WDCR7ZEICFH5ZM5PJ35BRPY"
                        },
                        {
                            "name": "_ZN2QP4QMsm9msm_top_sE",
                            "size": 20,
                            "identifier": ":\\_ZN2QP4QMsm9msm_top_sE"
                        },
                        {
                            "name": "strlen",
                            "size": 16,
                            "identifier": ":\\strlen"
                        },
                        {
                            "name": "__sfp",
                            "size": 140,
                            "identifier": ":\\__sfp"
                        },
                        {
                            "name": "sym_LDNWAOTSHYHHXS6GC3A5HYPBDRDBY4JBJAMZW7I",
                            "size": 106,
                            "identifier": ":\\sym_LDNWAOTSHYHHXS6GC3A5HYPBDRDBY4JBJAMZW7I"
                        },
                        {
                            "name": "sym_47MBMNER75N2M6YIZRIF4DAHSAATJOMK3LAIDCY",
                            "size": 32,
                            "identifier": ":\\sym_47MBMNER75N2M6YIZRIF4DAHSAATJOMK3LAIDCY"
                        },
                        {
                            "name": "sym_R2K72KVDRFDRB7INCDL2G5SJCI6KNYCIUBETXWY",
                            "size": 6,
                            "identifier": ":\\sym_R2K72KVDRFDRB7INCDL2G5SJCI6KNYCIUBETXWY"
                        },
                        {
                            "name": "sym_27RZBWKBTESKUPVNN3E7RHYQU6UH4RT372SK2WA",
                            "size": 8,
                            "identifier": ":\\sym_27RZBWKBTESKUPVNN3E7RHYQU6UH4RT372SK2WA"
                        },
                        {
                            "name": "sym_WE45Z7LOSJEAVMD3HUIMZMMRDD5BLMKOFVBGE4Y",
                            "size": 18,
                            "identifier": ":\\sym_WE45Z7LOSJEAVMD3HUIMZMMRDD5BLMKOFVBGE4Y"
                        },
                        {
                            "name": "sdc_hci_cmd_le_long_term_key_request_negative_reply",
                            "size": 8,
                            "identifier": ":\\sdc_hci_cmd_le_long_term_key_request_negative_reply"
                        },
                        {
                            "name": "sym_OGXWMXSCK2QG6TOSCWHHS4PII24VSXWVJJIPCDI",
                            "size": 22,
                            "identifier": ":\\sym_OGXWMXSCK2QG6TOSCWHHS4PII24VSXWVJJIPCDI"
                        },
                        {
                            "name": "sym_E56LW5YVGUG6HP2OML5URHI7K2KCWX5ULQKQOKY",
                            "size": 28,
                            "identifier": ":\\sym_E56LW5YVGUG6HP2OML5URHI7K2KCWX5ULQKQOKY"
                        },
                        {
                            "name": "sdc_hci_cmd_vs_zephyr_read_key_hierarchy_roots",
                            "size": 140,
                            "identifier": ":\\sdc_hci_cmd_vs_zephyr_read_key_hierarchy_roots"
                        },
                        {
                            "name": "sym_3LXCSEW4O4NZFGMXLMWXSJJVGEQV4VDRFCVRV4Q",
                            "size": 38,
                            "identifier": ":\\sym_3LXCSEW4O4NZFGMXLMWXSJJVGEQV4VDRFCVRV4Q"
                        },
                        {
                            "name": "sdc_hci_cmd_le_set_adv_data",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_le_set_adv_data"
                        },
                        {
                            "name": "sym_E5LV7NLJGDBOOHT3XI7LZP4SJ6B3AVX5ZM7II3A",
                            "size": 6,
                            "identifier": ":\\sym_E5LV7NLJGDBOOHT3XI7LZP4SJ6B3AVX5ZM7II3A"
                        },
                        {
                            "name": "sym_GKUVQYGVTZ7DKWBNC3M5TXN4XZ4Q6TUJFSFOWBA",
                            "size": 20,
                            "identifier": ":\\sym_GKUVQYGVTZ7DKWBNC3M5TXN4XZ4Q6TUJFSFOWBA"
                        },
                        {
                            "name": "finite",
                            "size": 12,
                            "identifier": ":\\finite"
                        },
                        {
                            "name": "sym_YKV5VFBUMD7K2LRWZ6WWYBEL5ESMQ4SDYYBDIPI",
                            "size": 6,
                            "identifier": ":\\sym_YKV5VFBUMD7K2LRWZ6WWYBEL5ESMQ4SDYYBDIPI"
                        },
                        {
                            "name": "__fdlib_version",
                            "size": 1,
                            "identifier": ":\\__fdlib_version"
                        },
                        {
                            "name": "sym_DY52YMZFQPMDNFDSVZDQLPFIWKOSXIQIEKUVZNY",
                            "size": 14,
                            "identifier": ":\\sym_DY52YMZFQPMDNFDSVZDQLPFIWKOSXIQIEKUVZNY"
                        },
                        {
                            "name": "sym_5WHAN4NH6PZY7VV5KTN53CABJRWXR3RJHHTA7KA",
                            "size": 10,
                            "identifier": ":\\sym_5WHAN4NH6PZY7VV5KTN53CABJRWXR3RJHHTA7KA"
                        },
                        {
                            "name": "sym_ZQE76VUU7S5U7DETTZA65E75LHFWL5PGRN4JPHI",
                            "size": 6,
                            "identifier": ":\\sym_ZQE76VUU7S5U7DETTZA65E75LHFWL5PGRN4JPHI"
                        },
                        {
                            "name": "sym_YUNWMAOOL6VPZ57LS54EAM7TJ65IEHYU7XKGKUI",
                            "size": 26,
                            "identifier": ":\\sym_YUNWMAOOL6VPZ57LS54EAM7TJ65IEHYU7XKGKUI"
                        },
                        {
                            "name": "sdc_hci_cmd_le_long_term_key_request_reply",
                            "size": 8,
                            "identifier": ":\\sdc_hci_cmd_le_long_term_key_request_reply"
                        },
                        {
                            "name": "sym_AFBV6ZWWJ5TP5BBQPAY4D2XGGYVLQVI65FY6JPY",
                            "size": 4,
                            "identifier": ":\\sym_AFBV6ZWWJ5TP5BBQPAY4D2XGGYVLQVI65FY6JPY"
                        },
                        {
                            "name": "_ZN4carl3app12hall_triggerE",
                            "size": 28,
                            "identifier": ":\\_ZN4carl3app12hall_triggerE"
                        },
                        {
                            "name": "sym_G3KVRHCJDVHL7HV53526V3YI3DTK2IW2CADUWZQ",
                            "size": 6,
                            "identifier": ":\\sym_G3KVRHCJDVHL7HV53526V3YI3DTK2IW2CADUWZQ"
                        },
                        {
                            "name": "sym_MJFFFAJVV3IQTOJK6UL2575XXGCEKTIIFXD5MAQ",
                            "size": 6,
                            "identifier": ":\\sym_MJFFFAJVV3IQTOJK6UL2575XXGCEKTIIFXD5MAQ"
                        },
                        {
                            "name": "sdc_hci_cmd_lc_read_remote_version_information",
                            "size": 4,
                            "identifier": ":\\sdc_hci_cmd_lc_read_remote_version_information"
                        },
                        {
                            "name": "_isatty_r",
                            "size": 32,
                            "identifier": ":\\_isatty_r"
                        },
                        {
                            "name": "mpsl_fem_pa_configuration_set",
                            "size": 8,
                            "identifier": ":\\mpsl_fem_pa_configuration_set"
                        },
                        {
                            "name": "sym_2T6B57C7Z3NDT5ASKUJUGCCL3DBEO2AO4XX23BI",
                            "size": 4,
                            "identifier": ":\\sym_2T6B57C7Z3NDT5ASKUJUGCCL3DBEO2AO4XX23BI"
                        },
                        {
                            "name": "sym_AO3U45UEGFLUPMT565ZR5UWUQUONF5AKILLCT3A",
                            "size": 26,
                            "identifier": ":\\sym_AO3U45UEGFLUPMT565ZR5UWUQUONF5AKILLCT3A"
                        },
                        {
                            "name": "sym_HZRUCXEK6VH2SKHLITFSCAH5JZW3VUS5CZD2RBY",
                            "size": 56,
                            "identifier": ":\\sym_HZRUCXEK6VH2SKHLITFSCAH5JZW3VUS5CZD2RBY"
                        }
                    ]
                },
                {
                    "name": "ZEPHYR_BASE",
                    "size": 64881,
                    "identifier": "C:/Users/sw2.KRAFFT/ncs/zephyr",
                    "children": [
                        {
                            "name": "include",
                            "size": 1556,
                            "identifier": "include",
                            "children": [
                                {
                                    "name": "zephyr",
                                    "size": 1556,
                                    "identifier": "include\\zephyr",
                                    "children": [
                                        {
                                            "name": "drivers",
                                            "size": 646,
                                            "identifier": "include\\zephyr\\drivers",
                                            "children": [
                                                {
                                                    "name": "bluetooth",
                                                    "size": 36,
                                                    "identifier": "include\\zephyr\\drivers\\bluetooth",
                                                    "children": [
                                                        {
                                                            "name": "hci_driver.h",
                                                            "size": 36,
                                                            "identifier": "include\\zephyr\\drivers\\bluetooth\\hci_driver.h",
                                                            "children": [
                                                                {
                                                                    "name": "bt_hci_evt_get_flags",
                                                                    "size": 36,
                                                                    "identifier": "include\\zephyr\\drivers\\bluetooth\\hci_driver.h\\bt_hci_evt_get_flags"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "gpio.h",
                                                    "size": 200,
                                                    "identifier": "include\\zephyr\\drivers\\gpio.h",
                                                    "children": [
                                                        {
                                                            "name": "gpio_pin_set",
                                                            "size": 32,
                                                            "identifier": "include\\zephyr\\drivers\\gpio.h\\gpio_pin_set"
                                                        },
                                                        {
                                                            "name": "gpio_pin_set_dt.isra.0",
                                                            "size": 40,
                                                            "identifier": "include\\zephyr\\drivers\\gpio.h\\gpio_pin_set_dt.isra.0"
                                                        },
                                                        {
                                                            "name": "gpio_pin_interrupt_configure_dt",
                                                            "size": 96,
                                                            "identifier": "include\\zephyr\\drivers\\gpio.h\\gpio_pin_interrupt_configure_dt"
                                                        },
                                                        {
                                                            "name": "gpio_pin_set.isra.0",
                                                            "size": 32,
                                                            "identifier": "include\\zephyr\\drivers\\gpio.h\\gpio_pin_set.isra.0"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "sensor.h",
                                                    "size": 296,
                                                    "identifier": "include\\zephyr\\drivers\\sensor.h",
                                                    "children": [
                                                        {
                                                            "name": "sensor_value_from_double.isra.0",
                                                            "size": 140,
                                                            "identifier": "include\\zephyr\\drivers\\sensor.h\\sensor_value_from_double.isra.0"
                                                        },
                                                        {
                                                            "name": "sensor_value_from_double",
                                                            "size": 156,
                                                            "identifier": "include\\zephyr\\drivers\\sensor.h\\sensor_value_from_double"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "pinctrl.h",
                                                    "size": 90,
                                                    "identifier": "include\\zephyr\\drivers\\pinctrl.h",
                                                    "children": [
                                                        {
                                                            "name": "pinctrl_apply_state",
                                                            "size": 90,
                                                            "identifier": "include\\zephyr\\drivers\\pinctrl.h\\pinctrl_apply_state"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "i2c.h",
                                                    "size": 12,
                                                    "identifier": "include\\zephyr\\drivers\\i2c.h",
                                                    "children": [
                                                        {
                                                            "name": "z_impl_i2c_transfer",
                                                            "size": 12,
                                                            "identifier": "include\\zephyr\\drivers\\i2c.h\\z_impl_i2c_transfer"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "spi.h",
                                                    "size": 12,
                                                    "identifier": "include\\zephyr\\drivers\\spi.h",
                                                    "children": [
                                                        {
                                                            "name": "z_impl_spi_transceive",
                                                            "size": 12,
                                                            "identifier": "include\\zephyr\\drivers\\spi.h\\z_impl_spi_transceive"
                                                        }
                                                    ]
                                                }
                                            ]
                                        },
                                        {
                                            "name": "sys",
                                            "size": 700,
                                            "identifier": "include\\zephyr\\sys",
                                            "children": [
                                                {
                                                    "name": "atomic_builtin.h",
                                                    "size": 168,
                                                    "identifier": "include\\zephyr\\sys\\atomic_builtin.h",
                                                    "children": [
                                                        {
                                                            "name": "atomic_or",
                                                            "size": 60,
                                                            "identifier": "include\\zephyr\\sys\\atomic_builtin.h\\atomic_or"
                                                        },
                                                        {
                                                            "name": "atomic_and.isra.0",
                                                            "size": 24,
                                                            "identifier": "include\\zephyr\\sys\\atomic_builtin.h\\atomic_and.isra.0"
                                                        },
                                                        {
                                                            "name": "atomic_get",
                                                            "size": 24,
                                                            "identifier": "include\\zephyr\\sys\\atomic_builtin.h\\atomic_get"
                                                        },
                                                        {
                                                            "name": "atomic_and",
                                                            "size": 60,
                                                            "identifier": "include\\zephyr\\sys\\atomic_builtin.h\\atomic_and"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "byteorder.h",
                                                    "size": 100,
                                                    "identifier": "include\\zephyr\\sys\\byteorder.h",
                                                    "children": [
                                                        {
                                                            "name": "sys_put_le64",
                                                            "size": 32,
                                                            "identifier": "include\\zephyr\\sys\\byteorder.h\\sys_put_le64"
                                                        },
                                                        {
                                                            "name": "sys_memcpy_swap",
                                                            "size": 20,
                                                            "identifier": "include\\zephyr\\sys\\byteorder.h\\sys_memcpy_swap"
                                                        },
                                                        {
                                                            "name": "sys_mem_swap.constprop.0",
                                                            "size": 28,
                                                            "identifier": "include\\zephyr\\sys\\byteorder.h\\sys_mem_swap.constprop.0"
                                                        },
                                                        {
                                                            "name": "sys_memcpy_swap.constprop.0",
                                                            "size": 20,
                                                            "identifier": "include\\zephyr\\sys\\byteorder.h\\sys_memcpy_swap.constprop.0"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "atomic.h",
                                                    "size": 238,
                                                    "identifier": "include\\zephyr\\sys\\atomic.h",
                                                    "children": [
                                                        {
                                                            "name": "atomic_set_bit_to",
                                                            "size": 46,
                                                            "identifier": "include\\zephyr\\sys\\atomic.h\\atomic_set_bit_to"
                                                        },
                                                        {
                                                            "name": "atomic_test_bit",
                                                            "size": 18,
                                                            "identifier": "include\\zephyr\\sys\\atomic.h\\atomic_test_bit"
                                                        },
                                                        {
                                                            "name": "atomic_clear_bit",
                                                            "size": 60,
                                                            "identifier": "include\\zephyr\\sys\\atomic.h\\atomic_clear_bit"
                                                        },
                                                        {
                                                            "name": "atomic_test_and_set_bit",
                                                            "size": 42,
                                                            "identifier": "include\\zephyr\\sys\\atomic.h\\atomic_test_and_set_bit"
                                                        },
                                                        {
                                                            "name": "atomic_set_bit",
                                                            "size": 28,
                                                            "identifier": "include\\zephyr\\sys\\atomic.h\\atomic_set_bit"
                                                        },
                                                        {
                                                            "name": "atomic_test_and_clear_bit",
                                                            "size": 44,
                                                            "identifier": "include\\zephyr\\sys\\atomic.h\\atomic_test_and_clear_bit"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "slist.h",
                                                    "size": 178,
                                                    "identifier": "include\\zephyr\\sys\\slist.h",
                                                    "children": [
                                                        {
                                                            "name": "sys_slist_find_and_remove",
                                                            "size": 108,
                                                            "identifier": "include\\zephyr\\sys\\slist.h\\sys_slist_find_and_remove"
                                                        },
                                                        {
                                                            "name": "sys_slist_get",
                                                            "size": 20,
                                                            "identifier": "include\\zephyr\\sys\\slist.h\\sys_slist_get"
                                                        },
                                                        {
                                                            "name": "sys_slist_find_and_remove.isra.0",
                                                            "size": 50,
                                                            "identifier": "include\\zephyr\\sys\\slist.h\\sys_slist_find_and_remove.isra.0"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "dlist.h",
                                                    "size": 16,
                                                    "identifier": "include\\zephyr\\sys\\dlist.h",
                                                    "children": [
                                                        {
                                                            "name": "sys_dlist_remove",
                                                            "size": 16,
                                                            "identifier": "include\\zephyr\\sys\\dlist.h\\sys_dlist_remove"
                                                        }
                                                    ]
                                                }
                                            ]
                                        },
                                        {
                                            "name": "bluetooth",
                                            "size": 166,
                                            "identifier": "include\\zephyr\\bluetooth",
                                            "children": [
                                                {
                                                    "name": "addr.h",
                                                    "size": 122,
                                                    "identifier": "include\\zephyr\\bluetooth\\addr.h",
                                                    "children": [
                                                        {
                                                            "name": "bt_addr_copy",
                                                            "size": 20,
                                                            "identifier": "include\\zephyr\\bluetooth\\addr.h\\bt_addr_copy"
                                                        },
                                                        {
                                                            "name": "bt_addr_le_copy",
                                                            "size": 70,
                                                            "identifier": "include\\zephyr\\bluetooth\\addr.h\\bt_addr_le_copy"
                                                        },
                                                        {
                                                            "name": "bt_addr_le_eq",
                                                            "size": 32,
                                                            "identifier": "include\\zephyr\\bluetooth\\addr.h\\bt_addr_le_eq"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "gatt.h",
                                                    "size": 44,
                                                    "identifier": "include\\zephyr\\bluetooth\\gatt.h",
                                                    "children": [
                                                        {
                                                            "name": "bt_gatt_foreach_attr",
                                                            "size": 44,
                                                            "identifier": "include\\zephyr\\bluetooth\\gatt.h\\bt_gatt_foreach_attr"
                                                        }
                                                    ]
                                                }
                                            ]
                                        },
                                        {
                                            "name": "net",
                                            "size": 16,
                                            "identifier": "include\\zephyr\\net",
                                            "children": [
                                                {
                                                    "name": "buf.h",
                                                    "size": 16,
                                                    "identifier": "include\\zephyr\\net\\buf.h",
                                                    "children": [
                                                        {
                                                            "name": "net_buf_frags_len",
                                                            "size": 16,
                                                            "identifier": "include\\zephyr\\net\\buf.h\\net_buf_frags_len"
                                                        }
                                                    ]
                                                }
                                            ]
                                        },
                                        {
                                            "name": "kernel.h",
                                            "size": 28,
                                            "identifier": "include\\zephyr\\kernel.h",
                                            "children": [
                                                {
                                                    "name": "k_uptime_get",
                                                    "size": 28,
                                                    "identifier": "include\\zephyr\\kernel.h\\k_uptime_get"
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "name": "subsys",
                            "size": 37847,
                            "identifier": "subsys",
                            "children": [
                                {
                                    "name": "bluetooth",
                                    "size": 35675,
                                    "identifier": "subsys\\bluetooth",
                                    "children": [
                                        {
                                            "name": "host",
                                            "size": 34373,
                                            "identifier": "subsys\\bluetooth\\host",
                                            "children": [
                                                {
                                                    "name": "hci_core.c",
                                                    "size": 5594,
                                                    "identifier": "subsys\\bluetooth\\host\\hci_core.c",
                                                    "children": [
                                                        {
                                                            "name": "hci_data_buf_overflow",
                                                            "size": 2,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\hci_data_buf_overflow"
                                                        },
                                                        {
                                                            "name": "update_sec_level",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\update_sec_level"
                                                        },
                                                        {
                                                            "name": "hci_disconn_complete_prio",
                                                            "size": 60,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\hci_disconn_complete_prio"
                                                        },
                                                        {
                                                            "name": "hci_disconn_complete",
                                                            "size": 42,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\hci_disconn_complete"
                                                        },
                                                        {
                                                            "name": "le_phy_update_complete",
                                                            "size": 24,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\le_phy_update_complete"
                                                        },
                                                        {
                                                            "name": "le_data_len_change",
                                                            "size": 22,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\le_data_len_change"
                                                        },
                                                        {
                                                            "name": "hci_hardware_error",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\hci_hardware_error"
                                                        },
                                                        {
                                                            "name": "find_pending_connect.part.0",
                                                            "size": 44,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\find_pending_connect.part.0"
                                                        },
                                                        {
                                                            "name": "le_remote_feat_complete",
                                                            "size": 58,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\le_remote_feat_complete"
                                                        },
                                                        {
                                                            "name": "handle_event_common.isra.0",
                                                            "size": 46,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\handle_event_common.isra.0"
                                                        },
                                                        {
                                                            "name": "hci_le_meta_event",
                                                            "size": 32,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\hci_le_meta_event"
                                                        },
                                                        {
                                                            "name": "meta_events",
                                                            "size": 80,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\meta_events"
                                                        },
                                                        {
                                                            "name": "rx_work_handler",
                                                            "size": 280,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\rx_work_handler"
                                                        },
                                                        {
                                                            "name": "rx_work",
                                                            "size": 16,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\rx_work"
                                                        },
                                                        {
                                                            "name": "normal_events",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\normal_events"
                                                        },
                                                        {
                                                            "name": "hci_cmd_done",
                                                            "size": 188,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\hci_cmd_done"
                                                        },
                                                        {
                                                            "name": "hci_cmd_pool",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\hci_cmd_pool"
                                                        },
                                                        {
                                                            "name": "hci_cmd_status",
                                                            "size": 44,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\hci_cmd_status"
                                                        },
                                                        {
                                                            "name": "hci_cmd_complete",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\hci_cmd_complete"
                                                        },
                                                        {
                                                            "name": "hci_num_completed_packets",
                                                            "size": 216,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\hci_num_completed_packets"
                                                        },
                                                        {
                                                            "name": "le_conn_update_complete",
                                                            "size": 180,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\le_conn_update_complete"
                                                        },
                                                        {
                                                            "name": "hci_le_read_max_data_len",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\hci_le_read_max_data_len"
                                                        },
                                                        {
                                                            "name": "le_enh_conn_complete",
                                                            "size": 6,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\le_enh_conn_complete"
                                                        },
                                                        {
                                                            "name": "le_legacy_conn_complete",
                                                            "size": 100,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\le_legacy_conn_complete"
                                                        },
                                                        {
                                                            "name": "hci_encrypt_key_refresh_complete",
                                                            "size": 94,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\hci_encrypt_key_refresh_complete"
                                                        },
                                                        {
                                                            "name": "hci_encrypt_change",
                                                            "size": 112,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\hci_encrypt_change"
                                                        },
                                                        {
                                                            "name": "le_ltk_request",
                                                            "size": 144,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\le_ltk_request"
                                                        },
                                                        {
                                                            "name": "le_conn_param_neg_reply",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\le_conn_param_neg_reply"
                                                        },
                                                        {
                                                            "name": "le_conn_param_req",
                                                            "size": 170,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\le_conn_param_req"
                                                        },
                                                        {
                                                            "name": "hci_tx_thread",
                                                            "size": 284,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\hci_tx_thread"
                                                        },
                                                        {
                                                            "name": "prio_events",
                                                            "size": 40,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\prio_events"
                                                        },
                                                        {
                                                            "name": "bt_init",
                                                            "size": 1004,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\bt_init"
                                                        },
                                                        {
                                                            "name": "init_work",
                                                            "size": 24,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\init_work"
                                                        },
                                                        {
                                                            "name": "net_buf_fixed_alloc_hci_cmd_pool",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\net_buf_fixed_alloc_hci_cmd_pool"
                                                        },
                                                        {
                                                            "name": "net_buf_fixed_hci_cmd_pool",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\net_buf_fixed_hci_cmd_pool"
                                                        },
                                                        {
                                                            "name": "bt_addr_le_is_bonded",
                                                            "size": 18,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\bt_addr_le_is_bonded"
                                                        },
                                                        {
                                                            "name": "bt_hci_cmd_state_set_init",
                                                            "size": 36,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\bt_hci_cmd_state_set_init"
                                                        },
                                                        {
                                                            "name": "bt_le_conn_params_valid",
                                                            "size": 66,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\bt_le_conn_params_valid"
                                                        },
                                                        {
                                                            "name": "bt_is_ready",
                                                            "size": 24,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\bt_is_ready"
                                                        },
                                                        {
                                                            "name": "bt_recv",
                                                            "size": 84,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\bt_recv"
                                                        },
                                                        {
                                                            "name": "bt_security_err_get",
                                                            "size": 16,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\bt_security_err_get"
                                                        },
                                                        {
                                                            "name": "log_const_bt_hci_core",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\log_const_bt_hci_core"
                                                        },
                                                        {
                                                            "name": "bt_finalize_init",
                                                            "size": 12,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\bt_finalize_init"
                                                        },
                                                        {
                                                            "name": "bt_send",
                                                            "size": 16,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\bt_send"
                                                        },
                                                        {
                                                            "name": "bt_set_name",
                                                            "size": 64,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\bt_set_name"
                                                        },
                                                        {
                                                            "name": "bt_hci_cmd_send",
                                                            "size": 68,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\bt_hci_cmd_send"
                                                        },
                                                        {
                                                            "name": "bt_hci_cmd_send_sync",
                                                            "size": 208,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\bt_hci_cmd_send_sync"
                                                        },
                                                        {
                                                            "name": "bt_hci_driver_register",
                                                            "size": 40,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\bt_hci_driver_register"
                                                        },
                                                        {
                                                            "name": "bt_le_set_data_len",
                                                            "size": 60,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\bt_le_set_data_len"
                                                        },
                                                        {
                                                            "name": "bt_hci_le_enh_conn_complete",
                                                            "size": 500,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\bt_hci_le_enh_conn_complete"
                                                        },
                                                        {
                                                            "name": "bt_hci_disconnect",
                                                            "size": 54,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\bt_hci_disconnect"
                                                        },
                                                        {
                                                            "name": "bt_get_appearance",
                                                            "size": 4,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\bt_get_appearance"
                                                        },
                                                        {
                                                            "name": "bt_hci_le_rand",
                                                            "size": 88,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\bt_hci_le_rand"
                                                        },
                                                        {
                                                            "name": "bt_le_set_phy",
                                                            "size": 80,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\bt_le_set_phy"
                                                        },
                                                        {
                                                            "name": "bt_enable",
                                                            "size": 236,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\bt_enable"
                                                        },
                                                        {
                                                            "name": "hci_event_prio",
                                                            "size": 164,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\hci_event_prio"
                                                        },
                                                        {
                                                            "name": "bt_get_name",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\bt_get_name"
                                                        },
                                                        {
                                                            "name": "bt_hci_cmd_create",
                                                            "size": 116,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\bt_hci_cmd_create"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "uuid.c",
                                                    "size": 293,
                                                    "identifier": "subsys\\bluetooth\\host\\uuid.c",
                                                    "children": [
                                                        {
                                                            "name": "uuid_to_uuid128",
                                                            "size": 120,
                                                            "identifier": "subsys\\bluetooth\\host\\uuid.c\\uuid_to_uuid128"
                                                        },
                                                        {
                                                            "name": "uuid128_base",
                                                            "size": 17,
                                                            "identifier": "subsys\\bluetooth\\host\\uuid.c\\uuid128_base"
                                                        },
                                                        {
                                                            "name": "bt_uuid_create",
                                                            "size": 64,
                                                            "identifier": "subsys\\bluetooth\\host\\uuid.c\\bt_uuid_create"
                                                        },
                                                        {
                                                            "name": "bt_uuid_cmp",
                                                            "size": 92,
                                                            "identifier": "subsys\\bluetooth\\host\\uuid.c\\bt_uuid_cmp"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "buf.c",
                                                    "size": 376,
                                                    "identifier": "subsys\\bluetooth\\host\\buf.c",
                                                    "children": [
                                                        {
                                                            "name": "hci_rx_pool",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\buf.c\\hci_rx_pool"
                                                        },
                                                        {
                                                            "name": "num_complete_pool",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\buf.c\\num_complete_pool"
                                                        },
                                                        {
                                                            "name": "discardable_pool",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\buf.c\\discardable_pool"
                                                        },
                                                        {
                                                            "name": "net_buf_fixed_alloc_hci_rx_pool",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\buf.c\\net_buf_fixed_alloc_hci_rx_pool"
                                                        },
                                                        {
                                                            "name": "net_buf_fixed_hci_rx_pool",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\buf.c\\net_buf_fixed_hci_rx_pool"
                                                        },
                                                        {
                                                            "name": "net_buf_fixed_alloc_discardable_pool",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\buf.c\\net_buf_fixed_alloc_discardable_pool"
                                                        },
                                                        {
                                                            "name": "net_buf_fixed_discardable_pool",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\buf.c\\net_buf_fixed_discardable_pool"
                                                        },
                                                        {
                                                            "name": "net_buf_fixed_alloc_num_complete_pool",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\buf.c\\net_buf_fixed_alloc_num_complete_pool"
                                                        },
                                                        {
                                                            "name": "net_buf_fixed_num_complete_pool",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\buf.c\\net_buf_fixed_num_complete_pool"
                                                        },
                                                        {
                                                            "name": "bt_buf_get_evt",
                                                            "size": 88,
                                                            "identifier": "subsys\\bluetooth\\host\\buf.c\\bt_buf_get_evt"
                                                        },
                                                        {
                                                            "name": "bt_buf_get_rx",
                                                            "size": 32,
                                                            "identifier": "subsys\\bluetooth\\host\\buf.c\\bt_buf_get_rx"
                                                        },
                                                        {
                                                            "name": "bt_buf_get_cmd_complete",
                                                            "size": 64,
                                                            "identifier": "subsys\\bluetooth\\host\\buf.c\\bt_buf_get_cmd_complete"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "id.c",
                                                    "size": 2040,
                                                    "identifier": "subsys\\bluetooth\\host\\id.c",
                                                    "children": [
                                                        {
                                                            "name": "id_find",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\id.c\\id_find"
                                                        },
                                                        {
                                                            "name": "hci_id_add",
                                                            "size": 98,
                                                            "identifier": "subsys\\bluetooth\\host\\id.c\\hci_id_add"
                                                        },
                                                        {
                                                            "name": "keys_add_id",
                                                            "size": 22,
                                                            "identifier": "subsys\\bluetooth\\host\\id.c\\keys_add_id"
                                                        },
                                                        {
                                                            "name": "id_create.constprop.0",
                                                            "size": 92,
                                                            "identifier": "subsys\\bluetooth\\host\\id.c\\id_create.constprop.0"
                                                        },
                                                        {
                                                            "name": "addr_res_enable",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\id.c\\addr_res_enable"
                                                        },
                                                        {
                                                            "name": "set_random_address",
                                                            "size": 80,
                                                            "identifier": "subsys\\bluetooth\\host\\id.c\\set_random_address"
                                                        },
                                                        {
                                                            "name": "adv_unpause_enabled",
                                                            "size": 46,
                                                            "identifier": "subsys\\bluetooth\\host\\id.c\\adv_unpause_enabled"
                                                        },
                                                        {
                                                            "name": "adv_pause_enabled",
                                                            "size": 50,
                                                            "identifier": "subsys\\bluetooth\\host\\id.c\\adv_pause_enabled"
                                                        },
                                                        {
                                                            "name": "pending_id_update",
                                                            "size": 32,
                                                            "identifier": "subsys\\bluetooth\\host\\id.c\\pending_id_update"
                                                        },
                                                        {
                                                            "name": "bt_id_set_adv_random_addr",
                                                            "size": 16,
                                                            "identifier": "subsys\\bluetooth\\host\\id.c\\bt_id_set_adv_random_addr"
                                                        },
                                                        {
                                                            "name": "bt_id_set_adv_own_addr",
                                                            "size": 180,
                                                            "identifier": "subsys\\bluetooth\\host\\id.c\\bt_id_set_adv_own_addr"
                                                        },
                                                        {
                                                            "name": "log_const_bt_id",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\id.c\\log_const_bt_id"
                                                        },
                                                        {
                                                            "name": "bt_id_pending_keys_update",
                                                            "size": 52,
                                                            "identifier": "subsys\\bluetooth\\host\\id.c\\bt_id_pending_keys_update"
                                                        },
                                                        {
                                                            "name": "bt_id_create",
                                                            "size": 136,
                                                            "identifier": "subsys\\bluetooth\\host\\id.c\\bt_id_create"
                                                        },
                                                        {
                                                            "name": "bt_setup_random_id_addr",
                                                            "size": 92,
                                                            "identifier": "subsys\\bluetooth\\host\\id.c\\bt_setup_random_id_addr"
                                                        },
                                                        {
                                                            "name": "bt_id_find_conflict",
                                                            "size": 32,
                                                            "identifier": "subsys\\bluetooth\\host\\id.c\\bt_id_find_conflict"
                                                        },
                                                        {
                                                            "name": "bt_id_init",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\id.c\\bt_id_init"
                                                        },
                                                        {
                                                            "name": "bt_id_del",
                                                            "size": 268,
                                                            "identifier": "subsys\\bluetooth\\host\\id.c\\bt_id_del"
                                                        },
                                                        {
                                                            "name": "bt_id_read_public_addr",
                                                            "size": 92,
                                                            "identifier": "subsys\\bluetooth\\host\\id.c\\bt_id_read_public_addr"
                                                        },
                                                        {
                                                            "name": "bt_id_adv_random_addr_check",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\id.c\\bt_id_adv_random_addr_check"
                                                        },
                                                        {
                                                            "name": "bt_lookup_id_addr",
                                                            "size": 24,
                                                            "identifier": "subsys\\bluetooth\\host\\id.c\\bt_lookup_id_addr"
                                                        },
                                                        {
                                                            "name": "find_rl_conflict",
                                                            "size": 86,
                                                            "identifier": "subsys\\bluetooth\\host\\id.c\\find_rl_conflict"
                                                        },
                                                        {
                                                            "name": "bt_read_static_addr",
                                                            "size": 104,
                                                            "identifier": "subsys\\bluetooth\\host\\id.c\\bt_read_static_addr"
                                                        },
                                                        {
                                                            "name": "bt_id_set_adv_private_addr",
                                                            "size": 46,
                                                            "identifier": "subsys\\bluetooth\\host\\id.c\\bt_id_set_adv_private_addr"
                                                        },
                                                        {
                                                            "name": "bt_setup_public_id_addr",
                                                            "size": 32,
                                                            "identifier": "subsys\\bluetooth\\host\\id.c\\bt_setup_public_id_addr"
                                                        },
                                                        {
                                                            "name": "bt_id_add",
                                                            "size": 300,
                                                            "identifier": "subsys\\bluetooth\\host\\id.c\\bt_id_add"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "adv.c",
                                                    "size": 1882,
                                                    "identifier": "subsys\\bluetooth\\host\\adv.c",
                                                    "children": [
                                                        {
                                                            "name": "get_adv_channel_map",
                                                            "size": 30,
                                                            "identifier": "subsys\\bluetooth\\host\\adv.c\\get_adv_channel_map"
                                                        },
                                                        {
                                                            "name": "hci_set_ad",
                                                            "size": 190,
                                                            "identifier": "subsys\\bluetooth\\host\\adv.c\\hci_set_ad"
                                                        },
                                                        {
                                                            "name": "valid_adv_param",
                                                            "size": 132,
                                                            "identifier": "subsys\\bluetooth\\host\\adv.c\\valid_adv_param"
                                                        },
                                                        {
                                                            "name": "adv_is_directed",
                                                            "size": 24,
                                                            "identifier": "subsys\\bluetooth\\host\\adv.c\\adv_is_directed"
                                                        },
                                                        {
                                                            "name": "le_adv_start_add_conn",
                                                            "size": 96,
                                                            "identifier": "subsys\\bluetooth\\host\\adv.c\\le_adv_start_add_conn"
                                                        },
                                                        {
                                                            "name": "le_adv_update.constprop.0",
                                                            "size": 238,
                                                            "identifier": "subsys\\bluetooth\\host\\adv.c\\le_adv_update.constprop.0"
                                                        },
                                                        {
                                                            "name": "adv_timeout",
                                                            "size": 4,
                                                            "identifier": "subsys\\bluetooth\\host\\adv.c\\adv_timeout"
                                                        },
                                                        {
                                                            "name": "bt_le_adv_set_enable",
                                                            "size": 4,
                                                            "identifier": "subsys\\bluetooth\\host\\adv.c\\bt_le_adv_set_enable"
                                                        },
                                                        {
                                                            "name": "bt_le_adv_stop",
                                                            "size": 120,
                                                            "identifier": "subsys\\bluetooth\\host\\adv.c\\bt_le_adv_stop"
                                                        },
                                                        {
                                                            "name": "get_adv_name_type_param",
                                                            "size": 32,
                                                            "identifier": "subsys\\bluetooth\\host\\adv.c\\get_adv_name_type_param"
                                                        },
                                                        {
                                                            "name": "bt_le_adv_resume",
                                                            "size": 212,
                                                            "identifier": "subsys\\bluetooth\\host\\adv.c\\bt_le_adv_resume"
                                                        },
                                                        {
                                                            "name": "bt_le_adv_lookup_legacy",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\adv.c\\bt_le_adv_lookup_legacy"
                                                        },
                                                        {
                                                            "name": "log_const_bt_adv",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\adv.c\\log_const_bt_adv"
                                                        },
                                                        {
                                                            "name": "bt_le_adv_start_legacy",
                                                            "size": 592,
                                                            "identifier": "subsys\\bluetooth\\host\\adv.c\\bt_le_adv_start_legacy"
                                                        },
                                                        {
                                                            "name": "bt_le_lim_adv_cancel_timeout",
                                                            "size": 6,
                                                            "identifier": "subsys\\bluetooth\\host\\adv.c\\bt_le_lim_adv_cancel_timeout"
                                                        },
                                                        {
                                                            "name": "bt_le_adv_set_enable_legacy",
                                                            "size": 74,
                                                            "identifier": "subsys\\bluetooth\\host\\adv.c\\bt_le_adv_set_enable_legacy"
                                                        },
                                                        {
                                                            "name": "bt_le_adv_start",
                                                            "size": 100,
                                                            "identifier": "subsys\\bluetooth\\host\\adv.c\\bt_le_adv_start"
                                                        },
                                                        {
                                                            "name": "bt_le_ext_adv_foreach",
                                                            "size": 12,
                                                            "identifier": "subsys\\bluetooth\\host\\adv.c\\bt_le_ext_adv_foreach"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "ecc.c",
                                                    "size": 640,
                                                    "identifier": "subsys\\bluetooth\\host\\ecc.c",
                                                    "children": [
                                                        {
                                                            "name": "debug_public_key",
                                                            "size": 64,
                                                            "identifier": "subsys\\bluetooth\\host\\ecc.c\\debug_public_key"
                                                        },
                                                        {
                                                            "name": "log_const_bt_ecc",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\ecc.c\\log_const_bt_ecc"
                                                        },
                                                        {
                                                            "name": "bt_hci_evt_le_pkey_complete",
                                                            "size": 132,
                                                            "identifier": "subsys\\bluetooth\\host\\ecc.c\\bt_hci_evt_le_pkey_complete"
                                                        },
                                                        {
                                                            "name": "bt_pub_key_get",
                                                            "size": 32,
                                                            "identifier": "subsys\\bluetooth\\host\\ecc.c\\bt_pub_key_get"
                                                        },
                                                        {
                                                            "name": "bt_pub_key_gen",
                                                            "size": 212,
                                                            "identifier": "subsys\\bluetooth\\host\\ecc.c\\bt_pub_key_gen"
                                                        },
                                                        {
                                                            "name": "bt_hci_evt_le_dhkey_complete",
                                                            "size": 28,
                                                            "identifier": "subsys\\bluetooth\\host\\ecc.c\\bt_hci_evt_le_dhkey_complete"
                                                        },
                                                        {
                                                            "name": "bt_pub_key_is_debug",
                                                            "size": 24,
                                                            "identifier": "subsys\\bluetooth\\host\\ecc.c\\bt_pub_key_is_debug"
                                                        },
                                                        {
                                                            "name": "bt_dh_key_gen",
                                                            "size": 140,
                                                            "identifier": "subsys\\bluetooth\\host\\ecc.c\\bt_dh_key_gen"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "conn.c",
                                                    "size": 3836,
                                                    "identifier": "subsys\\bluetooth\\host\\conn.c",
                                                    "children": [
                                                        {
                                                            "name": "notify_connected",
                                                            "size": 60,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\notify_connected"
                                                        },
                                                        {
                                                            "name": "tx_notify",
                                                            "size": 96,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\tx_notify"
                                                        },
                                                        {
                                                            "name": "tx_complete_work",
                                                            "size": 6,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\tx_complete_work"
                                                        },
                                                        {
                                                            "name": "conn_tx_destroy",
                                                            "size": 44,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\conn_tx_destroy"
                                                        },
                                                        {
                                                            "name": "send_frag",
                                                            "size": 352,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\send_frag"
                                                        },
                                                        {
                                                            "name": "deferred_work",
                                                            "size": 172,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\deferred_work"
                                                        },
                                                        {
                                                            "name": "conn_cleanup",
                                                            "size": 70,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\conn_cleanup"
                                                        },
                                                        {
                                                            "name": "conn_change",
                                                            "size": 16,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\conn_change"
                                                        },
                                                        {
                                                            "name": "acl_tx_pool",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\acl_tx_pool"
                                                        },
                                                        {
                                                            "name": "send_conn_le_param_update",
                                                            "size": 108,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\send_conn_le_param_update"
                                                        },
                                                        {
                                                            "name": "frag_pool",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\frag_pool"
                                                        },
                                                        {
                                                            "name": "net_buf_fixed_alloc_frag_pool",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\net_buf_fixed_alloc_frag_pool"
                                                        },
                                                        {
                                                            "name": "net_buf_fixed_frag_pool",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\net_buf_fixed_frag_pool"
                                                        },
                                                        {
                                                            "name": "net_buf_fixed_alloc_acl_tx_pool",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\net_buf_fixed_alloc_acl_tx_pool"
                                                        },
                                                        {
                                                            "name": "net_buf_fixed_acl_tx_pool",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\net_buf_fixed_acl_tx_pool"
                                                        },
                                                        {
                                                            "name": "conn_lookup_handle",
                                                            "size": 68,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\conn_lookup_handle"
                                                        },
                                                        {
                                                            "name": "bt_conn_get_pkts",
                                                            "size": 24,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_get_pkts"
                                                        },
                                                        {
                                                            "name": "bt_conn_reset_rx_state",
                                                            "size": 18,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_reset_rx_state"
                                                        },
                                                        {
                                                            "name": "notify_le_param_updated",
                                                            "size": 136,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\notify_le_param_updated"
                                                        },
                                                        {
                                                            "name": "bt_conn_set_state",
                                                            "size": 380,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_set_state"
                                                        },
                                                        {
                                                            "name": "bt_conn_index",
                                                            "size": 24,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_index"
                                                        },
                                                        {
                                                            "name": "free_tx",
                                                            "size": 28,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\free_tx"
                                                        },
                                                        {
                                                            "name": "bt_conn_connected",
                                                            "size": 18,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_connected"
                                                        },
                                                        {
                                                            "name": "bt_conn_add_le",
                                                            "size": 60,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_add_le"
                                                        },
                                                        {
                                                            "name": "bt_conn_unref",
                                                            "size": 56,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_unref"
                                                        },
                                                        {
                                                            "name": "bt_conn_security_changed",
                                                            "size": 76,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_security_changed"
                                                        },
                                                        {
                                                            "name": "bt_conn_prepare_events",
                                                            "size": 148,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_prepare_events"
                                                        },
                                                        {
                                                            "name": "bt_conn_create_frag_timeout",
                                                            "size": 12,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_create_frag_timeout"
                                                        },
                                                        {
                                                            "name": "bt_conn_set_security",
                                                            "size": 96,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_set_security"
                                                        },
                                                        {
                                                            "name": "bt_conn_create_pdu_timeout",
                                                            "size": 36,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_create_pdu_timeout"
                                                        },
                                                        {
                                                            "name": "bt_conn_get_security",
                                                            "size": 4,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_get_security"
                                                        },
                                                        {
                                                            "name": "bt_conn_get_info",
                                                            "size": 176,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_get_info"
                                                        },
                                                        {
                                                            "name": "le_param_req",
                                                            "size": 116,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\le_param_req"
                                                        },
                                                        {
                                                            "name": "bt_conn_send_cb",
                                                            "size": 136,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_send_cb"
                                                        },
                                                        {
                                                            "name": "bt_conn_ref",
                                                            "size": 56,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_ref"
                                                        },
                                                        {
                                                            "name": "bt_conn_le_conn_update",
                                                            "size": 80,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_le_conn_update"
                                                        },
                                                        {
                                                            "name": "bt_conn_enc_key_size",
                                                            "size": 16,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_enc_key_size"
                                                        },
                                                        {
                                                            "name": "bt_conn_init",
                                                            "size": 68,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_init"
                                                        },
                                                        {
                                                            "name": "bt_conn_ltk_present",
                                                            "size": 46,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_ltk_present"
                                                        },
                                                        {
                                                            "name": "bt_conn_exists_le",
                                                            "size": 16,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_exists_le"
                                                        },
                                                        {
                                                            "name": "bt_conn_lookup_handle",
                                                            "size": 16,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_lookup_handle"
                                                        },
                                                        {
                                                            "name": "bt_conn_new",
                                                            "size": 100,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_new"
                                                        },
                                                        {
                                                            "name": "bt_conn_process_tx",
                                                            "size": 272,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_process_tx"
                                                        },
                                                        {
                                                            "name": "bt_conn_lookup_addr_le",
                                                            "size": 52,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_lookup_addr_le"
                                                        },
                                                        {
                                                            "name": "log_const_bt_conn",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\log_const_bt_conn"
                                                        },
                                                        {
                                                            "name": "bt_conn_disconnect",
                                                            "size": 64,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_disconnect"
                                                        },
                                                        {
                                                            "name": "bt_conn_recv",
                                                            "size": 154,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_recv"
                                                        },
                                                        {
                                                            "name": "bt_conn_lookup_state_le",
                                                            "size": 68,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_lookup_state_le"
                                                        },
                                                        {
                                                            "name": "bt_conn_is_peer_addr_le",
                                                            "size": 64,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_is_peer_addr_le"
                                                        },
                                                        {
                                                            "name": "bt_conn_identity_resolved",
                                                            "size": 92,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\bt_conn_identity_resolved"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "l2cap.c",
                                                    "size": 728,
                                                    "identifier": "subsys\\bluetooth\\host\\l2cap.c",
                                                    "children": [
                                                        {
                                                            "name": "l2cap_connected",
                                                            "size": 2,
                                                            "identifier": "subsys\\bluetooth\\host\\l2cap.c\\l2cap_connected"
                                                        },
                                                        {
                                                            "name": "l2cap_accept",
                                                            "size": 28,
                                                            "identifier": "subsys\\bluetooth\\host\\l2cap.c\\l2cap_accept"
                                                        },
                                                        {
                                                            "name": "l2cap_create_le_sig_pdu.constprop.0",
                                                            "size": 44,
                                                            "identifier": "subsys\\bluetooth\\host\\l2cap.c\\l2cap_create_le_sig_pdu.constprop.0"
                                                        },
                                                        {
                                                            "name": "l2cap_recv",
                                                            "size": 98,
                                                            "identifier": "subsys\\bluetooth\\host\\l2cap.c\\l2cap_recv"
                                                        },
                                                        {
                                                            "name": "le_fixed_chan",
                                                            "size": 12,
                                                            "identifier": "subsys\\bluetooth\\host\\l2cap.c\\le_fixed_chan"
                                                        },
                                                        {
                                                            "name": "log_const_bt_l2cap",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\l2cap.c\\log_const_bt_l2cap"
                                                        },
                                                        {
                                                            "name": "bt_l2cap_init",
                                                            "size": 2,
                                                            "identifier": "subsys\\bluetooth\\host\\l2cap.c\\bt_l2cap_init"
                                                        },
                                                        {
                                                            "name": "bt_l2cap_connected",
                                                            "size": 156,
                                                            "identifier": "subsys\\bluetooth\\host\\l2cap.c\\bt_l2cap_connected"
                                                        },
                                                        {
                                                            "name": "bt_l2cap_create_pdu_timeout",
                                                            "size": 6,
                                                            "identifier": "subsys\\bluetooth\\host\\l2cap.c\\bt_l2cap_create_pdu_timeout"
                                                        },
                                                        {
                                                            "name": "bt_l2cap_security_changed",
                                                            "size": 58,
                                                            "identifier": "subsys\\bluetooth\\host\\l2cap.c\\bt_l2cap_security_changed"
                                                        },
                                                        {
                                                            "name": "bt_l2cap_le_lookup_rx_cid",
                                                            "size": 20,
                                                            "identifier": "subsys\\bluetooth\\host\\l2cap.c\\bt_l2cap_le_lookup_rx_cid"
                                                        },
                                                        {
                                                            "name": "bt_l2cap_chan_del",
                                                            "size": 42,
                                                            "identifier": "subsys\\bluetooth\\host\\l2cap.c\\bt_l2cap_chan_del"
                                                        },
                                                        {
                                                            "name": "bt_l2cap_recv",
                                                            "size": 54,
                                                            "identifier": "subsys\\bluetooth\\host\\l2cap.c\\bt_l2cap_recv"
                                                        },
                                                        {
                                                            "name": "bt_l2cap_disconnected",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\l2cap.c\\bt_l2cap_disconnected"
                                                        },
                                                        {
                                                            "name": "bt_l2cap_update_conn_param",
                                                            "size": 100,
                                                            "identifier": "subsys\\bluetooth\\host\\l2cap.c\\bt_l2cap_update_conn_param"
                                                        },
                                                        {
                                                            "name": "bt_l2cap_send_cb",
                                                            "size": 50,
                                                            "identifier": "subsys\\bluetooth\\host\\l2cap.c\\bt_l2cap_send_cb"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "att.c",
                                                    "size": 6538,
                                                    "identifier": "subsys\\bluetooth\\host\\att.c",
                                                    "children": [
                                                        {
                                                            "name": "attr_read_type_cb",
                                                            "size": 32,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\attr_read_type_cb"
                                                        },
                                                        {
                                                            "name": "att_prepare_write_req",
                                                            "size": 4,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_prepare_write_req"
                                                        },
                                                        {
                                                            "name": "att_op_get_type",
                                                            "size": 116,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_op_get_type"
                                                        },
                                                        {
                                                            "name": "att_get",
                                                            "size": 42,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_get"
                                                        },
                                                        {
                                                            "name": "bt_att_released",
                                                            "size": 24,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\bt_att_released"
                                                        },
                                                        {
                                                            "name": "att_notify_mult",
                                                            "size": 18,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_notify_mult"
                                                        },
                                                        {
                                                            "name": "att_notify",
                                                            "size": 32,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_notify"
                                                        },
                                                        {
                                                            "name": "att_chan_mtu_updated",
                                                            "size": 102,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_chan_mtu_updated"
                                                        },
                                                        {
                                                            "name": "tx_meta_data_free",
                                                            "size": 28,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\tx_meta_data_free"
                                                        },
                                                        {
                                                            "name": "chan_send",
                                                            "size": 156,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\chan_send"
                                                        },
                                                        {
                                                            "name": "att_unknown",
                                                            "size": 20,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_unknown"
                                                        },
                                                        {
                                                            "name": "chan_req_send",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\chan_req_send"
                                                        },
                                                        {
                                                            "name": "bt_att_chan_send_rsp",
                                                            "size": 28,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\bt_att_chan_send_rsp"
                                                        },
                                                        {
                                                            "name": "write_cb",
                                                            "size": 98,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\write_cb"
                                                        },
                                                        {
                                                            "name": "find_type_cb",
                                                            "size": 296,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\find_type_cb"
                                                        },
                                                        {
                                                            "name": "attr_read_group_cb",
                                                            "size": 32,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\attr_read_group_cb"
                                                        },
                                                        {
                                                            "name": "find_info_cb",
                                                            "size": 160,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\find_info_cb"
                                                        },
                                                        {
                                                            "name": "process_queue",
                                                            "size": 50,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\process_queue"
                                                        },
                                                        {
                                                            "name": "att_chan_read",
                                                            "size": 278,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_chan_read"
                                                        },
                                                        {
                                                            "name": "read_group_cb",
                                                            "size": 172,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\read_group_cb"
                                                        },
                                                        {
                                                            "name": "read_type_cb",
                                                            "size": 160,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\read_type_cb"
                                                        },
                                                        {
                                                            "name": "read_cb",
                                                            "size": 70,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\read_cb"
                                                        },
                                                        {
                                                            "name": "read_vl_cb",
                                                            "size": 106,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\read_vl_cb"
                                                        },
                                                        {
                                                            "name": "bt_att_accept",
                                                            "size": 192,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\bt_att_accept"
                                                        },
                                                        {
                                                            "name": "bt_att_sent",
                                                            "size": 88,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\bt_att_sent"
                                                        },
                                                        {
                                                            "name": "att_req_send_process",
                                                            "size": 134,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_req_send_process"
                                                        },
                                                        {
                                                            "name": "bt_att_status",
                                                            "size": 64,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\bt_att_status"
                                                        },
                                                        {
                                                            "name": "bt_att_connected",
                                                            "size": 68,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\bt_att_connected"
                                                        },
                                                        {
                                                            "name": "att_timeout",
                                                            "size": 6,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_timeout"
                                                        },
                                                        {
                                                            "name": "att_tx_complete",
                                                            "size": 64,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_tx_complete"
                                                        },
                                                        {
                                                            "name": "att_req_sent",
                                                            "size": 38,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_req_sent"
                                                        },
                                                        {
                                                            "name": "att_cfm_sent",
                                                            "size": 30,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_cfm_sent"
                                                        },
                                                        {
                                                            "name": "att_rsp_sent",
                                                            "size": 30,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_rsp_sent"
                                                        },
                                                        {
                                                            "name": "att_indicate",
                                                            "size": 52,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_indicate"
                                                        },
                                                        {
                                                            "name": "send_err_rsp.part.0",
                                                            "size": 58,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\send_err_rsp.part.0"
                                                        },
                                                        {
                                                            "name": "bt_att_recv",
                                                            "size": 216,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\bt_att_recv"
                                                        },
                                                        {
                                                            "name": "handlers",
                                                            "size": 240,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\handlers"
                                                        },
                                                        {
                                                            "name": "att_write_rsp.constprop.0",
                                                            "size": 200,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_write_rsp.constprop.0"
                                                        },
                                                        {
                                                            "name": "att_write_req",
                                                            "size": 38,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_write_req"
                                                        },
                                                        {
                                                            "name": "att_write_cmd",
                                                            "size": 38,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_write_cmd"
                                                        },
                                                        {
                                                            "name": "att_read_group_req",
                                                            "size": 252,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_read_group_req"
                                                        },
                                                        {
                                                            "name": "att_read_mult_vl_req",
                                                            "size": 168,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_read_mult_vl_req"
                                                        },
                                                        {
                                                            "name": "att_read_mult_req",
                                                            "size": 168,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_read_mult_req"
                                                        },
                                                        {
                                                            "name": "att_read_rsp",
                                                            "size": 160,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_read_rsp"
                                                        },
                                                        {
                                                            "name": "att_read_blob_req",
                                                            "size": 24,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_read_blob_req"
                                                        },
                                                        {
                                                            "name": "att_read_req",
                                                            "size": 24,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_read_req"
                                                        },
                                                        {
                                                            "name": "att_read_type_req",
                                                            "size": 196,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_read_type_req"
                                                        },
                                                        {
                                                            "name": "att_find_type_req",
                                                            "size": 208,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_find_type_req"
                                                        },
                                                        {
                                                            "name": "att_find_info_req",
                                                            "size": 120,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_find_info_req"
                                                        },
                                                        {
                                                            "name": "att_mtu_req",
                                                            "size": 132,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_mtu_req"
                                                        },
                                                        {
                                                            "name": "att_handle_rsp",
                                                            "size": 108,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_handle_rsp"
                                                        },
                                                        {
                                                            "name": "att_handle_find_info_rsp",
                                                            "size": 10,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_handle_find_info_rsp"
                                                        },
                                                        {
                                                            "name": "att_mtu_rsp",
                                                            "size": 56,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_mtu_rsp"
                                                        },
                                                        {
                                                            "name": "att_error_rsp",
                                                            "size": 100,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_error_rsp"
                                                        },
                                                        {
                                                            "name": "bt_att_encrypt_change",
                                                            "size": 130,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\bt_att_encrypt_change"
                                                        },
                                                        {
                                                            "name": "bt_att_disconnected",
                                                            "size": 208,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\bt_att_disconnected"
                                                        },
                                                        {
                                                            "name": "bt_att_chan_create_pdu",
                                                            "size": 120,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\bt_att_chan_create_pdu"
                                                        },
                                                        {
                                                            "name": "bt_att_send",
                                                            "size": 124,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\bt_att_send"
                                                        },
                                                        {
                                                            "name": "bt_att_req_free",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\bt_att_req_free"
                                                        },
                                                        {
                                                            "name": "bt_att_req_cancel",
                                                            "size": 88,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\bt_att_req_cancel"
                                                        },
                                                        {
                                                            "name": "bt_att_create_pdu",
                                                            "size": 72,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\bt_att_create_pdu"
                                                        },
                                                        {
                                                            "name": "bt_att_set_tx_meta_data",
                                                            "size": 14,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\bt_att_set_tx_meta_data"
                                                        },
                                                        {
                                                            "name": "z_att_fixed_chan",
                                                            "size": 12,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\z_att_fixed_chan"
                                                        },
                                                        {
                                                            "name": "req_slab",
                                                            "size": 32,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\req_slab"
                                                        },
                                                        {
                                                            "name": "log_const_bt_att",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\log_const_bt_att"
                                                        },
                                                        {
                                                            "name": "bt_att_req_send",
                                                            "size": 42,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\bt_att_req_send"
                                                        },
                                                        {
                                                            "name": "chan_slab",
                                                            "size": 32,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\chan_slab"
                                                        },
                                                        {
                                                            "name": "bt_att_init",
                                                            "size": 56,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\bt_att_init"
                                                        },
                                                        {
                                                            "name": "att_slab",
                                                            "size": 32,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_slab"
                                                        },
                                                        {
                                                            "name": "att_sent",
                                                            "size": 14,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_sent"
                                                        },
                                                        {
                                                            "name": "bt_att_find_req_by_user_data",
                                                            "size": 52,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\bt_att_find_req_by_user_data"
                                                        },
                                                        {
                                                            "name": "free_att_tx_meta_data",
                                                            "size": 28,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\free_att_tx_meta_data"
                                                        },
                                                        {
                                                            "name": "bt_att_req_alloc",
                                                            "size": 72,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\bt_att_req_alloc"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "smp.c",
                                                    "size": 5316,
                                                    "identifier": "subsys\\bluetooth\\host\\smp.c",
                                                    "children": [
                                                        {
                                                            "name": "handlers",
                                                            "size": 120,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\handlers"
                                                        },
                                                        {
                                                            "name": "smp_encrypt_info",
                                                            "size": 4,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\smp_encrypt_info"
                                                        },
                                                        {
                                                            "name": "bt_smp_accept",
                                                            "size": 36,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\bt_smp_accept"
                                                        },
                                                        {
                                                            "name": "smp_chan_get",
                                                            "size": 14,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\smp_chan_get"
                                                        },
                                                        {
                                                            "name": "smp_find",
                                                            "size": 28,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\smp_find"
                                                        },
                                                        {
                                                            "name": "update_keys_check",
                                                            "size": 66,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\update_keys_check"
                                                        },
                                                        {
                                                            "name": "latch_auth_cb",
                                                            "size": 60,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\latch_auth_cb"
                                                        },
                                                        {
                                                            "name": "get_io_capa",
                                                            "size": 76,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\get_io_capa"
                                                        },
                                                        {
                                                            "name": "get_auth",
                                                            "size": 60,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\get_auth"
                                                        },
                                                        {
                                                            "name": "bondable",
                                                            "size": 1,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\bondable"
                                                        },
                                                        {
                                                            "name": "smp_send.constprop.0",
                                                            "size": 56,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\smp_send.constprop.0"
                                                        },
                                                        {
                                                            "name": "smp_keypress_notif",
                                                            "size": 12,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\smp_keypress_notif"
                                                        },
                                                        {
                                                            "name": "smp_init",
                                                            "size": 56,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\smp_init"
                                                        },
                                                        {
                                                            "name": "smp_dhkey_generate",
                                                            "size": 44,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\smp_dhkey_generate"
                                                        },
                                                        {
                                                            "name": "bt_smp_dhkey_ready",
                                                            "size": 144,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\bt_smp_dhkey_ready"
                                                        },
                                                        {
                                                            "name": "smp_ident_info",
                                                            "size": 74,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\smp_ident_info"
                                                        },
                                                        {
                                                            "name": "smp_create_pdu.constprop.0",
                                                            "size": 62,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\smp_create_pdu.constprop.0"
                                                        },
                                                        {
                                                            "name": "smp_pairing_req",
                                                            "size": 476,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\smp_pairing_req"
                                                        },
                                                        {
                                                            "name": "gen_method_sc",
                                                            "size": 25,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\gen_method_sc"
                                                        },
                                                        {
                                                            "name": "smp_send_pairing_random",
                                                            "size": 58,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\smp_send_pairing_random"
                                                        },
                                                        {
                                                            "name": "smp_pairing_random",
                                                            "size": 344,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\smp_pairing_random"
                                                        },
                                                        {
                                                            "name": "compute_and_check_and_send_periph_dhcheck",
                                                            "size": 342,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\compute_and_check_and_send_periph_dhcheck"
                                                        },
                                                        {
                                                            "name": "smp_dhkey_check",
                                                            "size": 92,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\smp_dhkey_check"
                                                        },
                                                        {
                                                            "name": "smp_send_pairing_confirm",
                                                            "size": 120,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\smp_send_pairing_confirm"
                                                        },
                                                        {
                                                            "name": "smp_pairing_confirm",
                                                            "size": 92,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\smp_pairing_confirm"
                                                        },
                                                        {
                                                            "name": "smp_public_key_periph",
                                                            "size": 312,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\smp_public_key_periph"
                                                        },
                                                        {
                                                            "name": "smp_public_key",
                                                            "size": 152,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\smp_public_key"
                                                        },
                                                        {
                                                            "name": "smp_reset",
                                                            "size": 70,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\smp_reset"
                                                        },
                                                        {
                                                            "name": "bt_smp_connected",
                                                            "size": 56,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\bt_smp_connected"
                                                        },
                                                        {
                                                            "name": "smp_timeout",
                                                            "size": 28,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\smp_timeout"
                                                        },
                                                        {
                                                            "name": "sc_local_pkey_ready",
                                                            "size": 24,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\sc_local_pkey_ready"
                                                        },
                                                        {
                                                            "name": "smp_pairing_complete",
                                                            "size": 252,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\smp_pairing_complete"
                                                        },
                                                        {
                                                            "name": "smp_error",
                                                            "size": 146,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\smp_error"
                                                        },
                                                        {
                                                            "name": "bt_smp_recv",
                                                            "size": 132,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\bt_smp_recv"
                                                        },
                                                        {
                                                            "name": "bt_smp_pkey_ready",
                                                            "size": 64,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\bt_smp_pkey_ready"
                                                        },
                                                        {
                                                            "name": "smp_ident_addr_info",
                                                            "size": 252,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\smp_ident_addr_info"
                                                        },
                                                        {
                                                            "name": "smp_pairing_failed",
                                                            "size": 74,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\smp_pairing_failed"
                                                        },
                                                        {
                                                            "name": "bt_smp_encrypt_change",
                                                            "size": 236,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\bt_smp_encrypt_change"
                                                        },
                                                        {
                                                            "name": "bt_smp_disconnected",
                                                            "size": 100,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\bt_smp_disconnected"
                                                        },
                                                        {
                                                            "name": "bt_smp_request_ltk",
                                                            "size": 228,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\bt_smp_request_ltk"
                                                        },
                                                        {
                                                            "name": "bt_smp_init",
                                                            "size": 56,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\bt_smp_init"
                                                        },
                                                        {
                                                            "name": "smp_fixed_chan",
                                                            "size": 12,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\smp_fixed_chan"
                                                        },
                                                        {
                                                            "name": "bt_smp_start_security",
                                                            "size": 396,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\bt_smp_start_security"
                                                        },
                                                        {
                                                            "name": "log_const_bt_smp",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\log_const_bt_smp"
                                                        },
                                                        {
                                                            "name": "bt_smp_update_keys",
                                                            "size": 256,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\bt_smp_update_keys"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "gatt.c",
                                                    "size": 6660,
                                                    "identifier": "subsys\\bluetooth\\host\\gatt.c",
                                                    "children": [
                                                        {
                                                            "name": "gatt_ccc_changed",
                                                            "size": 28,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\gatt_ccc_changed"
                                                        },
                                                        {
                                                            "name": "gatt_indicate_rsp",
                                                            "size": 38,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\gatt_indicate_rsp"
                                                        },
                                                        {
                                                            "name": "match_uuid",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\match_uuid"
                                                        },
                                                        {
                                                            "name": "gatt_mtu_rsp",
                                                            "size": 6,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\gatt_mtu_rsp"
                                                        },
                                                        {
                                                            "name": "find_sc_cfg",
                                                            "size": 64,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\find_sc_cfg"
                                                        },
                                                        {
                                                            "name": "gatt_foreach_iter",
                                                            "size": 76,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\gatt_foreach_iter"
                                                        },
                                                        {
                                                            "name": "find_ccc_cfg",
                                                            "size": 72,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\find_ccc_cfg"
                                                        },
                                                        {
                                                            "name": "gatt_sub_find",
                                                            "size": 92,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\gatt_sub_find"
                                                        },
                                                        {
                                                            "name": "gatt_exchange_mtu_encode",
                                                            "size": 22,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\gatt_exchange_mtu_encode"
                                                        },
                                                        {
                                                            "name": "write_name",
                                                            "size": 68,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\write_name"
                                                        },
                                                        {
                                                            "name": "sc_save",
                                                            "size": 72,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\sc_save"
                                                        },
                                                        {
                                                            "name": "gatt_sub_remove",
                                                            "size": 72,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\gatt_sub_remove"
                                                        },
                                                        {
                                                            "name": "clear_sc_cfg",
                                                            "size": 10,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\clear_sc_cfg"
                                                        },
                                                        {
                                                            "name": "sc_clear",
                                                            "size": 36,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\sc_clear"
                                                        },
                                                        {
                                                            "name": "sc_ccc_cfg_write",
                                                            "size": 30,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\sc_ccc_cfg_write"
                                                        },
                                                        {
                                                            "name": "sc_restore_rsp",
                                                            "size": 22,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\sc_restore_rsp"
                                                        },
                                                        {
                                                            "name": "bt_gatt_service_init",
                                                            "size": 60,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\bt_gatt_service_init"
                                                        },
                                                        {
                                                            "name": "sc_indicate_rsp",
                                                            "size": 60,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\sc_indicate_rsp"
                                                        },
                                                        {
                                                            "name": "gatt_write_ccc_buf",
                                                            "size": 42,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\gatt_write_ccc_buf"
                                                        },
                                                        {
                                                            "name": "gatt_write_ccc_rsp",
                                                            "size": 138,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\gatt_write_ccc_rsp"
                                                        },
                                                        {
                                                            "name": "gatt_req_send.constprop.0",
                                                            "size": 128,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\gatt_req_send.constprop.0"
                                                        },
                                                        {
                                                            "name": "gatt_write_ccc",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\gatt_write_ccc"
                                                        },
                                                        {
                                                            "name": "disconnected_cb",
                                                            "size": 180,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\disconnected_cb"
                                                        },
                                                        {
                                                            "name": "sc_ccc",
                                                            "size": 36,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\sc_ccc"
                                                        },
                                                        {
                                                            "name": "sc_process",
                                                            "size": 104,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\sc_process"
                                                        },
                                                        {
                                                            "name": "read_appearance",
                                                            "size": 52,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\read_appearance"
                                                        },
                                                        {
                                                            "name": "read_name",
                                                            "size": 52,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\read_name"
                                                        },
                                                        {
                                                            "name": "gatt_indicate",
                                                            "size": 188,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\gatt_indicate"
                                                        },
                                                        {
                                                            "name": "notify_cb",
                                                            "size": 280,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\notify_cb"
                                                        },
                                                        {
                                                            "name": "update_ccc",
                                                            "size": 228,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\update_ccc"
                                                        },
                                                        {
                                                            "name": "gatt_notify",
                                                            "size": 128,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\gatt_notify"
                                                        },
                                                        {
                                                            "name": "bt_gatt_change_aware",
                                                            "size": 4,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\bt_gatt_change_aware"
                                                        },
                                                        {
                                                            "name": "bt_gatt_attr_read",
                                                            "size": 46,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\bt_gatt_attr_read"
                                                        },
                                                        {
                                                            "name": "__aeabi_dsub",
                                                            "size": 634,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\__aeabi_dsub"
                                                        },
                                                        {
                                                            "name": "_2_gap_svc",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\_2_gap_svc"
                                                        },
                                                        {
                                                            "name": "bt_gatt_init",
                                                            "size": 56,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\bt_gatt_init"
                                                        },
                                                        {
                                                            "name": "bt_gatt_check_perm",
                                                            "size": 116,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\bt_gatt_check_perm"
                                                        },
                                                        {
                                                            "name": "bt_gatt_notification",
                                                            "size": 102,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\bt_gatt_notification"
                                                        },
                                                        {
                                                            "name": "bt_gatt_attr_value_handle",
                                                            "size": 58,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\bt_gatt_attr_value_handle"
                                                        },
                                                        {
                                                            "name": "attr__2_gap_svc",
                                                            "size": 100,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\attr__2_gap_svc"
                                                        },
                                                        {
                                                            "name": "bt_gatt_attr_read_service",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\bt_gatt_attr_read_service"
                                                        },
                                                        {
                                                            "name": "attr__1_gatt_svc",
                                                            "size": 80,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\attr__1_gatt_svc"
                                                        },
                                                        {
                                                            "name": "bt_gatt_notify_cb",
                                                            "size": 232,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\bt_gatt_notify_cb"
                                                        },
                                                        {
                                                            "name": "bt_gatt_exchange_mtu",
                                                            "size": 96,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\bt_gatt_exchange_mtu"
                                                        },
                                                        {
                                                            "name": "bt_gatt_cancel",
                                                            "size": 62,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\bt_gatt_cancel"
                                                        },
                                                        {
                                                            "name": "bt_gatt_foreach_attr_type",
                                                            "size": 244,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\bt_gatt_foreach_attr_type"
                                                        },
                                                        {
                                                            "name": "bt_gatt_connected",
                                                            "size": 52,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\bt_gatt_connected"
                                                        },
                                                        {
                                                            "name": "bt_gatt_mult_notification",
                                                            "size": 164,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\bt_gatt_mult_notification"
                                                        },
                                                        {
                                                            "name": "bt_gatt_attr_read_chrc",
                                                            "size": 100,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\bt_gatt_attr_read_chrc"
                                                        },
                                                        {
                                                            "name": "bt_gatt_attr_read_ccc",
                                                            "size": 58,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\bt_gatt_attr_read_ccc"
                                                        },
                                                        {
                                                            "name": "bt_gatt_is_subscribed",
                                                            "size": 282,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\bt_gatt_is_subscribed"
                                                        },
                                                        {
                                                            "name": "bt_gatt_encrypt_change",
                                                            "size": 100,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\bt_gatt_encrypt_change"
                                                        },
                                                        {
                                                            "name": "bt_gatt_unsubscribe",
                                                            "size": 188,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\bt_gatt_unsubscribe"
                                                        },
                                                        {
                                                            "name": "_1_gatt_svc",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\_1_gatt_svc"
                                                        },
                                                        {
                                                            "name": "bt_gatt_att_max_mtu_changed",
                                                            "size": 40,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\bt_gatt_att_max_mtu_changed"
                                                        },
                                                        {
                                                            "name": "bt_gatt_disconnected",
                                                            "size": 164,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\bt_gatt_disconnected"
                                                        },
                                                        {
                                                            "name": "bt_gatt_attr_write_ccc",
                                                            "size": 168,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\bt_gatt_attr_write_ccc"
                                                        },
                                                        {
                                                            "name": "bt_gatt_attr_next",
                                                            "size": 36,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\bt_gatt_attr_next"
                                                        },
                                                        {
                                                            "name": "__adddf3",
                                                            "size": 630,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\__adddf3"
                                                        },
                                                        {
                                                            "name": "bt_gatt_indicate",
                                                            "size": 240,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\bt_gatt_indicate"
                                                        },
                                                        {
                                                            "name": "bt_gatt_attr_get_handle",
                                                            "size": 96,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\bt_gatt_attr_get_handle"
                                                        },
                                                        {
                                                            "name": "log_const_bt_gatt",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\log_const_bt_gatt"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "addr.c",
                                                    "size": 58,
                                                    "identifier": "subsys\\bluetooth\\host\\addr.c",
                                                    "children": [
                                                        {
                                                            "name": "bt_addr_le_create_static",
                                                            "size": 28,
                                                            "identifier": "subsys\\bluetooth\\host\\addr.c\\bt_addr_le_create_static"
                                                        },
                                                        {
                                                            "name": "bt_addr_le_copy_resolved",
                                                            "size": 22,
                                                            "identifier": "subsys\\bluetooth\\host\\addr.c\\bt_addr_le_copy_resolved"
                                                        },
                                                        {
                                                            "name": "bt_addr_le_is_resolved",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\addr.c\\bt_addr_le_is_resolved"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "keys.c",
                                                    "size": 404,
                                                    "identifier": "subsys\\bluetooth\\host\\keys.c",
                                                    "children": [
                                                        {
                                                            "name": "bt_keys_find",
                                                            "size": 56,
                                                            "identifier": "subsys\\bluetooth\\host\\keys.c\\bt_keys_find"
                                                        },
                                                        {
                                                            "name": "bt_keys_get_type",
                                                            "size": 32,
                                                            "identifier": "subsys\\bluetooth\\host\\keys.c\\bt_keys_get_type"
                                                        },
                                                        {
                                                            "name": "bt_keys_find_irk",
                                                            "size": 132,
                                                            "identifier": "subsys\\bluetooth\\host\\keys.c\\bt_keys_find_irk"
                                                        },
                                                        {
                                                            "name": "bt_keys_clear",
                                                            "size": 28,
                                                            "identifier": "subsys\\bluetooth\\host\\keys.c\\bt_keys_clear"
                                                        },
                                                        {
                                                            "name": "bt_keys_get_addr",
                                                            "size": 76,
                                                            "identifier": "subsys\\bluetooth\\host\\keys.c\\bt_keys_get_addr"
                                                        },
                                                        {
                                                            "name": "bt_keys_foreach_type",
                                                            "size": 28,
                                                            "identifier": "subsys\\bluetooth\\host\\keys.c\\bt_keys_foreach_type"
                                                        },
                                                        {
                                                            "name": "bt_keys_add_type",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\keys.c\\bt_keys_add_type"
                                                        },
                                                        {
                                                            "name": "log_const_bt_keys",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\keys.c\\log_const_bt_keys"
                                                        },
                                                        {
                                                            "name": "bt_keys_find_addr",
                                                            "size": 36,
                                                            "identifier": "subsys\\bluetooth\\host\\keys.c\\bt_keys_find_addr"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "data.c",
                                                    "size": 8,
                                                    "identifier": "subsys\\bluetooth\\host\\data.c",
                                                    "children": [
                                                        {
                                                            "name": "log_const_bt_data",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\data.c\\log_const_bt_data"
                                                        }
                                                    ]
                                                }
                                            ]
                                        },
                                        {
                                            "name": "services",
                                            "size": 594,
                                            "identifier": "subsys\\bluetooth\\services",
                                            "children": [
                                                {
                                                    "name": "dis.c",
                                                    "size": 363,
                                                    "identifier": "subsys\\bluetooth\\services\\dis.c",
                                                    "children": [
                                                        {
                                                            "name": "read_pnp_id",
                                                            "size": 28,
                                                            "identifier": "subsys\\bluetooth\\services\\dis.c\\read_pnp_id"
                                                        },
                                                        {
                                                            "name": "dis_pnp_id",
                                                            "size": 7,
                                                            "identifier": "subsys\\bluetooth\\services\\dis.c\\dis_pnp_id"
                                                        },
                                                        {
                                                            "name": "read_str",
                                                            "size": 52,
                                                            "identifier": "subsys\\bluetooth\\services\\dis.c\\read_str"
                                                        },
                                                        {
                                                            "name": "attr_dis_svc",
                                                            "size": 260,
                                                            "identifier": "subsys\\bluetooth\\services\\dis.c\\attr_dis_svc"
                                                        },
                                                        {
                                                            "name": "dis_svc",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\services\\dis.c\\dis_svc"
                                                        },
                                                        {
                                                            "name": "log_const_bt_dis",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\services\\dis.c\\log_const_bt_dis"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "bas.c",
                                                    "size": 231,
                                                    "identifier": "subsys\\bluetooth\\services\\bas.c",
                                                    "children": [
                                                        {
                                                            "name": "blvl_ccc_cfg_changed",
                                                            "size": 2,
                                                            "identifier": "subsys\\bluetooth\\services\\bas.c\\blvl_ccc_cfg_changed"
                                                        },
                                                        {
                                                            "name": "bas_init",
                                                            "size": 4,
                                                            "identifier": "subsys\\bluetooth\\services\\bas.c\\bas_init"
                                                        },
                                                        {
                                                            "name": "read_blvl",
                                                            "size": 40,
                                                            "identifier": "subsys\\bluetooth\\services\\bas.c\\read_blvl"
                                                        },
                                                        {
                                                            "name": "battery_level",
                                                            "size": 1,
                                                            "identifier": "subsys\\bluetooth\\services\\bas.c\\battery_level"
                                                        },
                                                        {
                                                            "name": "__init_bas_init",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\services\\bas.c\\__init_bas_init"
                                                        },
                                                        {
                                                            "name": "bt_bas_set_battery_level",
                                                            "size": 80,
                                                            "identifier": "subsys\\bluetooth\\services\\bas.c\\bt_bas_set_battery_level"
                                                        },
                                                        {
                                                            "name": "bas",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\services\\bas.c\\bas"
                                                        },
                                                        {
                                                            "name": "log_const_bas",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\services\\bas.c\\log_const_bas"
                                                        },
                                                        {
                                                            "name": "attr_bas",
                                                            "size": 80,
                                                            "identifier": "subsys\\bluetooth\\services\\bas.c\\attr_bas"
                                                        }
                                                    ]
                                                }
                                            ]
                                        },
                                        {
                                            "name": "common",
                                            "size": 106,
                                            "identifier": "subsys\\bluetooth\\common",
                                            "children": [
                                                {
                                                    "name": "rpa.c",
                                                    "size": 106,
                                                    "identifier": "subsys\\bluetooth\\common\\rpa.c",
                                                    "children": [
                                                        {
                                                            "name": "ah",
                                                            "size": 60,
                                                            "identifier": "subsys\\bluetooth\\common\\rpa.c\\ah"
                                                        },
                                                        {
                                                            "name": "log_const_bt_rpa",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\common\\rpa.c\\log_const_bt_rpa"
                                                        },
                                                        {
                                                            "name": "bt_rpa_irk_matches",
                                                            "size": 38,
                                                            "identifier": "subsys\\bluetooth\\common\\rpa.c\\bt_rpa_irk_matches"
                                                        }
                                                    ]
                                                }
                                            ]
                                        },
                                        {
                                            "name": "crypto",
                                            "size": 602,
                                            "identifier": "subsys\\bluetooth\\crypto",
                                            "children": [
                                                {
                                                    "name": "bt_crypto.c",
                                                    "size": 602,
                                                    "identifier": "subsys\\bluetooth\\crypto\\bt_crypto.c",
                                                    "children": [
                                                        {
                                                            "name": "bt_crypto_f5",
                                                            "size": 208,
                                                            "identifier": "subsys\\bluetooth\\crypto\\bt_crypto.c\\bt_crypto_f5"
                                                        },
                                                        {
                                                            "name": "bt_crypto_f6",
                                                            "size": 160,
                                                            "identifier": "subsys\\bluetooth\\crypto\\bt_crypto.c\\bt_crypto_f6"
                                                        },
                                                        {
                                                            "name": "bt_crypto_f4",
                                                            "size": 74,
                                                            "identifier": "subsys\\bluetooth\\crypto\\bt_crypto.c\\bt_crypto_f4"
                                                        },
                                                        {
                                                            "name": "bt_crypto_g2",
                                                            "size": 92,
                                                            "identifier": "subsys\\bluetooth\\crypto\\bt_crypto.c\\bt_crypto_g2"
                                                        },
                                                        {
                                                            "name": "log_const_bt_crypto",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\crypto\\bt_crypto.c\\log_const_bt_crypto"
                                                        },
                                                        {
                                                            "name": "bt_crypto_aes_cmac",
                                                            "size": 60,
                                                            "identifier": "subsys\\bluetooth\\crypto\\bt_crypto.c\\bt_crypto_aes_cmac"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "pm",
                                    "size": 1252,
                                    "identifier": "subsys\\pm",
                                    "children": [
                                        {
                                            "name": "pm.c",
                                            "size": 844,
                                            "identifier": "subsys\\pm\\pm.c",
                                            "children": [
                                                {
                                                    "name": "pm_state_notify",
                                                    "size": 92,
                                                    "identifier": "subsys\\pm\\pm.c\\pm_state_notify"
                                                },
                                                {
                                                    "name": "pm_resume_devices",
                                                    "size": 44,
                                                    "identifier": "subsys\\pm\\pm.c\\pm_resume_devices"
                                                },
                                                {
                                                    "name": "z_cpus_active",
                                                    "size": 4,
                                                    "identifier": "subsys\\pm\\pm.c\\z_cpus_active"
                                                },
                                                {
                                                    "name": "pm_system_resume",
                                                    "size": 120,
                                                    "identifier": "subsys\\pm\\pm.c\\pm_system_resume"
                                                },
                                                {
                                                    "name": "log_const_pm",
                                                    "size": 8,
                                                    "identifier": "subsys\\pm\\pm.c\\log_const_pm"
                                                },
                                                {
                                                    "name": "pm_state_force",
                                                    "size": 48,
                                                    "identifier": "subsys\\pm\\pm.c\\pm_state_force"
                                                },
                                                {
                                                    "name": "pm_system_suspend",
                                                    "size": 476,
                                                    "identifier": "subsys\\pm\\pm.c\\pm_system_suspend"
                                                },
                                                {
                                                    "name": "pm_notifier_register",
                                                    "size": 52,
                                                    "identifier": "subsys\\pm\\pm.c\\pm_notifier_register"
                                                }
                                            ]
                                        },
                                        {
                                            "name": "policy.c",
                                            "size": 152,
                                            "identifier": "subsys\\pm\\policy.c",
                                            "children": [
                                                {
                                                    "name": "max_latency_ticks",
                                                    "size": 4,
                                                    "identifier": "subsys\\pm\\policy.c\\max_latency_ticks"
                                                },
                                                {
                                                    "name": "pm_policy_next_state",
                                                    "size": 148,
                                                    "identifier": "subsys\\pm\\policy.c\\pm_policy_next_state"
                                                }
                                            ]
                                        },
                                        {
                                            "name": "device.c",
                                            "size": 240,
                                            "identifier": "subsys\\pm\\device.c",
                                            "children": [
                                                {
                                                    "name": "action_target_state",
                                                    "size": 4,
                                                    "identifier": "subsys\\pm\\device.c\\action_target_state"
                                                },
                                                {
                                                    "name": "action_expected_state",
                                                    "size": 4,
                                                    "identifier": "subsys\\pm\\device.c\\action_expected_state"
                                                },
                                                {
                                                    "name": "pm_device_is_busy",
                                                    "size": 20,
                                                    "identifier": "subsys\\pm\\device.c\\pm_device_is_busy"
                                                },
                                                {
                                                    "name": "log_const_pm_device",
                                                    "size": 8,
                                                    "identifier": "subsys\\pm\\device.c\\log_const_pm_device"
                                                },
                                                {
                                                    "name": "pm_device_wakeup_is_enabled",
                                                    "size": 20,
                                                    "identifier": "subsys\\pm\\device.c\\pm_device_wakeup_is_enabled"
                                                },
                                                {
                                                    "name": "pm_device_state_is_locked",
                                                    "size": 20,
                                                    "identifier": "subsys\\pm\\device.c\\pm_device_state_is_locked"
                                                },
                                                {
                                                    "name": "pm_device_action_run",
                                                    "size": 164,
                                                    "identifier": "subsys\\pm\\device.c\\pm_device_action_run"
                                                }
                                            ]
                                        },
                                        {
                                            "name": "state.c",
                                            "size": 16,
                                            "identifier": "subsys\\pm\\state.c",
                                            "children": [
                                                {
                                                    "name": "pm_state_cpu_get_all",
                                                    "size": 16,
                                                    "identifier": "subsys\\pm\\state.c\\pm_state_cpu_get_all"
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "random",
                                    "size": 32,
                                    "identifier": "subsys\\random",
                                    "children": [
                                        {
                                            "name": "rand32_xoshiro128.c",
                                            "size": 32,
                                            "identifier": "subsys\\random\\rand32_xoshiro128.c",
                                            "children": [
                                                {
                                                    "name": "xoshiro128_initialize",
                                                    "size": 24,
                                                    "identifier": "subsys\\random\\rand32_xoshiro128.c\\xoshiro128_initialize"
                                                },
                                                {
                                                    "name": "__init_xoshiro128_initialize",
                                                    "size": 8,
                                                    "identifier": "subsys\\random\\rand32_xoshiro128.c\\__init_xoshiro128_initialize"
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "net",
                                    "size": 880,
                                    "identifier": "subsys\\net",
                                    "children": [
                                        {
                                            "name": "buf.c",
                                            "size": 698,
                                            "identifier": "subsys\\net\\buf.c",
                                            "children": [
                                                {
                                                    "name": "fixed_data_unref",
                                                    "size": 2,
                                                    "identifier": "subsys\\net\\buf.c\\fixed_data_unref"
                                                },
                                                {
                                                    "name": "fixed_data_alloc",
                                                    "size": 48,
                                                    "identifier": "subsys\\net\\buf.c\\fixed_data_alloc"
                                                },
                                                {
                                                    "name": "net_buf_alloc_len",
                                                    "size": 300,
                                                    "identifier": "subsys\\net\\buf.c\\net_buf_alloc_len"
                                                },
                                                {
                                                    "name": "net_buf_unref",
                                                    "size": 104,
                                                    "identifier": "subsys\\net\\buf.c\\net_buf_unref"
                                                },
                                                {
                                                    "name": "net_buf_frag_add",
                                                    "size": 34,
                                                    "identifier": "subsys\\net\\buf.c\\net_buf_frag_add"
                                                },
                                                {
                                                    "name": "net_buf_alloc_fixed",
                                                    "size": 10,
                                                    "identifier": "subsys\\net\\buf.c\\net_buf_alloc_fixed"
                                                },
                                                {
                                                    "name": "net_buf_get",
                                                    "size": 4,
                                                    "identifier": "subsys\\net\\buf.c\\net_buf_get"
                                                },
                                                {
                                                    "name": "net_buf_frag_insert",
                                                    "size": 22,
                                                    "identifier": "subsys\\net\\buf.c\\net_buf_frag_insert"
                                                },
                                                {
                                                    "name": "net_buf_id",
                                                    "size": 36,
                                                    "identifier": "subsys\\net\\buf.c\\net_buf_id"
                                                },
                                                {
                                                    "name": "net_buf_slist_get",
                                                    "size": 46,
                                                    "identifier": "subsys\\net\\buf.c\\net_buf_slist_get"
                                                },
                                                {
                                                    "name": "net_buf_pool_get",
                                                    "size": 16,
                                                    "identifier": "subsys\\net\\buf.c\\net_buf_pool_get"
                                                },
                                                {
                                                    "name": "net_buf_frag_last",
                                                    "size": 12,
                                                    "identifier": "subsys\\net\\buf.c\\net_buf_frag_last"
                                                },
                                                {
                                                    "name": "net_buf_ref",
                                                    "size": 8,
                                                    "identifier": "subsys\\net\\buf.c\\net_buf_ref"
                                                },
                                                {
                                                    "name": "net_buf_slist_put",
                                                    "size": 44,
                                                    "identifier": "subsys\\net\\buf.c\\net_buf_slist_put"
                                                },
                                                {
                                                    "name": "net_buf_put",
                                                    "size": 4,
                                                    "identifier": "subsys\\net\\buf.c\\net_buf_put"
                                                },
                                                {
                                                    "name": "log_const_net_buf",
                                                    "size": 8,
                                                    "identifier": "subsys\\net\\buf.c\\log_const_net_buf"
                                                }
                                            ]
                                        },
                                        {
                                            "name": "buf_simple.c",
                                            "size": 182,
                                            "identifier": "subsys\\net\\buf_simple.c",
                                            "children": [
                                                {
                                                    "name": "net_buf_simple_add_le16",
                                                    "size": 20,
                                                    "identifier": "subsys\\net\\buf_simple.c\\net_buf_simple_add_le16"
                                                },
                                                {
                                                    "name": "net_buf_simple_push",
                                                    "size": 16,
                                                    "identifier": "subsys\\net\\buf_simple.c\\net_buf_simple_push"
                                                },
                                                {
                                                    "name": "net_buf_simple_add",
                                                    "size": 12,
                                                    "identifier": "subsys\\net\\buf_simple.c\\net_buf_simple_add"
                                                },
                                                {
                                                    "name": "net_buf_simple_pull_le16",
                                                    "size": 16,
                                                    "identifier": "subsys\\net\\buf_simple.c\\net_buf_simple_pull_le16"
                                                },
                                                {
                                                    "name": "net_buf_simple_tailroom",
                                                    "size": 16,
                                                    "identifier": "subsys\\net\\buf_simple.c\\net_buf_simple_tailroom"
                                                },
                                                {
                                                    "name": "net_buf_simple_init_with_data",
                                                    "size": 12,
                                                    "identifier": "subsys\\net\\buf_simple.c\\net_buf_simple_init_with_data"
                                                },
                                                {
                                                    "name": "net_buf_simple_add_mem",
                                                    "size": 18,
                                                    "identifier": "subsys\\net\\buf_simple.c\\net_buf_simple_add_mem"
                                                },
                                                {
                                                    "name": "log_const_net_buf_simple",
                                                    "size": 8,
                                                    "identifier": "subsys\\net\\buf_simple.c\\log_const_net_buf_simple"
                                                },
                                                {
                                                    "name": "net_buf_simple_reserve",
                                                    "size": 8,
                                                    "identifier": "subsys\\net\\buf_simple.c\\net_buf_simple_reserve"
                                                },
                                                {
                                                    "name": "net_buf_simple_headroom",
                                                    "size": 8,
                                                    "identifier": "subsys\\net\\buf_simple.c\\net_buf_simple_headroom"
                                                },
                                                {
                                                    "name": "net_buf_simple_add_u8",
                                                    "size": 16,
                                                    "identifier": "subsys\\net\\buf_simple.c\\net_buf_simple_add_u8"
                                                },
                                                {
                                                    "name": "net_buf_simple_pull_mem",
                                                    "size": 16,
                                                    "identifier": "subsys\\net\\buf_simple.c\\net_buf_simple_pull_mem"
                                                },
                                                {
                                                    "name": "net_buf_simple_pull",
                                                    "size": 16,
                                                    "identifier": "subsys\\net\\buf_simple.c\\net_buf_simple_pull"
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "fs",
                                    "size": 8,
                                    "identifier": "subsys\\fs",
                                    "children": [
                                        {
                                            "name": "nvs",
                                            "size": 8,
                                            "identifier": "subsys\\fs\\nvs",
                                            "children": [
                                                {
                                                    "name": "nvs.c",
                                                    "size": 8,
                                                    "identifier": "subsys\\fs\\nvs\\nvs.c",
                                                    "children": [
                                                        {
                                                            "name": "log_const_fs_nvs",
                                                            "size": 8,
                                                            "identifier": "subsys\\fs\\nvs\\nvs.c\\log_const_fs_nvs"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "name": "lib",
                            "size": 4588,
                            "identifier": "lib",
                            "children": [
                                {
                                    "name": "os",
                                    "size": 4236,
                                    "identifier": "lib\\os",
                                    "children": [
                                        {
                                            "name": "printk.c",
                                            "size": 74,
                                            "identifier": "lib\\os\\printk.c",
                                            "children": [
                                                {
                                                    "name": "char_out",
                                                    "size": 12,
                                                    "identifier": "lib\\os\\printk.c\\char_out"
                                                },
                                                {
                                                    "name": "_char_out",
                                                    "size": 4,
                                                    "identifier": "lib\\os\\printk.c\\_char_out"
                                                },
                                                {
                                                    "name": "printk",
                                                    "size": 26,
                                                    "identifier": "lib\\os\\printk.c\\printk"
                                                },
                                                {
                                                    "name": "vprintk",
                                                    "size": 28,
                                                    "identifier": "lib\\os\\printk.c\\vprintk"
                                                },
                                                {
                                                    "name": "arch_printk_char_out",
                                                    "size": 4,
                                                    "identifier": "lib\\os\\printk.c\\arch_printk_char_out"
                                                }
                                            ]
                                        },
                                        {
                                            "name": "onoff.c",
                                            "size": 914,
                                            "identifier": "lib\\os\\onoff.c",
                                            "children": [
                                                {
                                                    "name": "process_recheck",
                                                    "size": 56,
                                                    "identifier": "lib\\os\\onoff.c\\process_recheck"
                                                },
                                                {
                                                    "name": "validate_args",
                                                    "size": 32,
                                                    "identifier": "lib\\os\\onoff.c\\validate_args"
                                                },
                                                {
                                                    "name": "notify_one",
                                                    "size": 44,
                                                    "identifier": "lib\\os\\onoff.c\\notify_one"
                                                },
                                                {
                                                    "name": "process_event",
                                                    "size": 540,
                                                    "identifier": "lib\\os\\onoff.c\\process_event"
                                                },
                                                {
                                                    "name": "transition_complete",
                                                    "size": 28,
                                                    "identifier": "lib\\os\\onoff.c\\transition_complete"
                                                },
                                                {
                                                    "name": "onoff_request",
                                                    "size": 176,
                                                    "identifier": "lib\\os\\onoff.c\\onoff_request"
                                                },
                                                {
                                                    "name": "onoff_manager_init",
                                                    "size": 38,
                                                    "identifier": "lib\\os\\onoff.c\\onoff_manager_init"
                                                }
                                            ]
                                        },
                                        {
                                            "name": "cbprintf_complete.c",
                                            "size": 2118,
                                            "identifier": "lib\\os\\cbprintf_complete.c",
                                            "children": [
                                                {
                                                    "name": "extract_decimal",
                                                    "size": 44,
                                                    "identifier": "lib\\os\\cbprintf_complete.c\\extract_decimal"
                                                },
                                                {
                                                    "name": "encode_uint",
                                                    "size": 152,
                                                    "identifier": "lib\\os\\cbprintf_complete.c\\encode_uint"
                                                },
                                                {
                                                    "name": "outs",
                                                    "size": 46,
                                                    "identifier": "lib\\os\\cbprintf_complete.c\\outs"
                                                },
                                                {
                                                    "name": "z_cbvprintf_impl",
                                                    "size": 1876,
                                                    "identifier": "lib\\os\\cbprintf_complete.c\\z_cbvprintf_impl"
                                                }
                                            ]
                                        },
                                        {
                                            "name": "heap.h",
                                            "size": 10,
                                            "identifier": "lib\\os\\heap.h",
                                            "children": [
                                                {
                                                    "name": "chunk_size",
                                                    "size": 10,
                                                    "identifier": "lib\\os\\heap.h\\chunk_size"
                                                }
                                            ]
                                        },
                                        {
                                            "name": "heap.c",
                                            "size": 906,
                                            "identifier": "lib\\os\\heap.c",
                                            "children": [
                                                {
                                                    "name": "free_list_add",
                                                    "size": 78,
                                                    "identifier": "lib\\os\\heap.c\\free_list_add"
                                                },
                                                {
                                                    "name": "free_list_remove_bidx",
                                                    "size": 58,
                                                    "identifier": "lib\\os\\heap.c\\free_list_remove_bidx"
                                                },
                                                {
                                                    "name": "free_list_remove",
                                                    "size": 26,
                                                    "identifier": "lib\\os\\heap.c\\free_list_remove"
                                                },
                                                {
                                                    "name": "alloc_chunk",
                                                    "size": 110,
                                                    "identifier": "lib\\os\\heap.c\\alloc_chunk"
                                                },
                                                {
                                                    "name": "merge_chunks",
                                                    "size": 44,
                                                    "identifier": "lib\\os\\heap.c\\merge_chunks"
                                                },
                                                {
                                                    "name": "split_chunks",
                                                    "size": 52,
                                                    "identifier": "lib\\os\\heap.c\\split_chunks"
                                                },
                                                {
                                                    "name": "free_chunk",
                                                    "size": 98,
                                                    "identifier": "lib\\os\\heap.c\\free_chunk"
                                                },
                                                {
                                                    "name": "sys_heap_init",
                                                    "size": 122,
                                                    "identifier": "lib\\os\\heap.c\\sys_heap_init"
                                                },
                                                {
                                                    "name": "sys_heap_free",
                                                    "size": 30,
                                                    "identifier": "lib\\os\\heap.c\\sys_heap_free"
                                                },
                                                {
                                                    "name": "sys_heap_alloc",
                                                    "size": 82,
                                                    "identifier": "lib\\os\\heap.c\\sys_heap_alloc"
                                                },
                                                {
                                                    "name": "sys_heap_aligned_alloc",
                                                    "size": 206,
                                                    "identifier": "lib\\os\\heap.c\\sys_heap_aligned_alloc"
                                                }
                                            ]
                                        },
                                        {
                                            "name": "notify.c",
                                            "size": 90,
                                            "identifier": "lib\\os\\notify.c",
                                            "children": [
                                                {
                                                    "name": "sys_notify_finalize",
                                                    "size": 50,
                                                    "identifier": "lib\\os\\notify.c\\sys_notify_finalize"
                                                },
                                                {
                                                    "name": "sys_notify_validate",
                                                    "size": 40,
                                                    "identifier": "lib\\os\\notify.c\\sys_notify_validate"
                                                }
                                            ]
                                        },
                                        {
                                            "name": "cbprintf_packaged.c",
                                            "size": 8,
                                            "identifier": "lib\\os\\cbprintf_packaged.c",
                                            "children": [
                                                {
                                                    "name": "log_const_cbprintf_package",
                                                    "size": 8,
                                                    "identifier": "lib\\os\\cbprintf_packaged.c\\log_const_cbprintf_package"
                                                }
                                            ]
                                        },
                                        {
                                            "name": "assert.c",
                                            "size": 26,
                                            "identifier": "lib\\os\\assert.c",
                                            "children": [
                                                {
                                                    "name": "assert_print",
                                                    "size": 26,
                                                    "identifier": "lib\\os\\assert.c\\assert_print"
                                                }
                                            ]
                                        },
                                        {
                                            "name": "crc32_sw.c",
                                            "size": 70,
                                            "identifier": "lib\\os\\crc32_sw.c",
                                            "children": [
                                                {
                                                    "name": "crc32_ieee",
                                                    "size": 10,
                                                    "identifier": "lib\\os\\crc32_sw.c\\crc32_ieee"
                                                },
                                                {
                                                    "name": "crc32_ieee_update",
                                                    "size": 60,
                                                    "identifier": "lib\\os\\crc32_sw.c\\crc32_ieee_update"
                                                }
                                            ]
                                        },
                                        {
                                            "name": "thread_entry.c",
                                            "size": 20,
                                            "identifier": "lib\\os\\thread_entry.c",
                                            "children": [
                                                {
                                                    "name": "z_thread_entry",
                                                    "size": 20,
                                                    "identifier": "lib\\os\\thread_entry.c\\z_thread_entry"
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "libc",
                                    "size": 278,
                                    "identifier": "lib\\libc",
                                    "children": [
                                        {
                                            "name": "newlib",
                                            "size": 278,
                                            "identifier": "lib\\libc\\newlib",
                                            "children": [
                                                {
                                                    "name": "libc-hooks.c",
                                                    "size": 278,
                                                    "identifier": "lib\\libc\\newlib\\libc-hooks.c",
                                                    "children": [
                                                        {
                                                            "name": "malloc_prepare",
                                                            "size": 4,
                                                            "identifier": "lib\\libc\\newlib\\libc-hooks.c\\malloc_prepare"
                                                        },
                                                        {
                                                            "name": "_stdout_hook_default",
                                                            "size": 6,
                                                            "identifier": "lib\\libc\\newlib\\libc-hooks.c\\_stdout_hook_default"
                                                        },
                                                        {
                                                            "name": "_stdin_hook_default",
                                                            "size": 4,
                                                            "identifier": "lib\\libc\\newlib\\libc-hooks.c\\_stdin_hook_default"
                                                        },
                                                        {
                                                            "name": "_stdout_hook",
                                                            "size": 4,
                                                            "identifier": "lib\\libc\\newlib\\libc-hooks.c\\_stdout_hook"
                                                        },
                                                        {
                                                            "name": "_stdin_hook",
                                                            "size": 4,
                                                            "identifier": "lib\\libc\\newlib\\libc-hooks.c\\_stdin_hook"
                                                        },
                                                        {
                                                            "name": "__init_malloc_prepare",
                                                            "size": 8,
                                                            "identifier": "lib\\libc\\newlib\\libc-hooks.c\\__init_malloc_prepare"
                                                        },
                                                        {
                                                            "name": "_exit",
                                                            "size": 16,
                                                            "identifier": "lib\\libc\\newlib\\libc-hooks.c\\_exit"
                                                        },
                                                        {
                                                            "name": "_kill",
                                                            "size": 4,
                                                            "identifier": "lib\\libc\\newlib\\libc-hooks.c\\_kill"
                                                        },
                                                        {
                                                            "name": "_isatty",
                                                            "size": 10,
                                                            "identifier": "lib\\libc\\newlib\\libc-hooks.c\\_isatty"
                                                        },
                                                        {
                                                            "name": "__lock___malloc_recursive_mutex",
                                                            "size": 20,
                                                            "identifier": "lib\\libc\\newlib\\libc-hooks.c\\__lock___malloc_recursive_mutex"
                                                        },
                                                        {
                                                            "name": "_read",
                                                            "size": 8,
                                                            "identifier": "lib\\libc\\newlib\\libc-hooks.c\\_read"
                                                        },
                                                        {
                                                            "name": "_fstat",
                                                            "size": 10,
                                                            "identifier": "lib\\libc\\newlib\\libc-hooks.c\\_fstat"
                                                        },
                                                        {
                                                            "name": "_lseek",
                                                            "size": 4,
                                                            "identifier": "lib\\libc\\newlib\\libc-hooks.c\\_lseek"
                                                        },
                                                        {
                                                            "name": "z_impl_zephyr_write_stdout",
                                                            "size": 48,
                                                            "identifier": "lib\\libc\\newlib\\libc-hooks.c\\z_impl_zephyr_write_stdout"
                                                        },
                                                        {
                                                            "name": "z_impl_zephyr_read_stdin",
                                                            "size": 40,
                                                            "identifier": "lib\\libc\\newlib\\libc-hooks.c\\z_impl_zephyr_read_stdin"
                                                        },
                                                        {
                                                            "name": "__lock___sinit_recursive_mutex",
                                                            "size": 20,
                                                            "identifier": "lib\\libc\\newlib\\libc-hooks.c\\__lock___sinit_recursive_mutex"
                                                        },
                                                        {
                                                            "name": "_write",
                                                            "size": 8,
                                                            "identifier": "lib\\libc\\newlib\\libc-hooks.c\\_write"
                                                        },
                                                        {
                                                            "name": "__lock___sfp_recursive_mutex",
                                                            "size": 20,
                                                            "identifier": "lib\\libc\\newlib\\libc-hooks.c\\__lock___sfp_recursive_mutex"
                                                        },
                                                        {
                                                            "name": "_sbrk",
                                                            "size": 40,
                                                            "identifier": "lib\\libc\\newlib\\libc-hooks.c\\_sbrk"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "cpp",
                                    "size": 74,
                                    "identifier": "lib\\cpp",
                                    "children": [
                                        {
                                            "name": "abi",
                                            "size": 74,
                                            "identifier": "lib\\cpp\\abi",
                                            "children": [
                                                {
                                                    "name": "cpp_ctors.c",
                                                    "size": 28,
                                                    "identifier": "lib\\cpp\\abi\\cpp_ctors.c",
                                                    "children": [
                                                        {
                                                            "name": "__do_global_ctors_aux",
                                                            "size": 28,
                                                            "identifier": "lib\\cpp\\abi\\cpp_ctors.c\\__do_global_ctors_aux"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "cpp_dtors.c",
                                                    "size": 4,
                                                    "identifier": "lib\\cpp\\abi\\cpp_dtors.c",
                                                    "children": [
                                                        {
                                                            "name": "__cxa_atexit",
                                                            "size": 4,
                                                            "identifier": "lib\\cpp\\abi\\cpp_dtors.c\\__cxa_atexit"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "cpp_init_array.c",
                                                    "size": 28,
                                                    "identifier": "lib\\cpp\\abi\\cpp_init_array.c",
                                                    "children": [
                                                        {
                                                            "name": "__do_init_array_aux",
                                                            "size": 28,
                                                            "identifier": "lib\\cpp\\abi\\cpp_init_array.c\\__do_init_array_aux"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "cpp_init.c",
                                                    "size": 14,
                                                    "identifier": "lib\\cpp\\abi\\cpp_init.c",
                                                    "children": [
                                                        {
                                                            "name": "z_cpp_init_static",
                                                            "size": 14,
                                                            "identifier": "lib\\cpp\\abi\\cpp_init.c\\z_cpp_init_static"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "name": "arch",
                            "size": 1832,
                            "identifier": "arch",
                            "children": [
                                {
                                    "name": "arm",
                                    "size": 1832,
                                    "identifier": "arch\\arm",
                                    "children": [
                                        {
                                            "name": "core",
                                            "size": 1832,
                                            "identifier": "arch\\arm\\core",
                                            "children": [
                                                {
                                                    "name": "aarch32",
                                                    "size": 1832,
                                                    "identifier": "arch\\arm\\core\\aarch32",
                                                    "children": [
                                                        {
                                                            "name": "cortex_m",
                                                            "size": 884,
                                                            "identifier": "arch\\arm\\core\\aarch32\\cortex_m",
                                                            "children": [
                                                                {
                                                                    "name": "fault.c",
                                                                    "size": 680,
                                                                    "identifier": "arch\\arm\\core\\aarch32\\cortex_m\\fault.c",
                                                                    "children": [
                                                                        {
                                                                            "name": "mem_manage_fault",
                                                                            "size": 160,
                                                                            "identifier": "arch\\arm\\core\\aarch32\\cortex_m\\fault.c\\mem_manage_fault"
                                                                        },
                                                                        {
                                                                            "name": "usage_fault.constprop.0",
                                                                            "size": 84,
                                                                            "identifier": "arch\\arm\\core\\aarch32\\cortex_m\\fault.c\\usage_fault.constprop.0"
                                                                        },
                                                                        {
                                                                            "name": "bus_fault.constprop.0",
                                                                            "size": 108,
                                                                            "identifier": "arch\\arm\\core\\aarch32\\cortex_m\\fault.c\\bus_fault.constprop.0"
                                                                        },
                                                                        {
                                                                            "name": "z_arm_fault",
                                                                            "size": 312,
                                                                            "identifier": "arch\\arm\\core\\aarch32\\cortex_m\\fault.c\\z_arm_fault"
                                                                        },
                                                                        {
                                                                            "name": "z_arm_fault_init",
                                                                            "size": 16,
                                                                            "identifier": "arch\\arm\\core\\aarch32\\cortex_m\\fault.c\\z_arm_fault_init"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "name": "thread_abort.c",
                                                                    "size": 44,
                                                                    "identifier": "arch\\arm\\core\\aarch32\\cortex_m\\thread_abort.c",
                                                                    "children": [
                                                                        {
                                                                            "name": "z_impl_k_thread_abort",
                                                                            "size": 44,
                                                                            "identifier": "arch\\arm\\core\\aarch32\\cortex_m\\thread_abort.c\\z_impl_k_thread_abort"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "name": "irq_init.c",
                                                                    "size": 24,
                                                                    "identifier": "arch\\arm\\core\\aarch32\\cortex_m\\irq_init.c",
                                                                    "children": [
                                                                        {
                                                                            "name": "z_arm_interrupt_init",
                                                                            "size": 24,
                                                                            "identifier": "arch\\arm\\core\\aarch32\\cortex_m\\irq_init.c\\z_arm_interrupt_init"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "name": "scb.c",
                                                                    "size": 136,
                                                                    "identifier": "arch\\arm\\core\\aarch32\\cortex_m\\scb.c",
                                                                    "children": [
                                                                        {
                                                                            "name": "z_arm_init_arch_hw_at_boot",
                                                                            "size": 100,
                                                                            "identifier": "arch\\arm\\core\\aarch32\\cortex_m\\scb.c\\z_arm_init_arch_hw_at_boot"
                                                                        },
                                                                        {
                                                                            "name": "z_arm_clear_arm_mpu_config",
                                                                            "size": 36,
                                                                            "identifier": "arch\\arm\\core\\aarch32\\cortex_m\\scb.c\\z_arm_clear_arm_mpu_config"
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "mpu",
                                                            "size": 424,
                                                            "identifier": "arch\\arm\\core\\aarch32\\mpu",
                                                            "children": [
                                                                {
                                                                    "name": "arm_core_mpu.c",
                                                                    "size": 80,
                                                                    "identifier": "arch\\arm\\core\\aarch32\\mpu\\arm_core_mpu.c",
                                                                    "children": [
                                                                        {
                                                                            "name": "static_regions",
                                                                            "size": 12,
                                                                            "identifier": "arch\\arm\\core\\aarch32\\mpu\\arm_core_mpu.c\\static_regions"
                                                                        },
                                                                        {
                                                                            "name": "z_arm_configure_dynamic_mpu_regions",
                                                                            "size": 36,
                                                                            "identifier": "arch\\arm\\core\\aarch32\\mpu\\arm_core_mpu.c\\z_arm_configure_dynamic_mpu_regions"
                                                                        },
                                                                        {
                                                                            "name": "z_arm_configure_static_mpu_regions",
                                                                            "size": 24,
                                                                            "identifier": "arch\\arm\\core\\aarch32\\mpu\\arm_core_mpu.c\\z_arm_configure_static_mpu_regions"
                                                                        },
                                                                        {
                                                                            "name": "log_const_mpu",
                                                                            "size": 8,
                                                                            "identifier": "arch\\arm\\core\\aarch32\\mpu\\arm_core_mpu.c\\log_const_mpu"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "name": "arm_mpu.c",
                                                                    "size": 344,
                                                                    "identifier": "arch\\arm\\core\\aarch32\\mpu\\arm_mpu.c",
                                                                    "children": [
                                                                        {
                                                                            "name": "mpu_configure_regions",
                                                                            "size": 136,
                                                                            "identifier": "arch\\arm\\core\\aarch32\\mpu\\arm_mpu.c\\mpu_configure_regions"
                                                                        },
                                                                        {
                                                                            "name": "arm_core_mpu_enable",
                                                                            "size": 24,
                                                                            "identifier": "arch\\arm\\core\\aarch32\\mpu\\arm_mpu.c\\arm_core_mpu_enable"
                                                                        },
                                                                        {
                                                                            "name": "arm_core_mpu_disable",
                                                                            "size": 20,
                                                                            "identifier": "arch\\arm\\core\\aarch32\\mpu\\arm_mpu.c\\arm_core_mpu_disable"
                                                                        },
                                                                        {
                                                                            "name": "arm_core_mpu_configure_dynamic_mpu_regions",
                                                                            "size": 48,
                                                                            "identifier": "arch\\arm\\core\\aarch32\\mpu\\arm_mpu.c\\arm_core_mpu_configure_dynamic_mpu_regions"
                                                                        },
                                                                        {
                                                                            "name": "z_arm_mpu_init",
                                                                            "size": 96,
                                                                            "identifier": "arch\\arm\\core\\aarch32\\mpu\\arm_mpu.c\\z_arm_mpu_init"
                                                                        },
                                                                        {
                                                                            "name": "arm_core_mpu_configure_static_mpu_regions",
                                                                            "size": 20,
                                                                            "identifier": "arch\\arm\\core\\aarch32\\mpu\\arm_mpu.c\\arm_core_mpu_configure_static_mpu_regions"
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "fatal.c",
                                                            "size": 56,
                                                            "identifier": "arch\\arm\\core\\aarch32\\fatal.c",
                                                            "children": [
                                                                {
                                                                    "name": "z_do_kernel_oops",
                                                                    "size": 52,
                                                                    "identifier": "arch\\arm\\core\\aarch32\\fatal.c\\z_do_kernel_oops"
                                                                },
                                                                {
                                                                    "name": "z_arm_fatal_error",
                                                                    "size": 4,
                                                                    "identifier": "arch\\arm\\core\\aarch32\\fatal.c\\z_arm_fatal_error"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "thread.c",
                                                            "size": 148,
                                                            "identifier": "arch\\arm\\core\\aarch32\\thread.c",
                                                            "children": [
                                                                {
                                                                    "name": "z_check_thread_stack_fail",
                                                                    "size": 48,
                                                                    "identifier": "arch\\arm\\core\\aarch32\\thread.c\\z_check_thread_stack_fail"
                                                                },
                                                                {
                                                                    "name": "arch_switch_to_main_thread",
                                                                    "size": 44,
                                                                    "identifier": "arch\\arm\\core\\aarch32\\thread.c\\arch_switch_to_main_thread"
                                                                },
                                                                {
                                                                    "name": "arch_new_thread",
                                                                    "size": 56,
                                                                    "identifier": "arch\\arm\\core\\aarch32\\thread.c\\arch_new_thread"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "irq_manage.c",
                                                            "size": 184,
                                                            "identifier": "arch\\arm\\core\\aarch32\\irq_manage.c",
                                                            "children": [
                                                                {
                                                                    "name": "z_arm_irq_priority_set",
                                                                    "size": 52,
                                                                    "identifier": "arch\\arm\\core\\aarch32\\irq_manage.c\\z_arm_irq_priority_set"
                                                                },
                                                                {
                                                                    "name": "z_irq_spurious",
                                                                    "size": 8,
                                                                    "identifier": "arch\\arm\\core\\aarch32\\irq_manage.c\\z_irq_spurious"
                                                                },
                                                                {
                                                                    "name": "_arch_isr_direct_pm",
                                                                    "size": 28,
                                                                    "identifier": "arch\\arm\\core\\aarch32\\irq_manage.c\\_arch_isr_direct_pm"
                                                                },
                                                                {
                                                                    "name": "arch_irq_disable",
                                                                    "size": 40,
                                                                    "identifier": "arch\\arm\\core\\aarch32\\irq_manage.c\\arch_irq_disable"
                                                                },
                                                                {
                                                                    "name": "arch_irq_is_enabled",
                                                                    "size": 28,
                                                                    "identifier": "arch\\arm\\core\\aarch32\\irq_manage.c\\arch_irq_is_enabled"
                                                                },
                                                                {
                                                                    "name": "arch_irq_enable",
                                                                    "size": 28,
                                                                    "identifier": "arch\\arm\\core\\aarch32\\irq_manage.c\\arch_irq_enable"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "prep_c.c",
                                                            "size": 56,
                                                            "identifier": "arch\\arm\\core\\aarch32\\prep_c.c",
                                                            "children": [
                                                                {
                                                                    "name": "z_arm_prep_c",
                                                                    "size": 56,
                                                                    "identifier": "arch\\arm\\core\\aarch32\\prep_c.c\\z_arm_prep_c"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "swap.c",
                                                            "size": 56,
                                                            "identifier": "arch\\arm\\core\\aarch32\\swap.c",
                                                            "children": [
                                                                {
                                                                    "name": "arch_swap",
                                                                    "size": 56,
                                                                    "identifier": "arch\\arm\\core\\aarch32\\swap.c\\arch_swap"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "__aeabi_atexit.c",
                                                            "size": 10,
                                                            "identifier": "arch\\arm\\core\\aarch32\\__aeabi_atexit.c",
                                                            "children": [
                                                                {
                                                                    "name": "__aeabi_atexit",
                                                                    "size": 10,
                                                                    "identifier": "arch\\arm\\core\\aarch32\\__aeabi_atexit.c\\__aeabi_atexit"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "nmi.c",
                                                            "size": 14,
                                                            "identifier": "arch\\arm\\core\\aarch32\\nmi.c",
                                                            "children": [
                                                                {
                                                                    "name": "z_arm_nmi",
                                                                    "size": 14,
                                                                    "identifier": "arch\\arm\\core\\aarch32\\nmi.c\\z_arm_nmi"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "name": "soc",
                            "size": 188,
                            "identifier": "soc",
                            "children": [
                                {
                                    "name": "arm",
                                    "size": 188,
                                    "identifier": "soc\\arm",
                                    "children": [
                                        {
                                            "name": "nordic_nrf",
                                            "size": 164,
                                            "identifier": "soc\\arm\\nordic_nrf",
                                            "children": [
                                                {
                                                    "name": "nrf52",
                                                    "size": 164,
                                                    "identifier": "soc\\arm\\nordic_nrf\\nrf52",
                                                    "children": [
                                                        {
                                                            "name": "soc.c",
                                                            "size": 128,
                                                            "identifier": "soc\\arm\\nordic_nrf\\nrf52\\soc.c",
                                                            "children": [
                                                                {
                                                                    "name": "nordicsemi_nrf52_init",
                                                                    "size": 48,
                                                                    "identifier": "soc\\arm\\nordic_nrf\\nrf52\\soc.c\\nordicsemi_nrf52_init"
                                                                },
                                                                {
                                                                    "name": "__init_nordicsemi_nrf52_init",
                                                                    "size": 8,
                                                                    "identifier": "soc\\arm\\nordic_nrf\\nrf52\\soc.c\\__init_nordicsemi_nrf52_init"
                                                                },
                                                                {
                                                                    "name": "sys_arch_reboot",
                                                                    "size": 44,
                                                                    "identifier": "soc\\arm\\nordic_nrf\\nrf52\\soc.c\\sys_arch_reboot"
                                                                },
                                                                {
                                                                    "name": "arch_busy_wait",
                                                                    "size": 20,
                                                                    "identifier": "soc\\arm\\nordic_nrf\\nrf52\\soc.c\\arch_busy_wait"
                                                                },
                                                                {
                                                                    "name": "log_const_soc",
                                                                    "size": 8,
                                                                    "identifier": "soc\\arm\\nordic_nrf\\nrf52\\soc.c\\log_const_soc"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "power.c",
                                                            "size": 36,
                                                            "identifier": "soc\\arm\\nordic_nrf\\nrf52\\power.c",
                                                            "children": [
                                                                {
                                                                    "name": "pm_state_set",
                                                                    "size": 24,
                                                                    "identifier": "soc\\arm\\nordic_nrf\\nrf52\\power.c\\pm_state_set"
                                                                },
                                                                {
                                                                    "name": "pm_state_exit_post_ops",
                                                                    "size": 12,
                                                                    "identifier": "soc\\arm\\nordic_nrf\\nrf52\\power.c\\pm_state_exit_post_ops"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        },
                                        {
                                            "name": "common",
                                            "size": 24,
                                            "identifier": "soc\\arm\\common",
                                            "children": [
                                                {
                                                    "name": "cortex_m",
                                                    "size": 24,
                                                    "identifier": "soc\\arm\\common\\cortex_m",
                                                    "children": [
                                                        {
                                                            "name": "arm_mpu_regions.c",
                                                            "size": 24,
                                                            "identifier": "soc\\arm\\common\\cortex_m\\arm_mpu_regions.c",
                                                            "children": [
                                                                {
                                                                    "name": "mpu_regions",
                                                                    "size": 24,
                                                                    "identifier": "soc\\arm\\common\\cortex_m\\arm_mpu_regions.c\\mpu_regions"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "name": "drivers",
                            "size": 9790,
                            "identifier": "drivers",
                            "children": [
                                {
                                    "name": "clock_control",
                                    "size": 1006,
                                    "identifier": "drivers\\clock_control",
                                    "children": [
                                        {
                                            "name": "clock_control_nrf.c",
                                            "size": 1006,
                                            "identifier": "drivers\\clock_control\\clock_control_nrf.c",
                                            "children": [
                                                {
                                                    "name": "get_status",
                                                    "size": 18,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\get_status"
                                                },
                                                {
                                                    "name": "set_on_state",
                                                    "size": 38,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\set_on_state"
                                                },
                                                {
                                                    "name": "stop",
                                                    "size": 84,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\stop"
                                                },
                                                {
                                                    "name": "api_stop",
                                                    "size": 6,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\api_stop"
                                                },
                                                {
                                                    "name": "async_start",
                                                    "size": 94,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\async_start"
                                                },
                                                {
                                                    "name": "api_start",
                                                    "size": 14,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\api_start"
                                                },
                                                {
                                                    "name": "onoff_stop",
                                                    "size": 40,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\onoff_stop"
                                                },
                                                {
                                                    "name": "onoff_started_callback",
                                                    "size": 12,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\onoff_started_callback"
                                                },
                                                {
                                                    "name": "onoff_start",
                                                    "size": 60,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\onoff_start"
                                                },
                                                {
                                                    "name": "lfclk_start",
                                                    "size": 6,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\lfclk_start"
                                                },
                                                {
                                                    "name": "lfclk_stop",
                                                    "size": 6,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\lfclk_stop"
                                                },
                                                {
                                                    "name": "blocking_start_callback",
                                                    "size": 6,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\blocking_start_callback"
                                                },
                                                {
                                                    "name": "clk_init",
                                                    "size": 88,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\clk_init"
                                                },
                                                {
                                                    "name": "clock_event_handler",
                                                    "size": 28,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\clock_event_handler"
                                                },
                                                {
                                                    "name": "clkstarted_handle.constprop.0",
                                                    "size": 52,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\clkstarted_handle.constprop.0"
                                                },
                                                {
                                                    "name": "generic_hfclk_start",
                                                    "size": 100,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\generic_hfclk_start"
                                                },
                                                {
                                                    "name": "api_blocking_start",
                                                    "size": 60,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\api_blocking_start"
                                                },
                                                {
                                                    "name": "generic_hfclk_stop",
                                                    "size": 52,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\generic_hfclk_stop"
                                                },
                                                {
                                                    "name": "__init___device_dts_ord_51",
                                                    "size": 8,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\__init___device_dts_ord_51"
                                                },
                                                {
                                                    "name": "config",
                                                    "size": 16,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\config"
                                                },
                                                {
                                                    "name": "clock_control_api",
                                                    "size": 28,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\clock_control_api"
                                                },
                                                {
                                                    "name": "__devstate_dts_ord_51",
                                                    "size": 2,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\__devstate_dts_ord_51"
                                                },
                                                {
                                                    "name": "z_nrf_clock_control_lf_on",
                                                    "size": 180,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\z_nrf_clock_control_lf_on"
                                                },
                                                {
                                                    "name": "log_const_clock_control",
                                                    "size": 8,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\log_const_clock_control"
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "entropy",
                                    "size": 758,
                                    "identifier": "drivers\\entropy",
                                    "children": [
                                        {
                                            "name": "entropy_nrf5.c",
                                            "size": 706,
                                            "identifier": "drivers\\entropy\\entropy_nrf5.c",
                                            "children": [
                                                {
                                                    "name": "random_byte_get",
                                                    "size": 60,
                                                    "identifier": "drivers\\entropy\\entropy_nrf5.c\\random_byte_get"
                                                },
                                                {
                                                    "name": "rng_pool_get",
                                                    "size": 140,
                                                    "identifier": "drivers\\entropy\\entropy_nrf5.c\\rng_pool_get"
                                                },
                                                {
                                                    "name": "entropy_nrf5_get_entropy_isr",
                                                    "size": 172,
                                                    "identifier": "drivers\\entropy\\entropy_nrf5.c\\entropy_nrf5_get_entropy_isr"
                                                },
                                                {
                                                    "name": "entropy_nrf5_get_entropy",
                                                    "size": 88,
                                                    "identifier": "drivers\\entropy\\entropy_nrf5.c\\entropy_nrf5_get_entropy"
                                                },
                                                {
                                                    "name": "entropy_nrf5_init",
                                                    "size": 112,
                                                    "identifier": "drivers\\entropy\\entropy_nrf5.c\\entropy_nrf5_init"
                                                },
                                                {
                                                    "name": "isr",
                                                    "size": 116,
                                                    "identifier": "drivers\\entropy\\entropy_nrf5.c\\isr"
                                                },
                                                {
                                                    "name": "__init___device_dts_ord_73",
                                                    "size": 8,
                                                    "identifier": "drivers\\entropy\\entropy_nrf5.c\\__init___device_dts_ord_73"
                                                },
                                                {
                                                    "name": "entropy_nrf5_api_funcs",
                                                    "size": 8,
                                                    "identifier": "drivers\\entropy\\entropy_nrf5.c\\entropy_nrf5_api_funcs"
                                                },
                                                {
                                                    "name": "__devstate_dts_ord_73",
                                                    "size": 2,
                                                    "identifier": "drivers\\entropy\\entropy_nrf5.c\\__devstate_dts_ord_73"
                                                }
                                            ]
                                        },
                                        {
                                            "name": "entropy_bt_hci.c",
                                            "size": 52,
                                            "identifier": "drivers\\entropy\\entropy_bt_hci.c",
                                            "children": [
                                                {
                                                    "name": "entropy_bt_init",
                                                    "size": 4,
                                                    "identifier": "drivers\\entropy\\entropy_bt_hci.c\\entropy_bt_init"
                                                },
                                                {
                                                    "name": "entropy_bt_get_entropy",
                                                    "size": 30,
                                                    "identifier": "drivers\\entropy\\entropy_bt_hci.c\\entropy_bt_get_entropy"
                                                },
                                                {
                                                    "name": "__init___device_dts_ord_12",
                                                    "size": 8,
                                                    "identifier": "drivers\\entropy\\entropy_bt_hci.c\\__init___device_dts_ord_12"
                                                },
                                                {
                                                    "name": "entropy_bt_api",
                                                    "size": 8,
                                                    "identifier": "drivers\\entropy\\entropy_bt_hci.c\\entropy_bt_api"
                                                },
                                                {
                                                    "name": "__devstate_dts_ord_12",
                                                    "size": 2,
                                                    "identifier": "drivers\\entropy\\entropy_bt_hci.c\\__devstate_dts_ord_12"
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "flash",
                                    "size": 1902,
                                    "identifier": "drivers\\flash",
                                    "children": [
                                        {
                                            "name": "spi_nor.c",
                                            "size": 1258,
                                            "identifier": "drivers\\flash\\spi_nor.c",
                                            "children": [
                                                {
                                                    "name": "spi_nor_pages_layout",
                                                    "size": 12,
                                                    "identifier": "drivers\\flash\\spi_nor.c\\spi_nor_pages_layout"
                                                },
                                                {
                                                    "name": "flash_nor_get_parameters",
                                                    "size": 8,
                                                    "identifier": "drivers\\flash\\spi_nor.c\\flash_nor_get_parameters"
                                                },
                                                {
                                                    "name": "flash_nor_parameters",
                                                    "size": 8,
                                                    "identifier": "drivers\\flash\\spi_nor.c\\flash_nor_parameters"
                                                },
                                                {
                                                    "name": "release_device.isra.0",
                                                    "size": 4,
                                                    "identifier": "drivers\\flash\\spi_nor.c\\release_device.isra.0"
                                                },
                                                {
                                                    "name": "acquire_device.isra.0",
                                                    "size": 12,
                                                    "identifier": "drivers\\flash\\spi_nor.c\\acquire_device.isra.0"
                                                },
                                                {
                                                    "name": "spi_nor_access",
                                                    "size": 132,
                                                    "identifier": "drivers\\flash\\spi_nor.c\\spi_nor_access"
                                                },
                                                {
                                                    "name": "spi_nor_write_protection_set",
                                                    "size": 32,
                                                    "identifier": "drivers\\flash\\spi_nor.c\\spi_nor_write_protection_set"
                                                },
                                                {
                                                    "name": "spi_nor_rdsr",
                                                    "size": 34,
                                                    "identifier": "drivers\\flash\\spi_nor.c\\spi_nor_rdsr"
                                                },
                                                {
                                                    "name": "spi_nor_read",
                                                    "size": 64,
                                                    "identifier": "drivers\\flash\\spi_nor.c\\spi_nor_read"
                                                },
                                                {
                                                    "name": "spi_nor_wait_until_ready.isra.0",
                                                    "size": 40,
                                                    "identifier": "drivers\\flash\\spi_nor.c\\spi_nor_wait_until_ready.isra.0"
                                                },
                                                {
                                                    "name": "spi_nor_write",
                                                    "size": 202,
                                                    "identifier": "drivers\\flash\\spi_nor.c\\spi_nor_write"
                                                },
                                                {
                                                    "name": "spi_nor_erase",
                                                    "size": 292,
                                                    "identifier": "drivers\\flash\\spi_nor.c\\spi_nor_erase"
                                                },
                                                {
                                                    "name": "minimal_erase_types",
                                                    "size": 8,
                                                    "identifier": "drivers\\flash\\spi_nor.c\\minimal_erase_types"
                                                },
                                                {
                                                    "name": "spi_nor_init",
                                                    "size": 336,
                                                    "identifier": "drivers\\flash\\spi_nor.c\\spi_nor_init"
                                                },
                                                {
                                                    "name": "__init___device_dts_ord_111",
                                                    "size": 8,
                                                    "identifier": "drivers\\flash\\spi_nor.c\\__init___device_dts_ord_111"
                                                },
                                                {
                                                    "name": "spi_nor_config_0",
                                                    "size": 36,
                                                    "identifier": "drivers\\flash\\spi_nor.c\\spi_nor_config_0"
                                                },
                                                {
                                                    "name": "spi_nor_api",
                                                    "size": 20,
                                                    "identifier": "drivers\\flash\\spi_nor.c\\spi_nor_api"
                                                },
                                                {
                                                    "name": "__devstate_dts_ord_111",
                                                    "size": 2,
                                                    "identifier": "drivers\\flash\\spi_nor.c\\__devstate_dts_ord_111"
                                                },
                                                {
                                                    "name": "log_const_spi_nor",
                                                    "size": 8,
                                                    "identifier": "drivers\\flash\\spi_nor.c\\log_const_spi_nor"
                                                }
                                            ]
                                        },
                                        {
                                            "name": "soc_flash_nrf.c",
                                            "size": 644,
                                            "identifier": "drivers\\flash\\soc_flash_nrf.c",
                                            "children": [
                                                {
                                                    "name": "flash_nrf_pages_layout",
                                                    "size": 16,
                                                    "identifier": "drivers\\flash\\soc_flash_nrf.c\\flash_nrf_pages_layout"
                                                },
                                                {
                                                    "name": "flash_nrf_get_parameters",
                                                    "size": 8,
                                                    "identifier": "drivers\\flash\\soc_flash_nrf.c\\flash_nrf_get_parameters"
                                                },
                                                {
                                                    "name": "flash_nrf_parameters",
                                                    "size": 8,
                                                    "identifier": "drivers\\flash\\soc_flash_nrf.c\\flash_nrf_parameters"
                                                },
                                                {
                                                    "name": "erase_op",
                                                    "size": 72,
                                                    "identifier": "drivers\\flash\\soc_flash_nrf.c\\erase_op"
                                                },
                                                {
                                                    "name": "is_regular_addr_valid",
                                                    "size": 34,
                                                    "identifier": "drivers\\flash\\soc_flash_nrf.c\\is_regular_addr_valid"
                                                },
                                                {
                                                    "name": "flash_nrf_read",
                                                    "size": 40,
                                                    "identifier": "drivers\\flash\\soc_flash_nrf.c\\flash_nrf_read"
                                                },
                                                {
                                                    "name": "nrf_flash_init",
                                                    "size": 44,
                                                    "identifier": "drivers\\flash\\soc_flash_nrf.c\\nrf_flash_init"
                                                },
                                                {
                                                    "name": "flash_nrf_erase",
                                                    "size": 160,
                                                    "identifier": "drivers\\flash\\soc_flash_nrf.c\\flash_nrf_erase"
                                                },
                                                {
                                                    "name": "write_op",
                                                    "size": 100,
                                                    "identifier": "drivers\\flash\\soc_flash_nrf.c\\write_op"
                                                },
                                                {
                                                    "name": "flash_nrf_write",
                                                    "size": 124,
                                                    "identifier": "drivers\\flash\\soc_flash_nrf.c\\flash_nrf_write"
                                                },
                                                {
                                                    "name": "__init___device_dts_ord_91",
                                                    "size": 8,
                                                    "identifier": "drivers\\flash\\soc_flash_nrf.c\\__init___device_dts_ord_91"
                                                },
                                                {
                                                    "name": "flash_nrf_api",
                                                    "size": 20,
                                                    "identifier": "drivers\\flash\\soc_flash_nrf.c\\flash_nrf_api"
                                                },
                                                {
                                                    "name": "__devstate_dts_ord_91",
                                                    "size": 2,
                                                    "identifier": "drivers\\flash\\soc_flash_nrf.c\\__devstate_dts_ord_91"
                                                },
                                                {
                                                    "name": "log_const_flash_nrf",
                                                    "size": 8,
                                                    "identifier": "drivers\\flash\\soc_flash_nrf.c\\log_const_flash_nrf"
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "gpio",
                                    "size": 898,
                                    "identifier": "drivers\\gpio",
                                    "children": [
                                        {
                                            "name": "gpio_nrfx.c",
                                            "size": 898,
                                            "identifier": "drivers\\gpio\\gpio_nrfx.c",
                                            "children": [
                                                {
                                                    "name": "gpio_nrfx_port_get_raw",
                                                    "size": 14,
                                                    "identifier": "drivers\\gpio\\gpio_nrfx.c\\gpio_nrfx_port_get_raw"
                                                },
                                                {
                                                    "name": "gpio_nrfx_port_set_masked_raw",
                                                    "size": 24,
                                                    "identifier": "drivers\\gpio\\gpio_nrfx.c\\gpio_nrfx_port_set_masked_raw"
                                                },
                                                {
                                                    "name": "gpio_nrfx_port_set_bits_raw",
                                                    "size": 12,
                                                    "identifier": "drivers\\gpio\\gpio_nrfx.c\\gpio_nrfx_port_set_bits_raw"
                                                },
                                                {
                                                    "name": "gpio_nrfx_port_clear_bits_raw",
                                                    "size": 12,
                                                    "identifier": "drivers\\gpio\\gpio_nrfx.c\\gpio_nrfx_port_clear_bits_raw"
                                                },
                                                {
                                                    "name": "gpio_nrfx_port_toggle_bits",
                                                    "size": 26,
                                                    "identifier": "drivers\\gpio\\gpio_nrfx.c\\gpio_nrfx_port_toggle_bits"
                                                },
                                                {
                                                    "name": "gpio_nrfx_manage_callback",
                                                    "size": 82,
                                                    "identifier": "drivers\\gpio\\gpio_nrfx.c\\gpio_nrfx_manage_callback"
                                                },
                                                {
                                                    "name": "gpio_nrfx_pin_interrupt_configure",
                                                    "size": 212,
                                                    "identifier": "drivers\\gpio\\gpio_nrfx.c\\gpio_nrfx_pin_interrupt_configure"
                                                },
                                                {
                                                    "name": "gpio_nrfx_init",
                                                    "size": 56,
                                                    "identifier": "drivers\\gpio\\gpio_nrfx.c\\gpio_nrfx_init"
                                                },
                                                {
                                                    "name": "nrfx_gpio_handler",
                                                    "size": 76,
                                                    "identifier": "drivers\\gpio\\gpio_nrfx.c\\nrfx_gpio_handler"
                                                },
                                                {
                                                    "name": "gpio_nrfx_pin_configure",
                                                    "size": 296,
                                                    "identifier": "drivers\\gpio\\gpio_nrfx.c\\gpio_nrfx_pin_configure"
                                                },
                                                {
                                                    "name": "__init___device_dts_ord_17",
                                                    "size": 8,
                                                    "identifier": "drivers\\gpio\\gpio_nrfx.c\\__init___device_dts_ord_17"
                                                },
                                                {
                                                    "name": "gpio_nrfx_p1_cfg",
                                                    "size": 16,
                                                    "identifier": "drivers\\gpio\\gpio_nrfx.c\\gpio_nrfx_p1_cfg"
                                                },
                                                {
                                                    "name": "gpio_nrfx_drv_api_funcs",
                                                    "size": 36,
                                                    "identifier": "drivers\\gpio\\gpio_nrfx.c\\gpio_nrfx_drv_api_funcs"
                                                },
                                                {
                                                    "name": "__devstate_dts_ord_17",
                                                    "size": 2,
                                                    "identifier": "drivers\\gpio\\gpio_nrfx.c\\__devstate_dts_ord_17"
                                                },
                                                {
                                                    "name": "__init___device_dts_ord_2",
                                                    "size": 8,
                                                    "identifier": "drivers\\gpio\\gpio_nrfx.c\\__init___device_dts_ord_2"
                                                },
                                                {
                                                    "name": "gpio_nrfx_p0_cfg",
                                                    "size": 16,
                                                    "identifier": "drivers\\gpio\\gpio_nrfx.c\\gpio_nrfx_p0_cfg"
                                                },
                                                {
                                                    "name": "__devstate_dts_ord_2",
                                                    "size": 2,
                                                    "identifier": "drivers\\gpio\\gpio_nrfx.c\\__devstate_dts_ord_2"
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "i2c",
                                    "size": 736,
                                    "identifier": "drivers\\i2c",
                                    "children": [
                                        {
                                            "name": "i2c_nrfx_twi.c",
                                            "size": 728,
                                            "identifier": "drivers\\i2c\\i2c_nrfx_twi.c",
                                            "children": [
                                                {
                                                    "name": "i2c_nrfx_twi_configure",
                                                    "size": 50,
                                                    "identifier": "drivers\\i2c\\i2c_nrfx_twi.c\\i2c_nrfx_twi_configure"
                                                },
                                                {
                                                    "name": "i2c_nrfx_twi_recover_bus",
                                                    "size": 36,
                                                    "identifier": "drivers\\i2c\\i2c_nrfx_twi.c\\i2c_nrfx_twi_recover_bus"
                                                },
                                                {
                                                    "name": "twi_nrfx_pm_action",
                                                    "size": 84,
                                                    "identifier": "drivers\\i2c\\i2c_nrfx_twi.c\\twi_nrfx_pm_action"
                                                },
                                                {
                                                    "name": "event_handler",
                                                    "size": 52,
                                                    "identifier": "drivers\\i2c\\i2c_nrfx_twi.c\\event_handler"
                                                },
                                                {
                                                    "name": "twi_0_init",
                                                    "size": 64,
                                                    "identifier": "drivers\\i2c\\i2c_nrfx_twi.c\\twi_0_init"
                                                },
                                                {
                                                    "name": "i2c_nrfx_twi_transfer",
                                                    "size": 256,
                                                    "identifier": "drivers\\i2c\\i2c_nrfx_twi.c\\i2c_nrfx_twi_transfer"
                                                },
                                                {
                                                    "name": "__init___device_dts_ord_7",
                                                    "size": 8,
                                                    "identifier": "drivers\\i2c\\i2c_nrfx_twi.c\\__init___device_dts_ord_7"
                                                },
                                                {
                                                    "name": "twi_0z_config",
                                                    "size": 28,
                                                    "identifier": "drivers\\i2c\\i2c_nrfx_twi.c\\twi_0z_config"
                                                },
                                                {
                                                    "name": "i2c_nrfx_twi_driver_api",
                                                    "size": 24,
                                                    "identifier": "drivers\\i2c\\i2c_nrfx_twi.c\\i2c_nrfx_twi_driver_api"
                                                },
                                                {
                                                    "name": "__devstate_dts_ord_7",
                                                    "size": 2,
                                                    "identifier": "drivers\\i2c\\i2c_nrfx_twi.c\\__devstate_dts_ord_7"
                                                },
                                                {
                                                    "name": "twi_0_data",
                                                    "size": 56,
                                                    "identifier": "drivers\\i2c\\i2c_nrfx_twi.c\\twi_0_data"
                                                },
                                                {
                                                    "name": "__pm_device_dts_ord_7",
                                                    "size": 16,
                                                    "identifier": "drivers\\i2c\\i2c_nrfx_twi.c\\__pm_device_dts_ord_7"
                                                },
                                                {
                                                    "name": "__pinctrl_dev_config__device_dts_ord_7",
                                                    "size": 12,
                                                    "identifier": "drivers\\i2c\\i2c_nrfx_twi.c\\__pinctrl_dev_config__device_dts_ord_7"
                                                },
                                                {
                                                    "name": "__pinctrl_states__device_dts_ord_7",
                                                    "size": 16,
                                                    "identifier": "drivers\\i2c\\i2c_nrfx_twi.c\\__pinctrl_states__device_dts_ord_7"
                                                },
                                                {
                                                    "name": "__pinctrl_state_pins_0__device_dts_ord_7",
                                                    "size": 8,
                                                    "identifier": "drivers\\i2c\\i2c_nrfx_twi.c\\__pinctrl_state_pins_0__device_dts_ord_7"
                                                },
                                                {
                                                    "name": "__pinctrl_state_pins_1__device_dts_ord_7",
                                                    "size": 8,
                                                    "identifier": "drivers\\i2c\\i2c_nrfx_twi.c\\__pinctrl_state_pins_1__device_dts_ord_7"
                                                },
                                                {
                                                    "name": "log_const_i2c_nrfx_twi",
                                                    "size": 8,
                                                    "identifier": "drivers\\i2c\\i2c_nrfx_twi.c\\log_const_i2c_nrfx_twi"
                                                }
                                            ]
                                        },
                                        {
                                            "name": "i2c_common.c",
                                            "size": 8,
                                            "identifier": "drivers\\i2c\\i2c_common.c",
                                            "children": [
                                                {
                                                    "name": "log_const_i2c",
                                                    "size": 8,
                                                    "identifier": "drivers\\i2c\\i2c_common.c\\log_const_i2c"
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "pwm",
                                    "size": 696,
                                    "identifier": "drivers\\pwm",
                                    "children": [
                                        {
                                            "name": "pwm_nrfx.c",
                                            "size": 696,
                                            "identifier": "drivers\\pwm\\pwm_nrfx.c",
                                            "children": [
                                                {
                                                    "name": "pwm_nrfx_get_cycles_per_sec",
                                                    "size": 16,
                                                    "identifier": "drivers\\pwm\\pwm_nrfx.c\\pwm_nrfx_get_cycles_per_sec"
                                                },
                                                {
                                                    "name": "pwm_nrfx_init",
                                                    "size": 148,
                                                    "identifier": "drivers\\pwm\\pwm_nrfx.c\\pwm_nrfx_init"
                                                },
                                                {
                                                    "name": "pwm_nrfx_pm_action",
                                                    "size": 70,
                                                    "identifier": "drivers\\pwm\\pwm_nrfx.c\\pwm_nrfx_pm_action"
                                                },
                                                {
                                                    "name": "pwm_nrfx_set_cycles",
                                                    "size": 324,
                                                    "identifier": "drivers\\pwm\\pwm_nrfx.c\\pwm_nrfx_set_cycles"
                                                },
                                                {
                                                    "name": "__init___device_dts_ord_44",
                                                    "size": 8,
                                                    "identifier": "drivers\\pwm\\pwm_nrfx.c\\__init___device_dts_ord_44"
                                                },
                                                {
                                                    "name": "pwm_nrfx_0_config",
                                                    "size": 44,
                                                    "identifier": "drivers\\pwm\\pwm_nrfx.c\\pwm_nrfx_0_config"
                                                },
                                                {
                                                    "name": "pwm_nrfx_drv_api_funcs",
                                                    "size": 8,
                                                    "identifier": "drivers\\pwm\\pwm_nrfx.c\\pwm_nrfx_drv_api_funcs"
                                                },
                                                {
                                                    "name": "__devstate_dts_ord_44",
                                                    "size": 2,
                                                    "identifier": "drivers\\pwm\\pwm_nrfx.c\\__devstate_dts_ord_44"
                                                },
                                                {
                                                    "name": "__pm_device_dts_ord_44",
                                                    "size": 16,
                                                    "identifier": "drivers\\pwm\\pwm_nrfx.c\\__pm_device_dts_ord_44"
                                                },
                                                {
                                                    "name": "__pinctrl_dev_config__device_dts_ord_44",
                                                    "size": 12,
                                                    "identifier": "drivers\\pwm\\pwm_nrfx.c\\__pinctrl_dev_config__device_dts_ord_44"
                                                },
                                                {
                                                    "name": "__pinctrl_states__device_dts_ord_44",
                                                    "size": 16,
                                                    "identifier": "drivers\\pwm\\pwm_nrfx.c\\__pinctrl_states__device_dts_ord_44"
                                                },
                                                {
                                                    "name": "__pinctrl_state_pins_0__device_dts_ord_44",
                                                    "size": 12,
                                                    "identifier": "drivers\\pwm\\pwm_nrfx.c\\__pinctrl_state_pins_0__device_dts_ord_44"
                                                },
                                                {
                                                    "name": "__pinctrl_state_pins_1__device_dts_ord_44",
                                                    "size": 12,
                                                    "identifier": "drivers\\pwm\\pwm_nrfx.c\\__pinctrl_state_pins_1__device_dts_ord_44"
                                                },
                                                {
                                                    "name": "log_const_pwm_nrfx",
                                                    "size": 8,
                                                    "identifier": "drivers\\pwm\\pwm_nrfx.c\\log_const_pwm_nrfx"
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "spi",
                                    "size": 1468,
                                    "identifier": "drivers\\spi",
                                    "children": [
                                        {
                                            "name": "spi_nrfx_spi.c",
                                            "size": 1330,
                                            "identifier": "drivers\\spi\\spi_nrfx_spi.c",
                                            "children": [
                                                {
                                                    "name": "irq_connect1",
                                                    "size": 10,
                                                    "identifier": "drivers\\spi\\spi_nrfx_spi.c\\irq_connect1"
                                                },
                                                {
                                                    "name": "spi_nrfx_pm_action",
                                                    "size": 52,
                                                    "identifier": "drivers\\spi\\spi_nrfx_spi.c\\spi_nrfx_pm_action"
                                                },
                                                {
                                                    "name": "spi_nrfx_release",
                                                    "size": 36,
                                                    "identifier": "drivers\\spi\\spi_nrfx_spi.c\\spi_nrfx_release"
                                                },
                                                {
                                                    "name": "spi_nrfx_init",
                                                    "size": 150,
                                                    "identifier": "drivers\\spi\\spi_nrfx_spi.c\\spi_nrfx_init"
                                                },
                                                {
                                                    "name": "finish_transaction.isra.0",
                                                    "size": 32,
                                                    "identifier": "drivers\\spi\\spi_nrfx_spi.c\\finish_transaction.isra.0"
                                                },
                                                {
                                                    "name": "transfer_next_chunk",
                                                    "size": 108,
                                                    "identifier": "drivers\\spi\\spi_nrfx_spi.c\\transfer_next_chunk"
                                                },
                                                {
                                                    "name": "spi_nrfx_transceive",
                                                    "size": 700,
                                                    "identifier": "drivers\\spi\\spi_nrfx_spi.c\\spi_nrfx_transceive"
                                                },
                                                {
                                                    "name": "__init___device_dts_ord_108",
                                                    "size": 8,
                                                    "identifier": "drivers\\spi\\spi_nrfx_spi.c\\__init___device_dts_ord_108"
                                                },
                                                {
                                                    "name": "spi_1z_config",
                                                    "size": 36,
                                                    "identifier": "drivers\\spi\\spi_nrfx_spi.c\\spi_1z_config"
                                                },
                                                {
                                                    "name": "spi_nrfx_driver_api",
                                                    "size": 8,
                                                    "identifier": "drivers\\spi\\spi_nrfx_spi.c\\spi_nrfx_driver_api"
                                                },
                                                {
                                                    "name": "__devstate_dts_ord_108",
                                                    "size": 2,
                                                    "identifier": "drivers\\spi\\spi_nrfx_spi.c\\__devstate_dts_ord_108"
                                                },
                                                {
                                                    "name": "spi_1_data",
                                                    "size": 112,
                                                    "identifier": "drivers\\spi\\spi_nrfx_spi.c\\spi_1_data"
                                                },
                                                {
                                                    "name": "__pm_device_dts_ord_108",
                                                    "size": 16,
                                                    "identifier": "drivers\\spi\\spi_nrfx_spi.c\\__pm_device_dts_ord_108"
                                                },
                                                {
                                                    "name": "__pinctrl_dev_config__device_dts_ord_108",
                                                    "size": 12,
                                                    "identifier": "drivers\\spi\\spi_nrfx_spi.c\\__pinctrl_dev_config__device_dts_ord_108"
                                                },
                                                {
                                                    "name": "__pinctrl_states__device_dts_ord_108",
                                                    "size": 16,
                                                    "identifier": "drivers\\spi\\spi_nrfx_spi.c\\__pinctrl_states__device_dts_ord_108"
                                                },
                                                {
                                                    "name": "__pinctrl_state_pins_0__device_dts_ord_108",
                                                    "size": 12,
                                                    "identifier": "drivers\\spi\\spi_nrfx_spi.c\\__pinctrl_state_pins_0__device_dts_ord_108"
                                                },
                                                {
                                                    "name": "__pinctrl_state_pins_1__device_dts_ord_108",
                                                    "size": 12,
                                                    "identifier": "drivers\\spi\\spi_nrfx_spi.c\\__pinctrl_state_pins_1__device_dts_ord_108"
                                                },
                                                {
                                                    "name": "log_const_spi_nrfx_spi",
                                                    "size": 8,
                                                    "identifier": "drivers\\spi\\spi_nrfx_spi.c\\log_const_spi_nrfx_spi"
                                                }
                                            ]
                                        },
                                        {
                                            "name": "spi_context.h",
                                            "size": 138,
                                            "identifier": "drivers\\spi\\spi_context.h",
                                            "children": [
                                                {
                                                    "name": "spi_context_get_next_buf.constprop.0",
                                                    "size": 38,
                                                    "identifier": "drivers\\spi\\spi_context.h\\spi_context_get_next_buf.constprop.0"
                                                },
                                                {
                                                    "name": "_spi_context_cs_control",
                                                    "size": 68,
                                                    "identifier": "drivers\\spi\\spi_context.h\\_spi_context_cs_control"
                                                },
                                                {
                                                    "name": "spi_context_unlock_unconditionally",
                                                    "size": 32,
                                                    "identifier": "drivers\\spi\\spi_context.h\\spi_context_unlock_unconditionally"
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "timer",
                                    "size": 1078,
                                    "identifier": "drivers\\timer",
                                    "children": [
                                        {
                                            "name": "nrf_rtc_timer.c",
                                            "size": 1076,
                                            "identifier": "drivers\\timer\\nrf_rtc_timer.c",
                                            "children": [
                                                {
                                                    "name": "event_clear",
                                                    "size": 24,
                                                    "identifier": "drivers\\timer\\nrf_rtc_timer.c\\event_clear"
                                                },
                                                {
                                                    "name": "compare_int_lock",
                                                    "size": 72,
                                                    "identifier": "drivers\\timer\\nrf_rtc_timer.c\\compare_int_lock"
                                                },
                                                {
                                                    "name": "sys_clock_timeout_handler",
                                                    "size": 72,
                                                    "identifier": "drivers\\timer\\nrf_rtc_timer.c\\sys_clock_timeout_handler"
                                                },
                                                {
                                                    "name": "compare_int_unlock",
                                                    "size": 92,
                                                    "identifier": "drivers\\timer\\nrf_rtc_timer.c\\compare_int_unlock"
                                                },
                                                {
                                                    "name": "compare_set",
                                                    "size": 284,
                                                    "identifier": "drivers\\timer\\nrf_rtc_timer.c\\compare_set"
                                                },
                                                {
                                                    "name": "sys_clock_driver_init",
                                                    "size": 140,
                                                    "identifier": "drivers\\timer\\nrf_rtc_timer.c\\sys_clock_driver_init"
                                                },
                                                {
                                                    "name": "__init_sys_clock_driver_init",
                                                    "size": 8,
                                                    "identifier": "drivers\\timer\\nrf_rtc_timer.c\\__init_sys_clock_driver_init"
                                                },
                                                {
                                                    "name": "sys_clock_elapsed",
                                                    "size": 20,
                                                    "identifier": "drivers\\timer\\nrf_rtc_timer.c\\sys_clock_elapsed"
                                                },
                                                {
                                                    "name": "z_nrf_rtc_timer_read",
                                                    "size": 68,
                                                    "identifier": "drivers\\timer\\nrf_rtc_timer.c\\z_nrf_rtc_timer_read"
                                                },
                                                {
                                                    "name": "rtc_nrf_isr",
                                                    "size": 196,
                                                    "identifier": "drivers\\timer\\nrf_rtc_timer.c\\rtc_nrf_isr"
                                                },
                                                {
                                                    "name": "sys_clock_set_timeout",
                                                    "size": 100,
                                                    "identifier": "drivers\\timer\\nrf_rtc_timer.c\\sys_clock_set_timeout"
                                                }
                                            ]
                                        },
                                        {
                                            "name": "sys_clock_init.c",
                                            "size": 2,
                                            "identifier": "drivers\\timer\\sys_clock_init.c",
                                            "children": [
                                                {
                                                    "name": "sys_clock_idle_exit",
                                                    "size": 2,
                                                    "identifier": "drivers\\timer\\sys_clock_init.c\\sys_clock_idle_exit"
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "eeprom",
                                    "size": 850,
                                    "identifier": "drivers\\eeprom",
                                    "children": [
                                        {
                                            "name": "eeprom_at2x.c",
                                            "size": 850,
                                            "identifier": "drivers\\eeprom\\eeprom_at2x.c",
                                            "children": [
                                                {
                                                    "name": "eeprom_at2x_size",
                                                    "size": 6,
                                                    "identifier": "drivers\\eeprom\\eeprom_at2x.c\\eeprom_at2x_size"
                                                },
                                                {
                                                    "name": "eeprom_at2x_write",
                                                    "size": 112,
                                                    "identifier": "drivers\\eeprom\\eeprom_at2x.c\\eeprom_at2x_write"
                                                },
                                                {
                                                    "name": "eeprom_at2x_init",
                                                    "size": 30,
                                                    "identifier": "drivers\\eeprom\\eeprom_at2x.c\\eeprom_at2x_init"
                                                },
                                                {
                                                    "name": "eeprom_at25_bus_is_ready",
                                                    "size": 28,
                                                    "identifier": "drivers\\eeprom\\eeprom_at2x.c\\eeprom_at25_bus_is_ready"
                                                },
                                                {
                                                    "name": "eeprom_at2x_read",
                                                    "size": 100,
                                                    "identifier": "drivers\\eeprom\\eeprom_at2x.c\\eeprom_at2x_read"
                                                },
                                                {
                                                    "name": "eeprom_at25_wait_for_idle",
                                                    "size": 156,
                                                    "identifier": "drivers\\eeprom\\eeprom_at2x.c\\eeprom_at25_wait_for_idle"
                                                },
                                                {
                                                    "name": "eeprom_at25_write",
                                                    "size": 174,
                                                    "identifier": "drivers\\eeprom\\eeprom_at2x.c\\eeprom_at25_write"
                                                },
                                                {
                                                    "name": "eeprom_at25_read",
                                                    "size": 174,
                                                    "identifier": "drivers\\eeprom\\eeprom_at2x.c\\eeprom_at25_read"
                                                },
                                                {
                                                    "name": "__init___device_dts_ord_110",
                                                    "size": 8,
                                                    "identifier": "drivers\\eeprom\\eeprom_at2x.c\\__init___device_dts_ord_110"
                                                },
                                                {
                                                    "name": "eeprom_at25_config_0",
                                                    "size": 40,
                                                    "identifier": "drivers\\eeprom\\eeprom_at2x.c\\eeprom_at25_config_0"
                                                },
                                                {
                                                    "name": "eeprom_at2x_api",
                                                    "size": 12,
                                                    "identifier": "drivers\\eeprom\\eeprom_at2x.c\\eeprom_at2x_api"
                                                },
                                                {
                                                    "name": "__devstate_dts_ord_110",
                                                    "size": 2,
                                                    "identifier": "drivers\\eeprom\\eeprom_at2x.c\\__devstate_dts_ord_110"
                                                },
                                                {
                                                    "name": "log_const_eeprom_at2x",
                                                    "size": 8,
                                                    "identifier": "drivers\\eeprom\\eeprom_at2x.c\\log_const_eeprom_at2x"
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "pinctrl",
                                    "size": 358,
                                    "identifier": "drivers\\pinctrl",
                                    "children": [
                                        {
                                            "name": "common.c",
                                            "size": 38,
                                            "identifier": "drivers\\pinctrl\\common.c",
                                            "children": [
                                                {
                                                    "name": "pinctrl_lookup_state",
                                                    "size": 38,
                                                    "identifier": "drivers\\pinctrl\\common.c\\pinctrl_lookup_state"
                                                }
                                            ]
                                        },
                                        {
                                            "name": "pinctrl_nrf.c",
                                            "size": 320,
                                            "identifier": "drivers\\pinctrl\\pinctrl_nrf.c",
                                            "children": [
                                                {
                                                    "name": "pinctrl_configure_pins",
                                                    "size": 320,
                                                    "identifier": "drivers\\pinctrl\\pinctrl_nrf.c\\pinctrl_configure_pins"
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "hwinfo",
                                    "size": 40,
                                    "identifier": "drivers\\hwinfo",
                                    "children": [
                                        {
                                            "name": "hwinfo_nrf.c",
                                            "size": 40,
                                            "identifier": "drivers\\hwinfo\\hwinfo_nrf.c",
                                            "children": [
                                                {
                                                    "name": "z_impl_hwinfo_get_device_id",
                                                    "size": 40,
                                                    "identifier": "drivers\\hwinfo\\hwinfo_nrf.c\\z_impl_hwinfo_get_device_id"
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "name": "kernel",
                            "size": 9042,
                            "identifier": "kernel",
                            "children": [
                                {
                                    "name": "init.c",
                                    "size": 508,
                                    "identifier": "kernel\\init.c",
                                    "children": [
                                        {
                                            "name": "z_sys_init_run_level",
                                            "size": 72,
                                            "identifier": "kernel\\init.c\\z_sys_init_run_level"
                                        },
                                        {
                                            "name": "bg_thread_main",
                                            "size": 56,
                                            "identifier": "kernel\\init.c\\bg_thread_main"
                                        },
                                        {
                                            "name": "log_const_os",
                                            "size": 8,
                                            "identifier": "kernel\\init.c\\log_const_os"
                                        },
                                        {
                                            "name": "z_init_cpu",
                                            "size": 120,
                                            "identifier": "kernel\\init.c\\z_init_cpu"
                                        },
                                        {
                                            "name": "z_bss_zero",
                                            "size": 24,
                                            "identifier": "kernel\\init.c\\z_bss_zero"
                                        },
                                        {
                                            "name": "z_early_memcpy",
                                            "size": 4,
                                            "identifier": "kernel\\init.c\\z_early_memcpy"
                                        },
                                        {
                                            "name": "z_early_memset",
                                            "size": 4,
                                            "identifier": "kernel\\init.c\\z_early_memset"
                                        },
                                        {
                                            "name": "z_cstart",
                                            "size": 220,
                                            "identifier": "kernel\\init.c\\z_cstart"
                                        }
                                    ]
                                },
                                {
                                    "name": "kheap.c",
                                    "size": 272,
                                    "identifier": "kernel\\kheap.c",
                                    "children": [
                                        {
                                            "name": "statics_init",
                                            "size": 36,
                                            "identifier": "kernel\\kheap.c\\statics_init"
                                        },
                                        {
                                            "name": "__init_statics_init_pre",
                                            "size": 8,
                                            "identifier": "kernel\\kheap.c\\__init_statics_init_pre"
                                        },
                                        {
                                            "name": "k_heap_aligned_alloc",
                                            "size": 154,
                                            "identifier": "kernel\\kheap.c\\k_heap_aligned_alloc"
                                        },
                                        {
                                            "name": "k_heap_free",
                                            "size": 58,
                                            "identifier": "kernel\\kheap.c\\k_heap_free"
                                        },
                                        {
                                            "name": "k_heap_init",
                                            "size": 16,
                                            "identifier": "kernel\\kheap.c\\k_heap_init"
                                        }
                                    ]
                                },
                                {
                                    "name": "mem_slab.c",
                                    "size": 264,
                                    "identifier": "kernel\\mem_slab.c",
                                    "children": [
                                        {
                                            "name": "create_free_list",
                                            "size": 44,
                                            "identifier": "kernel\\mem_slab.c\\create_free_list"
                                        },
                                        {
                                            "name": "init_mem_slab_module",
                                            "size": 36,
                                            "identifier": "kernel\\mem_slab.c\\init_mem_slab_module"
                                        },
                                        {
                                            "name": "__init_init_mem_slab_module",
                                            "size": 8,
                                            "identifier": "kernel\\mem_slab.c\\__init_init_mem_slab_module"
                                        },
                                        {
                                            "name": "k_mem_slab_alloc",
                                            "size": 92,
                                            "identifier": "kernel\\mem_slab.c\\k_mem_slab_alloc"
                                        },
                                        {
                                            "name": "k_mem_slab_free",
                                            "size": 84,
                                            "identifier": "kernel\\mem_slab.c\\k_mem_slab_free"
                                        }
                                    ]
                                },
                                {
                                    "name": "mutex.c",
                                    "size": 398,
                                    "identifier": "kernel\\mutex.c",
                                    "children": [
                                        {
                                            "name": "adjust_owner_prio.isra.0",
                                            "size": 16,
                                            "identifier": "kernel\\mutex.c\\adjust_owner_prio.isra.0"
                                        },
                                        {
                                            "name": "z_impl_k_mutex_init",
                                            "size": 14,
                                            "identifier": "kernel\\mutex.c\\z_impl_k_mutex_init"
                                        },
                                        {
                                            "name": "z_impl_k_mutex_lock",
                                            "size": 244,
                                            "identifier": "kernel\\mutex.c\\z_impl_k_mutex_lock"
                                        },
                                        {
                                            "name": "z_impl_k_mutex_unlock",
                                            "size": 124,
                                            "identifier": "kernel\\mutex.c\\z_impl_k_mutex_unlock"
                                        }
                                    ]
                                },
                                {
                                    "name": "queue.c",
                                    "size": 408,
                                    "identifier": "kernel\\queue.c",
                                    "children": [
                                        {
                                            "name": "queue_insert",
                                            "size": 208,
                                            "identifier": "kernel\\queue.c\\queue_insert"
                                        },
                                        {
                                            "name": "z_impl_k_queue_init",
                                            "size": 26,
                                            "identifier": "kernel\\queue.c\\z_impl_k_queue_init"
                                        },
                                        {
                                            "name": "z_impl_k_queue_get",
                                            "size": 100,
                                            "identifier": "kernel\\queue.c\\z_impl_k_queue_get"
                                        },
                                        {
                                            "name": "k_queue_prepend",
                                            "size": 20,
                                            "identifier": "kernel\\queue.c\\k_queue_prepend"
                                        },
                                        {
                                            "name": "z_impl_k_queue_peek_head",
                                            "size": 8,
                                            "identifier": "kernel\\queue.c\\z_impl_k_queue_peek_head"
                                        },
                                        {
                                            "name": "z_queue_node_peek",
                                            "size": 24,
                                            "identifier": "kernel\\queue.c\\z_queue_node_peek"
                                        },
                                        {
                                            "name": "k_queue_append",
                                            "size": 22,
                                            "identifier": "kernel\\queue.c\\k_queue_append"
                                        }
                                    ]
                                },
                                {
                                    "name": "system_work_q.c",
                                    "size": 60,
                                    "identifier": "kernel\\system_work_q.c",
                                    "children": [
                                        {
                                            "name": "k_sys_work_q_init",
                                            "size": 52,
                                            "identifier": "kernel\\system_work_q.c\\k_sys_work_q_init"
                                        },
                                        {
                                            "name": "__init_k_sys_work_q_init",
                                            "size": 8,
                                            "identifier": "kernel\\system_work_q.c\\__init_k_sys_work_q_init"
                                        }
                                    ]
                                },
                                {
                                    "name": "work.c",
                                    "size": 1246,
                                    "identifier": "kernel\\work.c",
                                    "children": [
                                        {
                                            "name": "flag_test_and_clear",
                                            "size": 22,
                                            "identifier": "kernel\\work.c\\flag_test_and_clear"
                                        },
                                        {
                                            "name": "unschedule_locked",
                                            "size": 30,
                                            "identifier": "kernel\\work.c\\unschedule_locked"
                                        },
                                        {
                                            "name": "notify_queue_locked.isra.0",
                                            "size": 14,
                                            "identifier": "kernel\\work.c\\notify_queue_locked.isra.0"
                                        },
                                        {
                                            "name": "cancel_async_locked",
                                            "size": 102,
                                            "identifier": "kernel\\work.c\\cancel_async_locked"
                                        },
                                        {
                                            "name": "work_queue_main",
                                            "size": 312,
                                            "identifier": "kernel\\work.c\\work_queue_main"
                                        },
                                        {
                                            "name": "submit_to_queue_locked",
                                            "size": 180,
                                            "identifier": "kernel\\work.c\\submit_to_queue_locked"
                                        },
                                        {
                                            "name": "work_timeout",
                                            "size": 62,
                                            "identifier": "kernel\\work.c\\work_timeout"
                                        },
                                        {
                                            "name": "z_work_submit_to_queue",
                                            "size": 40,
                                            "identifier": "kernel\\work.c\\z_work_submit_to_queue"
                                        },
                                        {
                                            "name": "k_work_submit",
                                            "size": 12,
                                            "identifier": "kernel\\work.c\\k_work_submit"
                                        },
                                        {
                                            "name": "k_work_init",
                                            "size": 18,
                                            "identifier": "kernel\\work.c\\k_work_init"
                                        },
                                        {
                                            "name": "k_work_reschedule_for_queue",
                                            "size": 92,
                                            "identifier": "kernel\\work.c\\k_work_reschedule_for_queue"
                                        },
                                        {
                                            "name": "k_work_schedule_for_queue",
                                            "size": 84,
                                            "identifier": "kernel\\work.c\\k_work_schedule_for_queue"
                                        },
                                        {
                                            "name": "k_work_submit_to_queue",
                                            "size": 34,
                                            "identifier": "kernel\\work.c\\k_work_submit_to_queue"
                                        },
                                        {
                                            "name": "k_work_queue_start",
                                            "size": 112,
                                            "identifier": "kernel\\work.c\\k_work_queue_start"
                                        },
                                        {
                                            "name": "k_work_busy_get",
                                            "size": 32,
                                            "identifier": "kernel\\work.c\\k_work_busy_get"
                                        },
                                        {
                                            "name": "k_work_queue_init",
                                            "size": 12,
                                            "identifier": "kernel\\work.c\\k_work_queue_init"
                                        },
                                        {
                                            "name": "k_work_cancel_delayable",
                                            "size": 40,
                                            "identifier": "kernel\\work.c\\k_work_cancel_delayable"
                                        },
                                        {
                                            "name": "k_work_reschedule",
                                            "size": 12,
                                            "identifier": "kernel\\work.c\\k_work_reschedule"
                                        },
                                        {
                                            "name": "k_work_schedule",
                                            "size": 12,
                                            "identifier": "kernel\\work.c\\k_work_schedule"
                                        },
                                        {
                                            "name": "k_work_init_delayable",
                                            "size": 24,
                                            "identifier": "kernel\\work.c\\k_work_init_delayable"
                                        }
                                    ]
                                },
                                {
                                    "name": "sched.c",
                                    "size": 2244,
                                    "identifier": "kernel\\sched.c",
                                    "children": [
                                        {
                                            "name": "sliceable",
                                            "size": 60,
                                            "identifier": "kernel\\sched.c\\sliceable"
                                        },
                                        {
                                            "name": "slice_timeout",
                                            "size": 32,
                                            "identifier": "kernel\\sched.c\\slice_timeout"
                                        },
                                        {
                                            "name": "unpend_thread_no_timeout",
                                            "size": 20,
                                            "identifier": "kernel\\sched.c\\unpend_thread_no_timeout"
                                        },
                                        {
                                            "name": "update_cache",
                                            "size": 60,
                                            "identifier": "kernel\\sched.c\\update_cache"
                                        },
                                        {
                                            "name": "move_thread_to_end_of_prio_q",
                                            "size": 116,
                                            "identifier": "kernel\\sched.c\\move_thread_to_end_of_prio_q"
                                        },
                                        {
                                            "name": "ready_thread",
                                            "size": 104,
                                            "identifier": "kernel\\sched.c\\ready_thread"
                                        },
                                        {
                                            "name": "unready_thread",
                                            "size": 48,
                                            "identifier": "kernel\\sched.c\\unready_thread"
                                        },
                                        {
                                            "name": "add_to_waitq_locked",
                                            "size": 80,
                                            "identifier": "kernel\\sched.c\\add_to_waitq_locked"
                                        },
                                        {
                                            "name": "pend_locked",
                                            "size": 48,
                                            "identifier": "kernel\\sched.c\\pend_locked"
                                        },
                                        {
                                            "name": "z_tick_sleep",
                                            "size": 136,
                                            "identifier": "kernel\\sched.c\\z_tick_sleep"
                                        },
                                        {
                                            "name": "z_reset_time_slice",
                                            "size": 80,
                                            "identifier": "kernel\\sched.c\\z_reset_time_slice"
                                        },
                                        {
                                            "name": "z_impl_k_sleep",
                                            "size": 52,
                                            "identifier": "kernel\\sched.c\\z_impl_k_sleep"
                                        },
                                        {
                                            "name": "z_time_slice",
                                            "size": 96,
                                            "identifier": "kernel\\sched.c\\z_time_slice"
                                        },
                                        {
                                            "name": "z_impl_z_current_get",
                                            "size": 12,
                                            "identifier": "kernel\\sched.c\\z_impl_z_current_get"
                                        },
                                        {
                                            "name": "z_reschedule",
                                            "size": 36,
                                            "identifier": "kernel\\sched.c\\z_reschedule"
                                        },
                                        {
                                            "name": "z_thread_timeout",
                                            "size": 8,
                                            "identifier": "kernel\\sched.c\\z_thread_timeout"
                                        },
                                        {
                                            "name": "z_sched_init",
                                            "size": 16,
                                            "identifier": "kernel\\sched.c\\z_sched_init"
                                        },
                                        {
                                            "name": "z_sched_wake",
                                            "size": 72,
                                            "identifier": "kernel\\sched.c\\z_sched_wake"
                                        },
                                        {
                                            "name": "z_unpend_all",
                                            "size": 32,
                                            "identifier": "kernel\\sched.c\\z_unpend_all"
                                        },
                                        {
                                            "name": "k_sched_unlock",
                                            "size": 56,
                                            "identifier": "kernel\\sched.c\\k_sched_unlock"
                                        },
                                        {
                                            "name": "z_unpend_thread",
                                            "size": 48,
                                            "identifier": "kernel\\sched.c\\z_unpend_thread"
                                        },
                                        {
                                            "name": "z_ready_thread",
                                            "size": 32,
                                            "identifier": "kernel\\sched.c\\z_ready_thread"
                                        },
                                        {
                                            "name": "z_sched_prio_cmp",
                                            "size": 18,
                                            "identifier": "kernel\\sched.c\\z_sched_prio_cmp"
                                        },
                                        {
                                            "name": "z_sched_start",
                                            "size": 60,
                                            "identifier": "kernel\\sched.c\\z_sched_start"
                                        },
                                        {
                                            "name": "z_pend_curr",
                                            "size": 60,
                                            "identifier": "kernel\\sched.c\\z_pend_curr"
                                        },
                                        {
                                            "name": "z_impl_k_thread_suspend",
                                            "size": 100,
                                            "identifier": "kernel\\sched.c\\z_impl_k_thread_suspend"
                                        },
                                        {
                                            "name": "k_sched_lock",
                                            "size": 40,
                                            "identifier": "kernel\\sched.c\\k_sched_lock"
                                        },
                                        {
                                            "name": "z_unpend_first_thread",
                                            "size": 56,
                                            "identifier": "kernel\\sched.c\\z_unpend_first_thread"
                                        },
                                        {
                                            "name": "z_impl_k_yield",
                                            "size": 124,
                                            "identifier": "kernel\\sched.c\\z_impl_k_yield"
                                        },
                                        {
                                            "name": "z_set_prio",
                                            "size": 140,
                                            "identifier": "kernel\\sched.c\\z_set_prio"
                                        },
                                        {
                                            "name": "z_thread_abort",
                                            "size": 192,
                                            "identifier": "kernel\\sched.c\\z_thread_abort"
                                        },
                                        {
                                            "name": "z_unpend1_no_timeout",
                                            "size": 46,
                                            "identifier": "kernel\\sched.c\\z_unpend1_no_timeout"
                                        },
                                        {
                                            "name": "z_sched_wait",
                                            "size": 36,
                                            "identifier": "kernel\\sched.c\\z_sched_wait"
                                        },
                                        {
                                            "name": "z_reschedule_irqlock",
                                            "size": 24,
                                            "identifier": "kernel\\sched.c\\z_reschedule_irqlock"
                                        },
                                        {
                                            "name": "z_sched_wake_thread",
                                            "size": 68,
                                            "identifier": "kernel\\sched.c\\z_sched_wake_thread"
                                        },
                                        {
                                            "name": "z_unpend_thread_no_timeout",
                                            "size": 36,
                                            "identifier": "kernel\\sched.c\\z_unpend_thread_no_timeout"
                                        }
                                    ]
                                },
                                {
                                    "name": "include",
                                    "size": 22,
                                    "identifier": "kernel\\include",
                                    "children": [
                                        {
                                            "name": "ksched.h",
                                            "size": 20,
                                            "identifier": "kernel\\include\\ksched.h",
                                            "children": [
                                                {
                                                    "name": "z_reschedule_unlocked",
                                                    "size": 20,
                                                    "identifier": "kernel\\include\\ksched.h\\z_reschedule_unlocked"
                                                }
                                            ]
                                        },
                                        {
                                            "name": "kernel_offsets.h",
                                            "size": 2,
                                            "identifier": "kernel\\include\\kernel_offsets.h",
                                            "children": [
                                                {
                                                    "name": "_OffsetAbsSyms",
                                                    "size": 2,
                                                    "identifier": "kernel\\include\\kernel_offsets.h\\_OffsetAbsSyms"
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "timeout.c",
                                    "size": 812,
                                    "identifier": "kernel\\timeout.c",
                                    "children": [
                                        {
                                            "name": "elapsed",
                                            "size": 20,
                                            "identifier": "kernel\\timeout.c\\elapsed"
                                        },
                                        {
                                            "name": "next_timeout",
                                            "size": 64,
                                            "identifier": "kernel\\timeout.c\\next_timeout"
                                        },
                                        {
                                            "name": "timeout_list",
                                            "size": 8,
                                            "identifier": "kernel\\timeout.c\\timeout_list"
                                        },
                                        {
                                            "name": "remove_timeout",
                                            "size": 56,
                                            "identifier": "kernel\\timeout.c\\remove_timeout"
                                        },
                                        {
                                            "name": "sys_clock_announce",
                                            "size": 212,
                                            "identifier": "kernel\\timeout.c\\sys_clock_announce"
                                        },
                                        {
                                            "name": "sys_clock_timeout_end_calc",
                                            "size": 68,
                                            "identifier": "kernel\\timeout.c\\sys_clock_timeout_end_calc"
                                        },
                                        {
                                            "name": "z_abort_timeout",
                                            "size": 44,
                                            "identifier": "kernel\\timeout.c\\z_abort_timeout"
                                        },
                                        {
                                            "name": "z_impl_k_uptime_ticks",
                                            "size": 4,
                                            "identifier": "kernel\\timeout.c\\z_impl_k_uptime_ticks"
                                        },
                                        {
                                            "name": "sys_clock_tick_get",
                                            "size": 52,
                                            "identifier": "kernel\\timeout.c\\sys_clock_tick_get"
                                        },
                                        {
                                            "name": "z_add_timeout",
                                            "size": 236,
                                            "identifier": "kernel\\timeout.c\\z_add_timeout"
                                        },
                                        {
                                            "name": "z_impl_k_busy_wait",
                                            "size": 8,
                                            "identifier": "kernel\\timeout.c\\z_impl_k_busy_wait"
                                        },
                                        {
                                            "name": "sys_clock_tick_get_32",
                                            "size": 8,
                                            "identifier": "kernel\\timeout.c\\sys_clock_tick_get_32"
                                        },
                                        {
                                            "name": "z_get_next_timeout_expiry",
                                            "size": 32,
                                            "identifier": "kernel\\timeout.c\\z_get_next_timeout_expiry"
                                        }
                                    ]
                                },
                                {
                                    "name": "poll.c",
                                    "size": 960,
                                    "identifier": "kernel\\poll.c",
                                    "children": [
                                        {
                                            "name": "add_event",
                                            "size": 98,
                                            "identifier": "kernel\\poll.c\\add_event"
                                        },
                                        {
                                            "name": "register_events",
                                            "size": 250,
                                            "identifier": "kernel\\poll.c\\register_events"
                                        },
                                        {
                                            "name": "signal_poll_event",
                                            "size": 180,
                                            "identifier": "kernel\\poll.c\\signal_poll_event"
                                        },
                                        {
                                            "name": "clear_event_registrations",
                                            "size": 94,
                                            "identifier": "kernel\\poll.c\\clear_event_registrations"
                                        },
                                        {
                                            "name": "z_impl_k_poll_signal_init",
                                            "size": 10,
                                            "identifier": "kernel\\poll.c\\z_impl_k_poll_signal_init"
                                        },
                                        {
                                            "name": "z_impl_k_poll",
                                            "size": 184,
                                            "identifier": "kernel\\poll.c\\z_impl_k_poll"
                                        },
                                        {
                                            "name": "z_impl_k_poll_signal_raise",
                                            "size": 80,
                                            "identifier": "kernel\\poll.c\\z_impl_k_poll_signal_raise"
                                        },
                                        {
                                            "name": "k_poll_event_init",
                                            "size": 30,
                                            "identifier": "kernel\\poll.c\\k_poll_event_init"
                                        },
                                        {
                                            "name": "z_handle_obj_poll_events",
                                            "size": 28,
                                            "identifier": "kernel\\poll.c\\z_handle_obj_poll_events"
                                        },
                                        {
                                            "name": "z_impl_k_poll_signal_reset",
                                            "size": 6,
                                            "identifier": "kernel\\poll.c\\z_impl_k_poll_signal_reset"
                                        }
                                    ]
                                },
                                {
                                    "name": "idle.c",
                                    "size": 70,
                                    "identifier": "kernel\\idle.c",
                                    "children": [
                                        {
                                            "name": "z_pm_save_idle_exit",
                                            "size": 14,
                                            "identifier": "kernel\\idle.c\\z_pm_save_idle_exit"
                                        },
                                        {
                                            "name": "idle",
                                            "size": 56,
                                            "identifier": "kernel\\idle.c\\idle"
                                        }
                                    ]
                                },
                                {
                                    "name": "thread.c",
                                    "size": 456,
                                    "identifier": "kernel\\thread.c",
                                    "children": [
                                        {
                                            "name": "k_thread_name_get",
                                            "size": 4,
                                            "identifier": "kernel\\thread.c\\k_thread_name_get"
                                        },
                                        {
                                            "name": "z_impl_k_thread_name_set",
                                            "size": 32,
                                            "identifier": "kernel\\thread.c\\z_impl_k_thread_name_set"
                                        },
                                        {
                                            "name": "z_setup_new_thread",
                                            "size": 132,
                                            "identifier": "kernel\\thread.c\\z_setup_new_thread"
                                        },
                                        {
                                            "name": "z_impl_k_thread_create",
                                            "size": 88,
                                            "identifier": "kernel\\thread.c\\z_impl_k_thread_create"
                                        },
                                        {
                                            "name": "k_is_in_isr",
                                            "size": 12,
                                            "identifier": "kernel\\thread.c\\k_is_in_isr"
                                        },
                                        {
                                            "name": "z_impl_k_thread_start",
                                            "size": 4,
                                            "identifier": "kernel\\thread.c\\z_impl_k_thread_start"
                                        },
                                        {
                                            "name": "z_init_static_threads",
                                            "size": 184,
                                            "identifier": "kernel\\thread.c\\z_init_static_threads"
                                        }
                                    ]
                                },
                                {
                                    "name": "xip.c",
                                    "size": 52,
                                    "identifier": "kernel\\xip.c",
                                    "children": [
                                        {
                                            "name": "z_data_copy",
                                            "size": 52,
                                            "identifier": "kernel\\xip.c\\z_data_copy"
                                        }
                                    ]
                                },
                                {
                                    "name": "msg_q.c",
                                    "size": 392,
                                    "identifier": "kernel\\msg_q.c",
                                    "children": [
                                        {
                                            "name": "z_impl_k_msgq_put",
                                            "size": 172,
                                            "identifier": "kernel\\msg_q.c\\z_impl_k_msgq_put"
                                        },
                                        {
                                            "name": "k_msgq_init",
                                            "size": 40,
                                            "identifier": "kernel\\msg_q.c\\k_msgq_init"
                                        },
                                        {
                                            "name": "z_impl_k_msgq_get",
                                            "size": 180,
                                            "identifier": "kernel\\msg_q.c\\z_impl_k_msgq_get"
                                        }
                                    ]
                                },
                                {
                                    "name": "timer.c",
                                    "size": 406,
                                    "identifier": "kernel\\timer.c",
                                    "children": [
                                        {
                                            "name": "z_impl_k_timer_stop",
                                            "size": 58,
                                            "identifier": "kernel\\timer.c\\z_impl_k_timer_stop"
                                        },
                                        {
                                            "name": "z_timer_expiration_handler",
                                            "size": 228,
                                            "identifier": "kernel\\timer.c\\z_timer_expiration_handler"
                                        },
                                        {
                                            "name": "k_timer_init",
                                            "size": 24,
                                            "identifier": "kernel\\timer.c\\k_timer_init"
                                        },
                                        {
                                            "name": "z_impl_k_timer_start",
                                            "size": 96,
                                            "identifier": "kernel\\timer.c\\z_impl_k_timer_start"
                                        }
                                    ]
                                },
                                {
                                    "name": "errno.c",
                                    "size": 16,
                                    "identifier": "kernel\\errno.c",
                                    "children": [
                                        {
                                            "name": "z_impl_z_errno",
                                            "size": 12,
                                            "identifier": "kernel\\errno.c\\z_impl_z_errno"
                                        },
                                        {
                                            "name": "_k_neg_eagain",
                                            "size": 4,
                                            "identifier": "kernel\\errno.c\\_k_neg_eagain"
                                        }
                                    ]
                                },
                                {
                                    "name": "mempool.c",
                                    "size": 78,
                                    "identifier": "kernel\\mempool.c",
                                    "children": [
                                        {
                                            "name": "z_thread_aligned_alloc",
                                            "size": 64,
                                            "identifier": "kernel\\mempool.c\\z_thread_aligned_alloc"
                                        },
                                        {
                                            "name": "k_free",
                                            "size": 14,
                                            "identifier": "kernel\\mempool.c\\k_free"
                                        }
                                    ]
                                },
                                {
                                    "name": "sem.c",
                                    "size": 260,
                                    "identifier": "kernel\\sem.c",
                                    "children": [
                                        {
                                            "name": "z_impl_k_sem_take",
                                            "size": 80,
                                            "identifier": "kernel\\sem.c\\z_impl_k_sem_take"
                                        },
                                        {
                                            "name": "z_impl_k_sem_init",
                                            "size": 32,
                                            "identifier": "kernel\\sem.c\\z_impl_k_sem_init"
                                        },
                                        {
                                            "name": "z_impl_k_sem_give",
                                            "size": 76,
                                            "identifier": "kernel\\sem.c\\z_impl_k_sem_give"
                                        },
                                        {
                                            "name": "z_impl_k_sem_reset",
                                            "size": 72,
                                            "identifier": "kernel\\sem.c\\z_impl_k_sem_reset"
                                        }
                                    ]
                                },
                                {
                                    "name": "device.c",
                                    "size": 52,
                                    "identifier": "kernel\\device.c",
                                    "children": [
                                        {
                                            "name": "z_device_state_init",
                                            "size": 2,
                                            "identifier": "kernel\\device.c\\z_device_state_init"
                                        },
                                        {
                                            "name": "z_device_is_ready",
                                            "size": 22,
                                            "identifier": "kernel\\device.c\\z_device_is_ready"
                                        },
                                        {
                                            "name": "z_device_get_all_static",
                                            "size": 28,
                                            "identifier": "kernel\\device.c\\z_device_get_all_static"
                                        }
                                    ]
                                },
                                {
                                    "name": "banner.c",
                                    "size": 12,
                                    "identifier": "kernel\\banner.c",
                                    "children": [
                                        {
                                            "name": "boot_banner",
                                            "size": 12,
                                            "identifier": "kernel\\banner.c\\boot_banner"
                                        }
                                    ]
                                },
                                {
                                    "name": "fatal.c",
                                    "size": 54,
                                    "identifier": "kernel\\fatal.c",
                                    "children": [
                                        {
                                            "name": "z_fatal_error",
                                            "size": 54,
                                            "identifier": "kernel\\fatal.c\\z_fatal_error"
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "name": "modules",
                            "size": 38,
                            "identifier": "modules",
                            "children": [
                                {
                                    "name": "hal_nordic",
                                    "size": 38,
                                    "identifier": "modules\\hal_nordic",
                                    "children": [
                                        {
                                            "name": "nrfx",
                                            "size": 38,
                                            "identifier": "modules\\hal_nordic\\nrfx",
                                            "children": [
                                                {
                                                    "name": "nrfx_log.h",
                                                    "size": 32,
                                                    "identifier": "modules\\hal_nordic\\nrfx\\nrfx_log.h",
                                                    "children": [
                                                        {
                                                            "name": "log_const_NRFX_TWI",
                                                            "size": 8,
                                                            "identifier": "modules\\hal_nordic\\nrfx\\nrfx_log.h\\log_const_NRFX_TWI"
                                                        },
                                                        {
                                                            "name": "log_const_NRFX_GPIOTE",
                                                            "size": 8,
                                                            "identifier": "modules\\hal_nordic\\nrfx\\nrfx_log.h\\log_const_NRFX_GPIOTE"
                                                        },
                                                        {
                                                            "name": "log_const_NRFX_SPI",
                                                            "size": 8,
                                                            "identifier": "modules\\hal_nordic\\nrfx\\nrfx_log.h\\log_const_NRFX_SPI"
                                                        },
                                                        {
                                                            "name": "log_const_NRFX_PWM",
                                                            "size": 8,
                                                            "identifier": "modules\\hal_nordic\\nrfx\\nrfx_log.h\\log_const_NRFX_PWM"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "nrfx_glue.c",
                                                    "size": 6,
                                                    "identifier": "modules\\hal_nordic\\nrfx\\nrfx_glue.c",
                                                    "children": [
                                                        {
                                                            "name": "nrfx_isr",
                                                            "size": 2,
                                                            "identifier": "modules\\hal_nordic\\nrfx\\nrfx_glue.c\\nrfx_isr"
                                                        },
                                                        {
                                                            "name": "nrfx_busy_wait",
                                                            "size": 4,
                                                            "identifier": "modules\\hal_nordic\\nrfx\\nrfx_glue.c\\nrfx_busy_wait"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "OUTPUT_DIR",
                    "size": 380,
                    "identifier": "C:/carl-ble-sensor-firmware/build",
                    "children": [
                        {
                            "name": "zephyr",
                            "size": 380,
                            "identifier": "zephyr",
                            "children": [
                                {
                                    "name": "include",
                                    "size": 36,
                                    "identifier": "zephyr\\include",
                                    "children": [
                                        {
                                            "name": "generated",
                                            "size": 36,
                                            "identifier": "zephyr\\include\\generated",
                                            "children": [
                                                {
                                                    "name": "syscalls",
                                                    "size": 36,
                                                    "identifier": "zephyr\\include\\generated\\syscalls",
                                                    "children": [
                                                        {
                                                            "name": "eeprom.h",
                                                            "size": 12,
                                                            "identifier": "zephyr\\include\\generated\\syscalls\\eeprom.h",
                                                            "children": [
                                                                {
                                                                    "name": "eeprom_write",
                                                                    "size": 12,
                                                                    "identifier": "zephyr\\include\\generated\\syscalls\\eeprom.h\\eeprom_write"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "kernel.h",
                                                            "size": 12,
                                                            "identifier": "zephyr\\include\\generated\\syscalls\\kernel.h",
                                                            "children": [
                                                                {
                                                                    "name": "k_timer_stop",
                                                                    "size": 4,
                                                                    "identifier": "zephyr\\include\\generated\\syscalls\\kernel.h\\k_timer_stop"
                                                                },
                                                                {
                                                                    "name": "k_mutex_unlock.isra.0",
                                                                    "size": 4,
                                                                    "identifier": "zephyr\\include\\generated\\syscalls\\kernel.h\\k_mutex_unlock.isra.0"
                                                                },
                                                                {
                                                                    "name": "k_sleep.isra.0",
                                                                    "size": 4,
                                                                    "identifier": "zephyr\\include\\generated\\syscalls\\kernel.h\\k_sleep.isra.0"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "spi.h",
                                                            "size": 12,
                                                            "identifier": "zephyr\\include\\generated\\syscalls\\spi.h",
                                                            "children": [
                                                                {
                                                                    "name": "spi_transceive",
                                                                    "size": 12,
                                                                    "identifier": "zephyr\\include\\generated\\syscalls\\spi.h\\spi_transceive"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "dev_handles.c",
                                    "size": 150,
                                    "identifier": "zephyr\\dev_handles.c",
                                    "children": [
                                        {
                                            "name": "__devicehdl_dts_ord_100",
                                            "size": 10,
                                            "identifier": "zephyr\\dev_handles.c\\__devicehdl_dts_ord_100"
                                        },
                                        {
                                            "name": "__devicehdl_dts_ord_109",
                                            "size": 8,
                                            "identifier": "zephyr\\dev_handles.c\\__devicehdl_dts_ord_109"
                                        },
                                        {
                                            "name": "__devicehdl_dts_ord_108",
                                            "size": 14,
                                            "identifier": "zephyr\\dev_handles.c\\__devicehdl_dts_ord_108"
                                        },
                                        {
                                            "name": "__devicehdl_dts_ord_7",
                                            "size": 12,
                                            "identifier": "zephyr\\dev_handles.c\\__devicehdl_dts_ord_7"
                                        },
                                        {
                                            "name": "__devicehdl_dts_ord_9",
                                            "size": 10,
                                            "identifier": "zephyr\\dev_handles.c\\__devicehdl_dts_ord_9"
                                        },
                                        {
                                            "name": "__devicehdl_dts_ord_8",
                                            "size": 12,
                                            "identifier": "zephyr\\dev_handles.c\\__devicehdl_dts_ord_8"
                                        },
                                        {
                                            "name": "__devicehdl_dts_ord_91",
                                            "size": 6,
                                            "identifier": "zephyr\\dev_handles.c\\__devicehdl_dts_ord_91"
                                        },
                                        {
                                            "name": "__devicehdl_dts_ord_99",
                                            "size": 10,
                                            "identifier": "zephyr\\dev_handles.c\\__devicehdl_dts_ord_99"
                                        },
                                        {
                                            "name": "__devicehdl_dts_ord_51",
                                            "size": 6,
                                            "identifier": "zephyr\\dev_handles.c\\__devicehdl_dts_ord_51"
                                        },
                                        {
                                            "name": "__devicehdl_dts_ord_12",
                                            "size": 6,
                                            "identifier": "zephyr\\dev_handles.c\\__devicehdl_dts_ord_12"
                                        },
                                        {
                                            "name": "__devicehdl_dts_ord_80",
                                            "size": 6,
                                            "identifier": "zephyr\\dev_handles.c\\__devicehdl_dts_ord_80"
                                        },
                                        {
                                            "name": "__devicehdl_dts_ord_17",
                                            "size": 6,
                                            "identifier": "zephyr\\dev_handles.c\\__devicehdl_dts_ord_17"
                                        },
                                        {
                                            "name": "__devicehdl_dts_ord_44",
                                            "size": 6,
                                            "identifier": "zephyr\\dev_handles.c\\__devicehdl_dts_ord_44"
                                        },
                                        {
                                            "name": "__devicehdl_dts_ord_73",
                                            "size": 6,
                                            "identifier": "zephyr\\dev_handles.c\\__devicehdl_dts_ord_73"
                                        },
                                        {
                                            "name": "__devicehdl_dts_ord_111",
                                            "size": 8,
                                            "identifier": "zephyr\\dev_handles.c\\__devicehdl_dts_ord_111"
                                        },
                                        {
                                            "name": "__devicehdl_dts_ord_110",
                                            "size": 8,
                                            "identifier": "zephyr\\dev_handles.c\\__devicehdl_dts_ord_110"
                                        },
                                        {
                                            "name": "__devicehdl_dts_ord_2",
                                            "size": 16,
                                            "identifier": "zephyr\\dev_handles.c\\__devicehdl_dts_ord_2"
                                        }
                                    ]
                                },
                                {
                                    "name": "isr_tables.c",
                                    "size": 192,
                                    "identifier": "zephyr\\isr_tables.c",
                                    "children": [
                                        {
                                            "name": "_irq_vector_table",
                                            "size": 192,
                                            "identifier": "zephyr\\isr_tables.c\\_irq_vector_table"
                                        }
                                    ]
                                },
                                {
                                    "name": "misc",
                                    "size": 2,
                                    "identifier": "zephyr\\misc",
                                    "children": [
                                        {
                                            "name": "generated",
                                            "size": 2,
                                            "identifier": "zephyr\\misc\\generated",
                                            "children": [
                                                {
                                                    "name": "configs.c",
                                                    "size": 2,
                                                    "identifier": "zephyr\\misc\\generated\\configs.c",
                                                    "children": [
                                                        {
                                                            "name": "_ConfigAbsSyms",
                                                            "size": 2,
                                                            "identifier": "zephyr\\misc\\generated\\configs.c\\_ConfigAbsSyms"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "/",
                    "size": 0,
                    "identifier": "/",
                    "children": [
                        {
                            "name": "C:\\",
                            "size": 22274,
                            "identifier": "C:\\",
                            "children": [
                                {
                                    "name": "carl-ble-sensor-firmware",
                                    "size": 22274,
                                    "identifier": "C:\\carl-ble-sensor-firmware",
                                    "children": [
                                        {
                                            "name": "deps",
                                            "size": 16500,
                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps",
                                            "children": [
                                                {
                                                    "name": "drivers",
                                                    "size": 7214,
                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers",
                                                    "children": [
                                                        {
                                                            "name": "drivers",
                                                            "size": 7214,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers",
                                                            "children": [
                                                                {
                                                                    "name": "sensor",
                                                                    "size": 3892,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor",
                                                                    "children": [
                                                                        {
                                                                            "name": "adxrs649",
                                                                            "size": 940,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxrs649",
                                                                            "children": [
                                                                                {
                                                                                    "name": "adxrs649.cpp",
                                                                                    "size": 940,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxrs649\\adxrs649.cpp",
                                                                                    "children": [
                                                                                        {
                                                                                            "name": "_ZL17adc_get_raw_uVoltPK6device11gyro_adc_chPd",
                                                                                            "size": 108,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxrs649\\adxrs649.cpp\\_ZL17adc_get_raw_uVoltPK6device11gyro_adc_chPd"
                                                                                        },
                                                                                        {
                                                                                            "name": "_ZL14adxrs649_fetchPK6device14sensor_channel",
                                                                                            "size": 208,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxrs649\\adxrs649.cpp\\_ZL14adxrs649_fetchPK6device14sensor_channel"
                                                                                        },
                                                                                        {
                                                                                            "name": "_ZL20adxrs649_channel_getPK6device14sensor_channelP12sensor_value",
                                                                                            "size": 80,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxrs649\\adxrs649.cpp\\_ZL20adxrs649_channel_getPK6device14sensor_channelP12sensor_value"
                                                                                        },
                                                                                        {
                                                                                            "name": "_ZL13adxrs649_initPK6device",
                                                                                            "size": 396,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxrs649\\adxrs649.cpp\\_ZL13adxrs649_initPK6device"
                                                                                        },
                                                                                        {
                                                                                            "name": "_Z17adxrs649_attr_setPK6device14sensor_channel16sensor_attributePK12sensor_value",
                                                                                            "size": 140,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxrs649\\adxrs649.cpp\\_Z17adxrs649_attr_setPK6device14sensor_channel16sensor_attributePK12sensor_value"
                                                                                        },
                                                                                        {
                                                                                            "name": "log_const_ADXRS649",
                                                                                            "size": 8,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxrs649\\adxrs649.cpp\\log_const_ADXRS649"
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "name": "adxl372",
                                                                            "size": 2952,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372",
                                                                            "children": [
                                                                                {
                                                                                    "name": "adxl372.c",
                                                                                    "size": 2154,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372.c",
                                                                                    "children": [
                                                                                        {
                                                                                            "name": "adxl372_set_activity_threshold",
                                                                                            "size": 90,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372.c\\adxl372_set_activity_threshold"
                                                                                        },
                                                                                        {
                                                                                            "name": "adxl372_set_activity_threshold_xyz",
                                                                                            "size": 34,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372.c\\adxl372_set_activity_threshold_xyz"
                                                                                        },
                                                                                        {
                                                                                            "name": "adxl372_set_op_mode",
                                                                                            "size": 22,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372.c\\adxl372_set_op_mode"
                                                                                        },
                                                                                        {
                                                                                            "name": "adxl372_set_bandwidth",
                                                                                            "size": 62,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372.c\\adxl372_set_bandwidth"
                                                                                        },
                                                                                        {
                                                                                            "name": "adxl372_set_odr",
                                                                                            "size": 24,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372.c\\adxl372_set_odr"
                                                                                        },
                                                                                        {
                                                                                            "name": "adxl372_sample_fetch",
                                                                                            "size": 156,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372.c\\adxl372_sample_fetch"
                                                                                        },
                                                                                        {
                                                                                            "name": "adxl372_attr_set",
                                                                                            "size": 300,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372.c\\adxl372_attr_set"
                                                                                        },
                                                                                        {
                                                                                            "name": "adxl372_get_peak_axis.isra.0",
                                                                                            "size": 76,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372.c\\adxl372_get_peak_axis.isra.0"
                                                                                        },
                                                                                        {
                                                                                            "name": "adxl372_channel_get",
                                                                                            "size": 312,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372.c\\adxl372_channel_get"
                                                                                        },
                                                                                        {
                                                                                            "name": "adxl372_init",
                                                                                            "size": 728,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372.c\\adxl372_init"
                                                                                        },
                                                                                        {
                                                                                            "name": "__init___device_dts_ord_99",
                                                                                            "size": 8,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372.c\\__init___device_dts_ord_99"
                                                                                        },
                                                                                        {
                                                                                            "name": "adxl372_config_0",
                                                                                            "size": 52,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372.c\\adxl372_config_0"
                                                                                        },
                                                                                        {
                                                                                            "name": "adxl372_api_funcs",
                                                                                            "size": 20,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372.c\\adxl372_api_funcs"
                                                                                        },
                                                                                        {
                                                                                            "name": "__devstate_dts_ord_99",
                                                                                            "size": 2,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372.c\\__devstate_dts_ord_99"
                                                                                        },
                                                                                        {
                                                                                            "name": "adxl372_self_test",
                                                                                            "size": 190,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372.c\\adxl372_self_test"
                                                                                        },
                                                                                        {
                                                                                            "name": "log_const_ADXL372X",
                                                                                            "size": 8,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372.c\\log_const_ADXL372X"
                                                                                        },
                                                                                        {
                                                                                            "name": "adxl372_get_status",
                                                                                            "size": 70,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372.c\\adxl372_get_status"
                                                                                        }
                                                                                    ]
                                                                                },
                                                                                {
                                                                                    "name": "adxl372_i2c.c",
                                                                                    "size": 260,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372_i2c.c",
                                                                                    "children": [
                                                                                        {
                                                                                            "name": "adxl372_bus_access.isra.0",
                                                                                            "size": 106,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372_i2c.c\\adxl372_bus_access.isra.0"
                                                                                        },
                                                                                        {
                                                                                            "name": "adxl372_i2c_reg_write",
                                                                                            "size": 30,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372_i2c.c\\adxl372_i2c_reg_write"
                                                                                        },
                                                                                        {
                                                                                            "name": "adxl372_i2c_reg_read_multiple",
                                                                                            "size": 14,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372_i2c.c\\adxl372_i2c_reg_read_multiple"
                                                                                        },
                                                                                        {
                                                                                            "name": "adxl372_i2c_reg_read",
                                                                                            "size": 16,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372_i2c.c\\adxl372_i2c_reg_read"
                                                                                        },
                                                                                        {
                                                                                            "name": "adxl372_i2c_transfer_fn",
                                                                                            "size": 16,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372_i2c.c\\adxl372_i2c_transfer_fn"
                                                                                        },
                                                                                        {
                                                                                            "name": "adxl372_i2c_reg_write_mask",
                                                                                            "size": 46,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372_i2c.c\\adxl372_i2c_reg_write_mask"
                                                                                        },
                                                                                        {
                                                                                            "name": "adxl372_i2c_init",
                                                                                            "size": 32,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372_i2c.c\\adxl372_i2c_init"
                                                                                        }
                                                                                    ]
                                                                                },
                                                                                {
                                                                                    "name": "adxl372_trigger.c",
                                                                                    "size": 538,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372_trigger.c",
                                                                                    "children": [
                                                                                        {
                                                                                            "name": "adxl372_work_cb",
                                                                                            "size": 150,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372_trigger.c\\adxl372_work_cb"
                                                                                        },
                                                                                        {
                                                                                            "name": "adxl372_gpio_callback",
                                                                                            "size": 30,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372_trigger.c\\adxl372_gpio_callback"
                                                                                        },
                                                                                        {
                                                                                            "name": "adxl372_init_interrupt",
                                                                                            "size": 132,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372_trigger.c\\adxl372_init_interrupt"
                                                                                        },
                                                                                        {
                                                                                            "name": "adxl372_trigger_set",
                                                                                            "size": 226,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372_trigger.c\\adxl372_trigger_set"
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "name": "adc",
                                                                    "size": 806,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\adc",
                                                                    "children": [
                                                                        {
                                                                            "name": "ads1219.cpp",
                                                                            "size": 806,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\adc\\ads1219.cpp",
                                                                            "children": [
                                                                                {
                                                                                    "name": "_ZN7ads1219L13read_registerEPK11i2c_dt_spechPh",
                                                                                    "size": 66,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\adc\\ads1219.cpp\\_ZN7ads1219L13read_registerEPK11i2c_dt_spechPh"
                                                                                },
                                                                                {
                                                                                    "name": "_ZN7ads1219L13channel_setupEPK6devicePK15adc_channel_cfg",
                                                                                    "size": 176,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\adc\\ads1219.cpp\\_ZN7ads1219L13channel_setupEPK6devicePK15adc_channel_cfg"
                                                                                },
                                                                                {
                                                                                    "name": "_ZN7ads1219L9write_cmdEPK11i2c_dt_spech",
                                                                                    "size": 48,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\adc\\ads1219.cpp\\_ZN7ads1219L9write_cmdEPK11i2c_dt_spech"
                                                                                },
                                                                                {
                                                                                    "name": "_ZN7ads1219L8read_adcEPK6devicePK12adc_sequence",
                                                                                    "size": 368,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\adc\\ads1219.cpp\\_ZN7ads1219L8read_adcEPK6devicePK12adc_sequence"
                                                                                },
                                                                                {
                                                                                    "name": "log_const_ADS1219",
                                                                                    "size": 8,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\adc\\ads1219.cpp\\log_const_ADS1219"
                                                                                },
                                                                                {
                                                                                    "name": "_ZN7ads121915numberOfSetBitsEj",
                                                                                    "size": 38,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\adc\\ads1219.cpp\\_ZN7ads121915numberOfSetBitsEj"
                                                                                },
                                                                                {
                                                                                    "name": "_ZN7ads12194initEPK6device",
                                                                                    "size": 86,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\adc\\ads1219.cpp\\_ZN7ads12194initEPK6device"
                                                                                },
                                                                                {
                                                                                    "name": "_Z12ads1219_initPK6device",
                                                                                    "size": 8,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\adc\\ads1219.cpp\\_Z12ads1219_initPK6device"
                                                                                },
                                                                                {
                                                                                    "name": "_ZN7ads12195resetEPK6device",
                                                                                    "size": 8,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\adc\\ads1219.cpp\\_ZN7ads12195resetEPK6device"
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "name": "rtc",
                                                                    "size": 1988,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc",
                                                                    "children": [
                                                                        {
                                                                            "name": "rv3028",
                                                                            "size": 1988,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc\\rv3028",
                                                                            "children": [
                                                                                {
                                                                                    "name": "rv3028.cpp",
                                                                                    "size": 546,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc\\rv3028\\rv3028.cpp",
                                                                                    "children": [
                                                                                        {
                                                                                            "name": "_ZN6rv3028L18set_alarm_callbackEPK6devicetPFvS2_tPvES3_",
                                                                                            "size": 10,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc\\rv3028\\rv3028.cpp\\_ZN6rv3028L18set_alarm_callbackEPK6devicetPFvS2_tPvES3_"
                                                                                        },
                                                                                        {
                                                                                            "name": "_ZN6rv3028L20get_supported_fieldsEPK6devicetPt",
                                                                                            "size": 8,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc\\rv3028\\rv3028.cpp\\_ZN6rv3028L20get_supported_fieldsEPK6devicetPt"
                                                                                        },
                                                                                        {
                                                                                            "name": "_ZN6rv3028L7work_cbEP6k_work",
                                                                                            "size": 174,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc\\rv3028\\rv3028.cpp\\_ZN6rv3028L7work_cbEP6k_work"
                                                                                        },
                                                                                        {
                                                                                            "name": "_ZN6rv3028L13gpio_callbackEPK6deviceP13gpio_callbackj",
                                                                                            "size": 28,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc\\rv3028\\rv3028.cpp\\_ZN6rv3028L13gpio_callbackEPK6deviceP13gpio_callbackj"
                                                                                        },
                                                                                        {
                                                                                            "name": "log_const_RV3028",
                                                                                            "size": 8,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc\\rv3028\\rv3028.cpp\\log_const_RV3028"
                                                                                        },
                                                                                        {
                                                                                            "name": "_ZN6rv30284initEPK6device",
                                                                                            "size": 180,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc\\rv3028\\rv3028.cpp\\_ZN6rv30284initEPK6device"
                                                                                        },
                                                                                        {
                                                                                            "name": "_ZN6rv30289set_alarmEPK6devicettPK8rtc_time",
                                                                                            "size": 138,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc\\rv3028\\rv3028.cpp\\_ZN6rv30289set_alarmEPK6devicettPK8rtc_time"
                                                                                        }
                                                                                    ]
                                                                                },
                                                                                {
                                                                                    "name": "driver",
                                                                                    "size": 1442,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc\\rv3028\\driver",
                                                                                    "children": [
                                                                                        {
                                                                                            "name": "rv3028.c",
                                                                                            "size": 1442,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc\\rv3028\\driver\\rv3028.c",
                                                                                            "children": [
                                                                                                {
                                                                                                    "name": "DecimalToBCD",
                                                                                                    "size": 18,
                                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc\\rv3028\\driver\\rv3028.c\\DecimalToBCD"
                                                                                                },
                                                                                                {
                                                                                                    "name": "BCDToDecimal",
                                                                                                    "size": 18,
                                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc\\rv3028\\driver\\rv3028.c\\BCDToDecimal"
                                                                                                },
                                                                                                {
                                                                                                    "name": "RV3028_EEPROMCommand",
                                                                                                    "size": 76,
                                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc\\rv3028\\driver\\rv3028.c\\RV3028_EEPROMCommand"
                                                                                                },
                                                                                                {
                                                                                                    "name": "RV3028_disable_alarms",
                                                                                                    "size": 50,
                                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc\\rv3028\\driver\\rv3028.c\\RV3028_disable_alarms"
                                                                                                },
                                                                                                {
                                                                                                    "name": "RV3028_EnableEERD",
                                                                                                    "size": 16,
                                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc\\rv3028\\driver\\rv3028.c\\RV3028_EnableEERD"
                                                                                                },
                                                                                                {
                                                                                                    "name": "RV3028_Update",
                                                                                                    "size": 38,
                                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc\\rv3028\\driver\\rv3028.c\\RV3028_Update"
                                                                                                },
                                                                                                {
                                                                                                    "name": "RV3028_WriteRegister",
                                                                                                    "size": 64,
                                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc\\rv3028\\driver\\rv3028.c\\RV3028_WriteRegister"
                                                                                                },
                                                                                                {
                                                                                                    "name": "RV3028_ModifyRegister",
                                                                                                    "size": 68,
                                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc\\rv3028\\driver\\rv3028.c\\RV3028_ModifyRegister"
                                                                                                },
                                                                                                {
                                                                                                    "name": "RV3028_Init",
                                                                                                    "size": 504,
                                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc\\rv3028\\driver\\rv3028.c\\RV3028_Init"
                                                                                                },
                                                                                                {
                                                                                                    "name": "RV3028_EnableAlarm",
                                                                                                    "size": 248,
                                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc\\rv3028\\driver\\rv3028.c\\RV3028_EnableAlarm"
                                                                                                },
                                                                                                {
                                                                                                    "name": "RV3028_SetTime",
                                                                                                    "size": 108,
                                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc\\rv3028\\driver\\rv3028.c\\RV3028_SetTime"
                                                                                                },
                                                                                                {
                                                                                                    "name": "RV3028_ClearFlags",
                                                                                                    "size": 14,
                                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc\\rv3028\\driver\\rv3028.c\\RV3028_ClearFlags"
                                                                                                },
                                                                                                {
                                                                                                    "name": "RV3028_UnlockWP",
                                                                                                    "size": 36,
                                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc\\rv3028\\driver\\rv3028.c\\RV3028_UnlockWP"
                                                                                                },
                                                                                                {
                                                                                                    "name": "RV3028_GetTime",
                                                                                                    "size": 118,
                                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc\\rv3028\\driver\\rv3028.c\\RV3028_GetTime"
                                                                                                },
                                                                                                {
                                                                                                    "name": "RV3028_ReadRegister",
                                                                                                    "size": 66,
                                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\rtc\\rv3028\\driver\\rv3028.c\\RV3028_ReadRegister"
                                                                                                }
                                                                                            ]
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "name": "bbram",
                                                                    "size": 528,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\bbram",
                                                                    "children": [
                                                                        {
                                                                            "name": "cy15b104",
                                                                            "size": 528,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\bbram\\cy15b104",
                                                                            "children": [
                                                                                {
                                                                                    "name": "cy15b104.cpp",
                                                                                    "size": 486,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\bbram\\cy15b104\\cy15b104.cpp",
                                                                                    "children": [
                                                                                        {
                                                                                            "name": "_ZN8cy15b104L11send_opcodeEPK6deviceNS_6OpCodeENS_6OpTypeEPvhj.isra.0",
                                                                                            "size": 182,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\bbram\\cy15b104\\cy15b104.cpp\\_ZN8cy15b104L11send_opcodeEPK6deviceNS_6OpCodeENS_6OpTypeEPvhj.isra.0"
                                                                                        },
                                                                                        {
                                                                                            "name": "_ZN8cy15b1048get_sizeEPK6devicePj",
                                                                                            "size": 12,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\bbram\\cy15b104\\cy15b104.cpp\\_ZN8cy15b1048get_sizeEPK6devicePj"
                                                                                        },
                                                                                        {
                                                                                            "name": "cy15b104_pm_action",
                                                                                            "size": 84,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\bbram\\cy15b104\\cy15b104.cpp\\cy15b104_pm_action"
                                                                                        },
                                                                                        {
                                                                                            "name": "log_const_bbram_inf_cy15b104",
                                                                                            "size": 8,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\bbram\\cy15b104\\cy15b104.cpp\\log_const_bbram_inf_cy15b104"
                                                                                        },
                                                                                        {
                                                                                            "name": "_ZN8cy15b1044readEPK6devicejjPh",
                                                                                            "size": 36,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\bbram\\cy15b104\\cy15b104.cpp\\_ZN8cy15b1044readEPK6devicejjPh"
                                                                                        },
                                                                                        {
                                                                                            "name": "cy15b104_api",
                                                                                            "size": 24,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\bbram\\cy15b104\\cy15b104.cpp\\cy15b104_api"
                                                                                        },
                                                                                        {
                                                                                            "name": "cy15b104_init",
                                                                                            "size": 64,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\bbram\\cy15b104\\cy15b104.cpp\\cy15b104_init"
                                                                                        },
                                                                                        {
                                                                                            "name": "_ZN8cy15b1045writeEPK6devicejjPKh",
                                                                                            "size": 76,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\bbram\\cy15b104\\cy15b104.cpp\\_ZN8cy15b1045writeEPK6devicejjPKh"
                                                                                        }
                                                                                    ]
                                                                                },
                                                                                {
                                                                                    "name": "cy15b104_inst.c",
                                                                                    "size": 42,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\bbram\\cy15b104\\cy15b104_inst.c",
                                                                                    "children": [
                                                                                        {
                                                                                            "name": "__init___device_dts_ord_109",
                                                                                            "size": 8,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\bbram\\cy15b104\\cy15b104_inst.c\\__init___device_dts_ord_109"
                                                                                        },
                                                                                        {
                                                                                            "name": "cy15b104_cfg_0",
                                                                                            "size": 16,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\bbram\\cy15b104\\cy15b104_inst.c\\cy15b104_cfg_0"
                                                                                        },
                                                                                        {
                                                                                            "name": "__devstate_dts_ord_109",
                                                                                            "size": 2,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\bbram\\cy15b104\\cy15b104_inst.c\\__devstate_dts_ord_109"
                                                                                        },
                                                                                        {
                                                                                            "name": "__pm_device_dts_ord_109",
                                                                                            "size": 16,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\bbram\\cy15b104\\cy15b104_inst.c\\__pm_device_dts_ord_109"
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "bliss",
                                                    "size": 5702,
                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss",
                                                    "children": [
                                                        {
                                                            "name": "src",
                                                            "size": 5678,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src",
                                                            "children": [
                                                                {
                                                                    "name": "state_machine.cpp",
                                                                    "size": 2608,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp",
                                                                    "children": [
                                                                        {
                                                                            "name": "_ZN5blissL10ble_evt_cbENS_3ble5EventEPv",
                                                                            "size": 44,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5blissL10ble_evt_cbENS_3ble5EventEPv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine4IdleEPvPKN2QP4QEvtE",
                                                                            "size": 4,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine4IdleEPvPKN2QP4QEvtE"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine21phyphox_exp_loaded_cbEPv",
                                                                            "size": 24,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine21phyphox_exp_loaded_cbEPv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine11maintenanceEPvPKN2QP4QEvtE",
                                                                            "size": 4,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine11maintenanceEPvPKN2QP4QEvtE"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine11wait_sync_eEPv",
                                                                            "size": 4,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine11wait_sync_eEPv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine15is_data_pendingEv",
                                                                            "size": 20,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine15is_data_pendingEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine8active_eEPv",
                                                                            "size": 4,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine8active_eEPv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine13wait_sync_e_hEv",
                                                                            "size": 32,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine13wait_sync_e_hEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine7initialEPvPKN2QP4QEvtE",
                                                                            "size": 4,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine7initialEPvPKN2QP4QEvtE"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine17wait_connection_hEPKN2QP4QEvtE",
                                                                            "size": 112,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine17wait_connection_hEPKN2QP4QEvtE"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine14eventnotify_cbEPv",
                                                                            "size": 24,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine14eventnotify_cbEPv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine12adv_timer_cbEP7k_timer",
                                                                            "size": 48,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine12adv_timer_cbEP7k_timer"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine13maintenance_hEPKN2QP4QEvtE",
                                                                            "size": 152,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine13maintenance_hEPKN2QP4QEvtE"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachineC2Ev",
                                                                            "size": 60,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachineC2Ev"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine27wait_next_advertisement_e_hEv",
                                                                            "size": 32,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine27wait_next_advertisement_e_hEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine24trigger_maintenance_modeEv",
                                                                            "size": 44,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine24trigger_maintenance_modeEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine13maintenance_xEPv",
                                                                            "size": 20,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine13maintenance_xEPv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine22set_data_pending_timerEv",
                                                                            "size": 46,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine22set_data_pending_timerEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachineD2Ev",
                                                                            "size": 64,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachineD2Ev"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine15updatestatus_cbEP7k_timer",
                                                                            "size": 28,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine15updatestatus_cbEP7k_timer"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine10active_e_hEv",
                                                                            "size": 60,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine10active_e_hEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine6activeEPvPKN2QP4QEvtE",
                                                                            "size": 4,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine6activeEPvPKN2QP4QEvtE"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine15wait_connectionEPvPKN2QP4QEvtE",
                                                                            "size": 4,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine15wait_connectionEPvPKN2QP4QEvtE"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine8Idle_e_hEv",
                                                                            "size": 60,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine8Idle_e_hEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine6Idle_hEPKN2QP4QEvtE",
                                                                            "size": 88,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine6Idle_hEPKN2QP4QEvtE"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine8active_xEPv",
                                                                            "size": 4,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine8active_xEPv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine6Idle_eEPv",
                                                                            "size": 4,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine6Idle_eEPv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine22datapending_timeout_cbEP7k_timer",
                                                                            "size": 28,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine22datapending_timeout_cbEP7k_timer"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine10send_eventEv",
                                                                            "size": 34,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine10send_eventEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine9initial_hEPKN2QP4QEvtE",
                                                                            "size": 228,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine9initial_hEPKN2QP4QEvtE"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine8active_hEPKN2QP4QEvtE",
                                                                            "size": 248,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine8active_hEPKN2QP4QEvtE"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine9wait_syncEPvPKN2QP4QEvtE",
                                                                            "size": 4,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine9wait_syncEPvPKN2QP4QEvtE"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine16phyphox_event_cbEN11phyphox_ble10experiment7Event_tEPv",
                                                                            "size": 68,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine16phyphox_event_cbEN11phyphox_ble10experiment7Event_tEPv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine21register_evt_callbackEPFvNS_10sm_event_eEbPvES2_",
                                                                            "size": 6,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine21register_evt_callbackEPFvNS_10sm_event_eEbPvES2_"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine15notify_timer_cbEP7k_timer",
                                                                            "size": 40,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine15notify_timer_cbEP7k_timer"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine25wait_next_advertisement_hEPKN2QP4QEvtE",
                                                                            "size": 56,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine25wait_next_advertisement_hEPKN2QP4QEvtE"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine25wait_next_advertisement_eEPv",
                                                                            "size": 4,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine25wait_next_advertisement_eEPv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine23trigger_sensor_samplingEv",
                                                                            "size": 24,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine23trigger_sensor_samplingEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine11wait_sync_xEPv",
                                                                            "size": 14,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine11wait_sync_xEPv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine18notify_timer_startEv",
                                                                            "size": 112,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine18notify_timer_startEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine11wait_sync_hEPKN2QP4QEvtE",
                                                                            "size": 120,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine11wait_sync_hEPKN2QP4QEvtE"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine22start_maintenance_modeEv",
                                                                            "size": 36,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine22start_maintenance_modeEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine19send_sensor_samplesEv",
                                                                            "size": 52,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine19send_sensor_samplesEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine16reboot_notify_cbEPv",
                                                                            "size": 24,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine16reboot_notify_cbEPv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine15get_notify_rateEv",
                                                                            "size": 124,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine15get_notify_rateEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine13uptimeread_cbEPv",
                                                                            "size": 24,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine13uptimeread_cbEPv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine23wait_next_advertisementEPvPKN2QP4QEvtE",
                                                                            "size": 4,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine23wait_next_advertisementEPvPKN2QP4QEvtE"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine19wait_connection_e_hEv",
                                                                            "size": 96,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine19wait_connection_e_hEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine14awake_timer_cbEP7k_timer",
                                                                            "size": 28,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine14awake_timer_cbEP7k_timer"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine7is_idleEv",
                                                                            "size": 20,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine7is_idleEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine10active_x_hEv",
                                                                            "size": 30,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine10active_x_hEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine22is_sensor_data_pendingEv",
                                                                            "size": 62,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine22is_sensor_data_pendingEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine15maintenance_e_hEv",
                                                                            "size": 28,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine15maintenance_e_hEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine13maintenance_eEPv",
                                                                            "size": 4,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine13maintenance_eEPv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine6Idle_xEPv",
                                                                            "size": 20,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine6Idle_xEPv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine17wait_connection_eEPv",
                                                                            "size": 4,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine17wait_connection_eEPv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine16register_sensorsEPPNS_7ISensorEh",
                                                                            "size": 44,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine16register_sensorsEPPNS_7ISensorEh"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss12StateMachine20wait_sync_timeout_cbEP7k_timer",
                                                                            "size": 28,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\state_machine.cpp\\_ZN5bliss12StateMachine20wait_sync_timeout_cbEP7k_timer"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "name": "ble.cpp",
                                                                    "size": 414,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\ble.cpp",
                                                                    "children": [
                                                                        {
                                                                            "name": "_ZN5bliss3bleL14mtuexchange_cbEP7bt_connhP23bt_gatt_exchange_params",
                                                                            "size": 2,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\ble.cpp\\_ZN5bliss3bleL14mtuexchange_cbEP7bt_connhP23bt_gatt_exchange_params"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss3bleL12le_param_reqEP7bt_connP16bt_le_conn_param",
                                                                            "size": 4,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\ble.cpp\\_ZN5bliss3bleL12le_param_reqEP7bt_connP16bt_le_conn_param"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss3bleL16le_param_updatedEP7bt_connttt",
                                                                            "size": 40,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\ble.cpp\\_ZN5bliss3bleL16le_param_updatedEP7bt_connttt"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss3bleL12onDisconnectEP7bt_connh",
                                                                            "size": 56,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\ble.cpp\\_ZN5bliss3bleL12onDisconnectEP7bt_connh"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss3bleL9onConnectEP7bt_connh",
                                                                            "size": 80,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\ble.cpp\\_ZN5bliss3bleL9onConnectEP7bt_connh"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss3ble16set_evt_callbackEPFvNS0_5EventEPvES2_",
                                                                            "size": 20,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\ble.cpp\\_ZN5bliss3ble16set_evt_callbackEPFvNS0_5EventEPvES2_"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss3ble3adv4stopEv",
                                                                            "size": 4,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\ble.cpp\\_ZN5bliss3ble3adv4stopEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss3ble23get_connection_intervalEv",
                                                                            "size": 12,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\ble.cpp\\_ZN5bliss3ble23get_connection_intervalEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss3ble18send_status_updateEv",
                                                                            "size": 24,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\ble.cpp\\_ZN5bliss3ble18send_status_updateEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss3ble4initEv",
                                                                            "size": 88,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\ble.cpp\\_ZN5bliss3ble4initEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss3ble10disconnectEv",
                                                                            "size": 36,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\ble.cpp\\_ZN5bliss3ble10disconnectEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss3ble3adv5startEb",
                                                                            "size": 48,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\ble.cpp\\_ZN5bliss3ble3adv5startEb"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "name": "clock.cpp",
                                                                    "size": 1060,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\clock.cpp",
                                                                    "children": [
                                                                        {
                                                                            "name": "_ZN5bliss5clockL8synch_cbEP7k_timer",
                                                                            "size": 24,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\clock.cpp\\_ZN5bliss5clockL8synch_cbEP7k_timer"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss5clockL12sync_work_cbEP6k_work",
                                                                            "size": 384,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\clock.cpp\\_ZN5bliss5clockL12sync_work_cbEP6k_work"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss5clock8get_timeEv",
                                                                            "size": 152,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\clock.cpp\\_ZN5bliss5clock8get_timeEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss5clock4syncENS0_11timestamp_tE",
                                                                            "size": 408,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\clock.cpp\\_ZN5bliss5clock4syncENS0_11timestamp_tE"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss5clock4initEPK6device",
                                                                            "size": 92,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\clock.cpp\\_ZN5bliss5clock4initEPK6device"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "name": "service.cpp",
                                                                    "size": 558,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\service.cpp",
                                                                    "children": [
                                                                        {
                                                                            "name": "_ZN5bliss7serviceL13event_sent_cbEP7bt_connPv",
                                                                            "size": 24,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\service.cpp\\_ZN5bliss7serviceL13event_sent_cbEP7bt_connPv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss7serviceL19reboot_info_sent_cbEP7bt_connPv",
                                                                            "size": 24,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\service.cpp\\_ZN5bliss7serviceL19reboot_info_sent_cbEP7bt_connPv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss7serviceL20current_time_read_cbEP7bt_connPK12bt_gatt_attrPvtt",
                                                                            "size": 54,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\service.cpp\\_ZN5bliss7serviceL20current_time_read_cbEP7bt_connPK12bt_gatt_attrPvtt"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss7serviceL16timesync_read_cbEP7bt_connPK12bt_gatt_attrPvtt",
                                                                            "size": 28,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\service.cpp\\_ZN5bliss7serviceL16timesync_read_cbEP7bt_connPK12bt_gatt_attrPvtt"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss7serviceL15version_read_cbEP7bt_connPK12bt_gatt_attrPvtt",
                                                                            "size": 28,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\service.cpp\\_ZN5bliss7serviceL15version_read_cbEP7bt_connPK12bt_gatt_attrPvtt"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss7serviceL17timesync_write_cbEP7bt_connPK12bt_gatt_attrPKvtth",
                                                                            "size": 48,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\service.cpp\\_ZN5bliss7serviceL17timesync_write_cbEP7bt_connPK12bt_gatt_attrPKvtth"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss7serviceL14uptime_read_cbEP7bt_connPK12bt_gatt_attrPvtt",
                                                                            "size": 68,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\service.cpp\\_ZN5bliss7serviceL14uptime_read_cbEP7bt_connPK12bt_gatt_attrPvtt"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss7service18set_eventNotify_cbEPFvPvES1_",
                                                                            "size": 20,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\service.cpp\\_ZN5bliss7service18set_eventNotify_cbEPFvPvES1_"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss7service18notify_reboot_infoERNS_10diagnostic13reboot_info_tE",
                                                                            "size": 68,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\service.cpp\\_ZN5bliss7service18notify_reboot_infoERNS_10diagnostic13reboot_info_tE"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss7service13update_uptimeEv",
                                                                            "size": 48,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\service.cpp\\_ZN5bliss7service13update_uptimeEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss7service17set_rebootinfo_cbEPFvPvES1_",
                                                                            "size": 20,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\service.cpp\\_ZN5bliss7service17set_rebootinfo_cbEPFvPvES1_"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss7service13notify_uptimeEv",
                                                                            "size": 52,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\service.cpp\\_ZN5bliss7service13notify_uptimeEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss7service12notify_eventENS_6events7event_tE",
                                                                            "size": 56,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\service.cpp\\_ZN5bliss7service12notify_eventENS_6events7event_tE"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss7service17set_uptimeread_cbEPFvPvES1_",
                                                                            "size": 20,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\service.cpp\\_ZN5bliss7service17set_uptimeread_cbEPFvPvES1_"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "name": "diagnostic.cpp",
                                                                    "size": 488,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\diagnostic.cpp",
                                                                    "children": [
                                                                        {
                                                                            "name": "get_thread_name",
                                                                            "size": 40,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\diagnostic.cpp\\get_thread_name"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss10diagnostic6rebootEt",
                                                                            "size": 64,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\diagnostic.cpp\\_ZN5bliss10diagnostic6rebootEt"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss10diagnostic19is_report_availableEv",
                                                                            "size": 24,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\diagnostic.cpp\\_ZN5bliss10diagnostic19is_report_availableEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss10diagnostic4initEv",
                                                                            "size": 148,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\diagnostic.cpp\\_ZN5bliss10diagnostic4initEv"
                                                                        },
                                                                        {
                                                                            "name": "k_sys_fatal_error_handler",
                                                                            "size": 156,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\diagnostic.cpp\\k_sys_fatal_error_handler"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss10diagnostic10get_reportEPNS0_13reboot_info_tE",
                                                                            "size": 48,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\diagnostic.cpp\\_ZN5bliss10diagnostic10get_reportEPNS0_13reboot_info_tE"
                                                                        },
                                                                        {
                                                                            "name": "log_const_bliss_diag",
                                                                            "size": 8,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\diagnostic.cpp\\log_const_bliss_diag"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "name": "events.cpp",
                                                                    "size": 420,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\events.cpp",
                                                                    "children": [
                                                                        {
                                                                            "name": "_ZN5bliss6events4initEPNS_12StateMachineE",
                                                                            "size": 20,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\events.cpp\\_ZN5bliss6events4initEPNS_12StateMachineE"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss6events16events_availableEv",
                                                                            "size": 60,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\events.cpp\\_ZN5bliss6events16events_availableEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss6events3addENS0_6type_eEt",
                                                                            "size": 236,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\events.cpp\\_ZN5bliss6events3addENS0_6type_eEt"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss6events9get_eventEPNS0_7event_tE",
                                                                            "size": 104,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\events.cpp\\_ZN5bliss6events9get_eventEPNS0_7event_tE"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "name": "bliss.cpp",
                                                                    "size": 130,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\bliss.cpp",
                                                                    "children": [
                                                                        {
                                                                            "name": "_ZN5bliss11Application3runEPK6device",
                                                                            "size": 92,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\bliss.cpp\\_ZN5bliss11Application3runEPK6device"
                                                                        },
                                                                        {
                                                                            "name": "_ZN5bliss11Application15register_sensorERNS_7ISensorE",
                                                                            "size": 38,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\src\\bliss.cpp\\_ZN5bliss11Application15register_sensorERNS_7ISensorE"
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "lib",
                                                            "size": 4,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\lib",
                                                            "children": [
                                                                {
                                                                    "name": "etl",
                                                                    "size": 4,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\lib\\etl",
                                                                    "children": [
                                                                        {
                                                                            "name": "include",
                                                                            "size": 4,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\lib\\etl\\include",
                                                                            "children": [
                                                                                {
                                                                                    "name": "etl",
                                                                                    "size": 4,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\lib\\etl\\include\\etl",
                                                                                    "children": [
                                                                                        {
                                                                                            "name": "circular_buffer.h",
                                                                                            "size": 4,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\lib\\etl\\include\\etl\\circular_buffer.h",
                                                                                            "children": [
                                                                                                {
                                                                                                    "name": "_ZN3etl15circular_bufferIN5bliss10diagnostic13reboot_info_tELj3EED2Ev",
                                                                                                    "size": 2,
                                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\lib\\etl\\include\\etl\\circular_buffer.h\\_ZN3etl15circular_bufferIN5bliss10diagnostic13reboot_info_tELj3EED2Ev"
                                                                                                },
                                                                                                {
                                                                                                    "name": "_ZN3etl15circular_bufferIN5bliss6events7event_tELj30EED1Ev",
                                                                                                    "size": 2,
                                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\lib\\etl\\include\\etl\\circular_buffer.h\\_ZN3etl15circular_bufferIN5bliss6events7event_tELj30EED1Ev"
                                                                                                }
                                                                                            ]
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "include",
                                                            "size": 20,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\include",
                                                            "children": [
                                                                {
                                                                    "name": "bliss",
                                                                    "size": 20,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\include\\bliss",
                                                                    "children": [
                                                                        {
                                                                            "name": "bliss.hpp",
                                                                            "size": 20,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\include\\bliss\\bliss.hpp",
                                                                            "children": [
                                                                                {
                                                                                    "name": "_ZN5bliss11ApplicationD1Ev",
                                                                                    "size": 20,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bliss\\include\\bliss\\bliss.hpp\\_ZN5bliss11ApplicationD1Ev"
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "qpcpp",
                                                    "size": 2280,
                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp",
                                                    "children": [
                                                        {
                                                            "name": "src",
                                                            "size": 1790,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src",
                                                            "children": [
                                                                {
                                                                    "name": "qf",
                                                                    "size": 1790,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf",
                                                                    "children": [
                                                                        {
                                                                            "name": "qep_hsm.cpp",
                                                                            "size": 672,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qep_hsm.cpp",
                                                                            "children": [
                                                                                {
                                                                                    "name": "_ZN12_GLOBAL__N_1L16hsm_reservedEvt_EPN2QP4QHsmEPFjPvPKNS0_4QEvtEENS1_11ReservedSigE",
                                                                                    "size": 16,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qep_hsm.cpp\\_ZN12_GLOBAL__N_1L16hsm_reservedEvt_EPN2QP4QHsmEPFjPvPKNS0_4QEvtEENS1_11ReservedSigE"
                                                                                },
                                                                                {
                                                                                    "name": "_ZN12_GLOBAL__N_1L15hsm_state_exit_EPN2QP4QHsmEPFjPvPKNS0_4QEvtEEj.constprop.0",
                                                                                    "size": 20,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qep_hsm.cpp\\_ZN12_GLOBAL__N_1L15hsm_state_exit_EPN2QP4QHsmEPFjPvPKNS0_4QEvtEEj.constprop.0"
                                                                                },
                                                                                {
                                                                                    "name": "_ZN2QP4QHsmC1EPFjPvPKNS_4QEvtEE",
                                                                                    "size": 20,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qep_hsm.cpp\\_ZN2QP4QHsmC1EPFjPvPKNS_4QEvtEE"
                                                                                },
                                                                                {
                                                                                    "name": "_ZN2QP4QHsm3topEPvPKNS_4QEvtE",
                                                                                    "size": 4,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qep_hsm.cpp\\_ZN2QP4QHsm3topEPvPKNS_4QEvtE"
                                                                                },
                                                                                {
                                                                                    "name": "_ZN2QP4QHsm8dispatchEPKNS_4QEvtEj",
                                                                                    "size": 232,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qep_hsm.cpp\\_ZN2QP4QHsm8dispatchEPKNS_4QEvtEj"
                                                                                },
                                                                                {
                                                                                    "name": "_ZN2QP4QHsm4initEPKvj",
                                                                                    "size": 144,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qep_hsm.cpp\\_ZN2QP4QHsm4initEPKvj"
                                                                                },
                                                                                {
                                                                                    "name": "_ZN2QP4QHsm8hsm_tranERA6_PFjPvPKNS_4QEvtEEj",
                                                                                    "size": 236,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qep_hsm.cpp\\_ZN2QP4QHsm8hsm_tranERA6_PFjPvPKNS_4QEvtEEj"
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "name": "qep_msm.cpp",
                                                                            "size": 532,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qep_msm.cpp",
                                                                            "children": [
                                                                                {
                                                                                    "name": "_ZN2QP4QMsm8dispatchEPKNS_4QEvtEj",
                                                                                    "size": 268,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qep_msm.cpp\\_ZN2QP4QMsm8dispatchEPKNS_4QEvtEj"
                                                                                },
                                                                                {
                                                                                    "name": "_ZN2QP4QMsm10execTatbl_EPKNS_14QMTranActTableEj",
                                                                                    "size": 52,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qep_msm.cpp\\_ZN2QP4QMsm10execTatbl_EPKNS_14QMTranActTableEj"
                                                                                },
                                                                                {
                                                                                    "name": "_ZN2QP4QMsm4initEPKvj",
                                                                                    "size": 68,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qep_msm.cpp\\_ZN2QP4QMsm4initEPKvj"
                                                                                },
                                                                                {
                                                                                    "name": "_ZN2QP4QMsm17exitToTranSource_EPKNS_7QMStateES3_j",
                                                                                    "size": 48,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qep_msm.cpp\\_ZN2QP4QMsm17exitToTranSource_EPKNS_7QMStateES3_j"
                                                                                },
                                                                                {
                                                                                    "name": "_ZN2QP4QMsm13enterHistory_EPKNS_7QMStateEj",
                                                                                    "size": 96,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qep_msm.cpp\\_ZN2QP4QMsm13enterHistory_EPKNS_7QMStateEj"
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "name": "qf_qmact.cpp",
                                                                            "size": 32,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qf_qmact.cpp",
                                                                            "children": [
                                                                                {
                                                                                    "name": "_ZN2QP8QMActive4initEj",
                                                                                    "size": 16,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qf_qmact.cpp\\_ZN2QP8QMActive4initEj"
                                                                                },
                                                                                {
                                                                                    "name": "_ZN2QP8QMActive4initEPKvj",
                                                                                    "size": 12,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qf_qmact.cpp\\_ZN2QP8QMActive4initEPKvj"
                                                                                },
                                                                                {
                                                                                    "name": "_ZN2QP8QMActive8dispatchEPKNS_4QEvtEj",
                                                                                    "size": 4,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qf_qmact.cpp\\_ZN2QP8QMActive8dispatchEPKNS_4QEvtEj"
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "name": "qf_mem.cpp",
                                                                            "size": 92,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qf_mem.cpp",
                                                                            "children": [
                                                                                {
                                                                                    "name": "_ZN2QP6QMPool3putEPvj",
                                                                                    "size": 76,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qf_mem.cpp\\_ZN2QP6QMPool3putEPvj"
                                                                                },
                                                                                {
                                                                                    "name": "_ZN2QP6QMPoolC2Ev",
                                                                                    "size": 16,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qf_mem.cpp\\_ZN2QP6QMPoolC2Ev"
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "name": "qf_time.cpp",
                                                                            "size": 18,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qf_time.cpp",
                                                                            "children": [
                                                                                {
                                                                                    "name": "_ZN2QP8QTimeEvtC2Ev",
                                                                                    "size": 18,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qf_time.cpp\\_ZN2QP8QTimeEvtC2Ev"
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "name": "qf_dyn.cpp",
                                                                            "size": 108,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qf_dyn.cpp",
                                                                            "children": [
                                                                                {
                                                                                    "name": "_ZN2QP2QF2gcEPKNS_4QEvtE",
                                                                                    "size": 108,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qf_dyn.cpp\\_ZN2QP2QF2gcEPKNS_4QEvtE"
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "name": "qf_ps.cpp",
                                                                            "size": 132,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qf_ps.cpp",
                                                                            "children": [
                                                                                {
                                                                                    "name": "_ZNK2QP7QActive9subscribeEi",
                                                                                    "size": 108,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qf_ps.cpp\\_ZNK2QP7QActive9subscribeEi"
                                                                                },
                                                                                {
                                                                                    "name": "_ZN2QP7QActive6psInitEPNS_5QPSetEi",
                                                                                    "size": 24,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qf_ps.cpp\\_ZN2QP7QActive6psInitEPNS_5QPSetEi"
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "name": "qf_qact.cpp",
                                                                            "size": 204,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qf_qact.cpp",
                                                                            "children": [
                                                                                {
                                                                                    "name": "_ZN2QP2QF5bzeroEPvj",
                                                                                    "size": 8,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qf_qact.cpp\\_ZN2QP2QF5bzeroEPvj"
                                                                                },
                                                                                {
                                                                                    "name": "_ZN2QP7QActive9register_Ev",
                                                                                    "size": 148,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qf_qact.cpp\\_ZN2QP7QActive9register_Ev"
                                                                                },
                                                                                {
                                                                                    "name": "_ZN2QP7QActiveC2EPFjPvPKNS_4QEvtEE",
                                                                                    "size": 48,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\src\\qf\\qf_qact.cpp\\_ZN2QP7QActiveC2EPFjPvPKNS_4QEvtEE"
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "zephyr",
                                                            "size": 454,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\zephyr",
                                                            "children": [
                                                                {
                                                                    "name": "qf_port.cpp",
                                                                    "size": 454,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\zephyr\\qf_port.cpp",
                                                                    "children": [
                                                                        {
                                                                            "name": "_ZN12_GLOBAL__N_1L12thread_entryEPvS0_S0_",
                                                                            "size": 6,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\zephyr\\qf_port.cpp\\_ZN12_GLOBAL__N_1L12thread_entryEPvS0_S0_"
                                                                        },
                                                                        {
                                                                            "name": "_ZN2QP7QActive8postLIFOEPKNS_4QEvtE",
                                                                            "size": 76,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\zephyr\\qf_port.cpp\\_ZN2QP7QActive8postLIFOEPKNS_4QEvtE"
                                                                        },
                                                                        {
                                                                            "name": "_ZN2QP2QF3runEv",
                                                                            "size": 10,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\zephyr\\qf_port.cpp\\_ZN2QP2QF3runEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN2QP7QActive5startEtPPKNS_4QEvtEjPvjPKv",
                                                                            "size": 148,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\zephyr\\qf_port.cpp\\_ZN2QP7QActive5startEtPPKNS_4QEvtEjPvjPKv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN2QP7QActive7thread_EPS0_",
                                                                            "size": 34,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\zephyr\\qf_port.cpp\\_ZN2QP7QActive7thread_EPS0_"
                                                                        },
                                                                        {
                                                                            "name": "_ZN2QP7QActive5post_EPKNS_4QEvtEjPKv",
                                                                            "size": 116,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\zephyr\\qf_port.cpp\\_ZN2QP7QActive5post_EPKNS_4QEvtEjPKv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN2QP2QF4initEv",
                                                                            "size": 12,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\zephyr\\qf_port.cpp\\_ZN2QP2QF4initEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN2QP7QActive7setAttrEjPKv",
                                                                            "size": 8,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\zephyr\\qf_port.cpp\\_ZN2QP7QActive7setAttrEjPKv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN2QP7QActive4get_Ev",
                                                                            "size": 44,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\zephyr\\qf_port.cpp\\_ZN2QP7QActive4get_Ev"
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "include",
                                                            "size": 36,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\include",
                                                            "children": [
                                                                {
                                                                    "name": "qep.hpp",
                                                                    "size": 10,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\include\\qep.hpp",
                                                                    "children": [
                                                                        {
                                                                            "name": "_ZN2QP4QHsm4initEj",
                                                                            "size": 10,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\include\\qep.hpp\\_ZN2QP4QHsm4initEj"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "name": "qf.hpp",
                                                                    "size": 26,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\include\\qf.hpp",
                                                                    "children": [
                                                                        {
                                                                            "name": "_ZN2QP7QActive5startEtPPKNS_4QEvtEjPvj",
                                                                            "size": 26,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\qpcpp\\include\\qf.hpp\\_ZN2QP7QActive5startEtPPKNS_4QEvtEjPvj"
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "zephyr_phyphox-ble",
                                                    "size": 544,
                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\zephyr_phyphox-ble",
                                                    "children": [
                                                        {
                                                            "name": "src",
                                                            "size": 544,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\zephyr_phyphox-ble\\src",
                                                            "children": [
                                                                {
                                                                    "name": "phyphox_ble.cpp",
                                                                    "size": 544,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\zephyr_phyphox-ble\\src\\phyphox_ble.cpp",
                                                                    "children": [
                                                                        {
                                                                            "name": "_ZN11phyphox_bleL13eventwrite_cbEP7bt_connPK12bt_gatt_attrPKvtth",
                                                                            "size": 92,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\zephyr_phyphox-ble\\src\\phyphox_ble.cpp\\_ZN11phyphox_bleL13eventwrite_cbEP7bt_connPK12bt_gatt_attrPKvtth"
                                                                        },
                                                                        {
                                                                            "name": "_ZN11phyphox_ble10experimentL10update_crcEv",
                                                                            "size": 32,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\zephyr_phyphox-ble\\src\\phyphox_ble.cpp\\_ZN11phyphox_ble10experimentL10update_crcEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN11phyphox_bleL12send_exp_xmlEv",
                                                                            "size": 168,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\zephyr_phyphox-ble\\src\\phyphox_ble.cpp\\_ZN11phyphox_bleL12send_exp_xmlEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN11phyphox_bleL14exp_xml_notifyEPK12bt_gatt_attrt",
                                                                            "size": 36,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\zephyr_phyphox-ble\\src\\phyphox_ble.cpp\\_ZN11phyphox_bleL14exp_xml_notifyEPK12bt_gatt_attrt"
                                                                        },
                                                                        {
                                                                            "name": "_ZN11phyphox_ble10experiment15set_blename_outEPch",
                                                                            "size": 84,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\zephyr_phyphox-ble\\src\\phyphox_ble.cpp\\_ZN11phyphox_ble10experiment15set_blename_outEPch"
                                                                        },
                                                                        {
                                                                            "name": "_ZN11phyphox_ble22exp_xml_notify_sent_cbEP7bt_connPv",
                                                                            "size": 24,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\zephyr_phyphox-ble\\src\\phyphox_ble.cpp\\_ZN11phyphox_ble22exp_xml_notify_sent_cbEP7bt_connPv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN11phyphox_ble10experiment16register_load_cbEPFvPvES1_",
                                                                            "size": 20,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\zephyr_phyphox-ble\\src\\phyphox_ble.cpp\\_ZN11phyphox_ble10experiment16register_load_cbEPFvPvES1_"
                                                                        },
                                                                        {
                                                                            "name": "_ZN11phyphox_ble10experiment15register_evt_cbEPFvNS0_7Event_tEPvES2_",
                                                                            "size": 20,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\zephyr_phyphox-ble\\src\\phyphox_ble.cpp\\_ZN11phyphox_ble10experiment15register_evt_cbEPFvNS0_7Event_tEPvES2_"
                                                                        },
                                                                        {
                                                                            "name": "_ZN11phyphox_ble10experiment14set_blename_inEPch",
                                                                            "size": 4,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\zephyr_phyphox-ble\\src\\phyphox_ble.cpp\\_ZN11phyphox_ble10experiment14set_blename_inEPch"
                                                                        },
                                                                        {
                                                                            "name": "_ZN11phyphox_ble10experiment9set_titleEPch",
                                                                            "size": 64,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\zephyr_phyphox-ble\\src\\phyphox_ble.cpp\\_ZN11phyphox_ble10experiment9set_titleEPch"
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "bq35100",
                                                    "size": 758,
                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bq35100",
                                                    "children": [
                                                        {
                                                            "name": "src",
                                                            "size": 758,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bq35100\\src",
                                                            "children": [
                                                                {
                                                                    "name": "bq35100.cpp",
                                                                    "size": 758,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bq35100\\src\\bq35100.cpp",
                                                                    "children": [
                                                                        {
                                                                            "name": "_ZN7BQ3510012writeCommandENS_13bq35100_cmd_tEPKhj.part.0",
                                                                            "size": 42,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bq35100\\src\\bq35100.cpp\\_ZN7BQ3510012writeCommandENS_13bq35100_cmd_tEPKhj.part.0"
                                                                        },
                                                                        {
                                                                            "name": "_ZN7BQ351004initEv",
                                                                            "size": 150,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bq35100\\src\\bq35100.cpp\\_ZN7BQ351004initEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN7BQ3510010startGaugeEv",
                                                                            "size": 38,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bq35100\\src\\bq35100.cpp\\_ZN7BQ3510010startGaugeEv"
                                                                        },
                                                                        {
                                                                            "name": "_ZN7BQ3510015getBatteryAlertEPh",
                                                                            "size": 28,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bq35100\\src\\bq35100.cpp\\_ZN7BQ3510015getBatteryAlertEPh"
                                                                        },
                                                                        {
                                                                            "name": "_ZN7BQ351009getStatusEPt",
                                                                            "size": 56,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bq35100\\src\\bq35100.cpp\\_ZN7BQ351009getStatusEPt"
                                                                        },
                                                                        {
                                                                            "name": "_ZN7BQ351004readEPhj",
                                                                            "size": 36,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bq35100\\src\\bq35100.cpp\\_ZN7BQ351004readEPhj"
                                                                        },
                                                                        {
                                                                            "name": "_ZN7BQ35100C2EPK6devicePK12gpio_dt_specj",
                                                                            "size": 16,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bq35100\\src\\bq35100.cpp\\_ZN7BQ35100C2EPK6devicePK12gpio_dt_specj"
                                                                        },
                                                                        {
                                                                            "name": "_ZN7BQ351007getCntlENS_14bq35100_cntl_tEPt",
                                                                            "size": 56,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bq35100\\src\\bq35100.cpp\\_ZN7BQ351007getCntlENS_14bq35100_cntl_tEPt"
                                                                        },
                                                                        {
                                                                            "name": "_ZN7BQ3510015getUsedCapacityEPj",
                                                                            "size": 28,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bq35100\\src\\bq35100.cpp\\_ZN7BQ3510015getUsedCapacityEPj"
                                                                        },
                                                                        {
                                                                            "name": "_ZN7BQ351007getDataENS_13bq35100_cmd_tEPhj",
                                                                            "size": 38,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bq35100\\src\\bq35100.cpp\\_ZN7BQ351007getDataENS_13bq35100_cmd_tEPhj"
                                                                        },
                                                                        {
                                                                            "name": "_ZN7BQ351005writeEPKhjb",
                                                                            "size": 46,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bq35100\\src\\bq35100.cpp\\_ZN7BQ351005writeEPKhjb"
                                                                        },
                                                                        {
                                                                            "name": "_ZN7BQ3510017getDesignCapacityEPt",
                                                                            "size": 28,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bq35100\\src\\bq35100.cpp\\_ZN7BQ3510017getDesignCapacityEPt"
                                                                        },
                                                                        {
                                                                            "name": "_ZN7BQ3510022getRemainingPercentageEPh",
                                                                            "size": 84,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bq35100\\src\\bq35100.cpp\\_ZN7BQ3510022getRemainingPercentageEPh"
                                                                        },
                                                                        {
                                                                            "name": "log_const_bq35100",
                                                                            "size": 8,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bq35100\\src\\bq35100.cpp\\log_const_bq35100"
                                                                        },
                                                                        {
                                                                            "name": "_ZN7BQ351008sendCntlENS_14bq35100_cntl_tE",
                                                                            "size": 22,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bq35100\\src\\bq35100.cpp\\_ZN7BQ351008sendCntlENS_14bq35100_cntl_tE"
                                                                        },
                                                                        {
                                                                            "name": "_ZN7BQ3510013waitforStatusEttj",
                                                                            "size": 82,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\bq35100\\src\\bq35100.cpp\\_ZN7BQ3510013waitforStatusEttj"
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "etl",
                                                    "size": 2,
                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\etl",
                                                    "children": [
                                                        {
                                                            "name": "include",
                                                            "size": 2,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\etl\\include",
                                                            "children": [
                                                                {
                                                                    "name": "etl",
                                                                    "size": 2,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\etl\\include\\etl",
                                                                    "children": [
                                                                        {
                                                                            "name": "queue.h",
                                                                            "size": 2,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\etl\\include\\etl\\queue.h",
                                                                            "children": [
                                                                                {
                                                                                    "name": "_ZN3etl5queueIN4carl3ble8sample_tELj2ELj2EED2Ev",
                                                                                    "size": 2,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\etl\\include\\etl\\queue.h\\_ZN3etl5queueIN4carl3ble8sample_tELj2ELj2EED2Ev"
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        },
                                        {
                                            "name": "src",
                                            "size": 5774,
                                            "identifier": "C:\\carl-ble-sensor-firmware\\src",
                                            "children": [
                                                {
                                                    "name": "ble",
                                                    "size": 244,
                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\ble",
                                                    "children": [
                                                        {
                                                            "name": "config_service.cpp",
                                                            "size": 28,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\src\\ble\\config_service.cpp",
                                                            "children": [
                                                                {
                                                                    "name": "_ZN4carl3ble6configL17read_threshold_cbEP7bt_connPK12bt_gatt_attrPvtt",
                                                                    "size": 28,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\ble\\config_service.cpp\\_ZN4carl3ble6configL17read_threshold_cbEP7bt_connPK12bt_gatt_attrPvtt"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "carl_ble.cpp",
                                                            "size": 188,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\src\\ble\\carl_ble.cpp",
                                                            "children": [
                                                                {
                                                                    "name": "_ZN4carl3bleL13event_sent_cbEP7bt_connPv",
                                                                    "size": 24,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\ble\\carl_ble.cpp\\_ZN4carl3bleL13event_sent_cbEP7bt_connPv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3bleL7read_cbEP7bt_connPK12bt_gatt_attrPvtt",
                                                                    "size": 28,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\ble\\carl_ble.cpp\\_ZN4carl3bleL7read_cbEP7bt_connPK12bt_gatt_attrPvtt"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3ble18update_measurementEPNS0_8sample_tE",
                                                                    "size": 24,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\ble\\carl_ble.cpp\\_ZN4carl3ble18update_measurementEPNS0_8sample_tE"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3ble6notifyEPNS0_8sample_tE",
                                                                    "size": 52,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\ble\\carl_ble.cpp\\_ZN4carl3ble6notifyEPNS0_8sample_tE"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3ble18notify_shock_eventEPNS0_11shock_evt_tE",
                                                                    "size": 60,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\ble\\carl_ble.cpp\\_ZN4carl3ble18notify_shock_eventEPNS0_11shock_evt_tE"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "logging_service.cpp",
                                                            "size": 28,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\src\\ble\\logging_service.cpp",
                                                            "children": [
                                                                {
                                                                    "name": "_ZN4carl3ble7loggingL15build_id_readcbEP7bt_connPK12bt_gatt_attrPvtt",
                                                                    "size": 28,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\ble\\logging_service.cpp\\_ZN4carl3ble7loggingL15build_id_readcbEP7bt_connPK12bt_gatt_attrPvtt"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "app",
                                                    "size": 3112,
                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app",
                                                    "children": [
                                                        {
                                                            "name": "carl_app.cpp",
                                                            "size": 580,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\carl_app.cpp",
                                                            "children": [
                                                                {
                                                                    "name": "_ZN4carl3appL14hall_sensor_cbEPv",
                                                                    "size": 32,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\carl_app.cpp\\_ZN4carl3appL14hall_sensor_cbEPv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3app4initEv",
                                                                    "size": 360,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\carl_app.cpp\\_ZN4carl3app4initEv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3app14bliss_event_cbEN5bliss10sm_event_eEbPv",
                                                                    "size": 104,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\carl_app.cpp\\_ZN4carl3app14bliss_event_cbEN5bliss10sm_event_eEbPv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3app5startEv",
                                                                    "size": 76,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\carl_app.cpp\\_ZN4carl3app5startEv"
                                                                },
                                                                {
                                                                    "name": "log_const_carl_app",
                                                                    "size": 8,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\carl_app.cpp\\log_const_carl_app"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "led_task.cpp",
                                                            "size": 572,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\led_task.cpp",
                                                            "children": [
                                                                {
                                                                    "name": "_ZN4carl8led_taskL8timer_cbEP7k_timer",
                                                                    "size": 12,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\led_task.cpp\\_ZN4carl8led_taskL8timer_cbEP7k_timer"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl8led_taskL12control_taskEPvS1_S1_",
                                                                    "size": 420,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\led_task.cpp\\_ZN4carl8led_taskL12control_taskEPvS1_S1_"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl8led_task5startEv",
                                                                    "size": 92,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\led_task.cpp\\_ZN4carl8led_task5startEv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl8led_task7displayEPNS0_11led_controlEhPFvvE",
                                                                    "size": 48,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\led_task.cpp\\_ZN4carl8led_task7displayEPNS0_11led_controlEhPFvvE"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "shock_data.cpp",
                                                            "size": 286,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\shock_data.cpp",
                                                            "children": [
                                                                {
                                                                    "name": "_ZN4carl3app9ShockData13accel_peak_cbEfPv",
                                                                    "size": 172,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\shock_data.cpp\\_ZN4carl3app9ShockData13accel_peak_cbEfPv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3app9ShockData11send_sampleEv",
                                                                    "size": 46,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\shock_data.cpp\\_ZN4carl3app9ShockData11send_sampleEv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3app9ShockData7is_idleEv",
                                                                    "size": 6,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\shock_data.cpp\\_ZN4carl3app9ShockData7is_idleEv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3app9ShockData4initEv",
                                                                    "size": 52,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\shock_data.cpp\\_ZN4carl3app9ShockData4initEv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3app9ShockData16sample_availableEv",
                                                                    "size": 10,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\shock_data.cpp\\_ZN4carl3app9ShockData16sample_availableEv"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "sampling_sm.cpp",
                                                            "size": 1092,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\sampling_sm.cpp",
                                                            "children": [
                                                                {
                                                                    "name": "_ZN4carl3app10SamplingSM15detect_movementEPvPKN2QP4QEvtE",
                                                                    "size": 4,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\sampling_sm.cpp\\_ZN4carl3app10SamplingSM15detect_movementEPvPKN2QP4QEvtE"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3app10SamplingSM17sample_timeout_cbEP7k_timer",
                                                                    "size": 36,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\sampling_sm.cpp\\_ZN4carl3app10SamplingSM17sample_timeout_cbEP7k_timer"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3app10SamplingSM15tilt_trigger_cbEPv",
                                                                    "size": 24,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\sampling_sm.cpp\\_ZN4carl3app10SamplingSM15tilt_trigger_cbEPv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3app10SamplingSM4idleEPvPKN2QP4QEvtE",
                                                                    "size": 4,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\sampling_sm.cpp\\_ZN4carl3app10SamplingSM4idleEPvPKN2QP4QEvtE"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3app10SamplingSM8samplingEPvPKN2QP4QEvtE",
                                                                    "size": 4,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\sampling_sm.cpp\\_ZN4carl3app10SamplingSM8samplingEPvPKN2QP4QEvtE"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3app10SamplingSM10get_sampleEv",
                                                                    "size": 60,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\sampling_sm.cpp\\_ZN4carl3app10SamplingSM10get_sampleEv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3app10SamplingSM10sampling_hEPKN2QP4QEvtE",
                                                                    "size": 336,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\sampling_sm.cpp\\_ZN4carl3app10SamplingSM10sampling_hEPKN2QP4QEvtE"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3app10SamplingSM17detect_movement_hEPKN2QP4QEvtE",
                                                                    "size": 360,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\sampling_sm.cpp\\_ZN4carl3app10SamplingSM17detect_movement_hEPKN2QP4QEvtE"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3app10SamplingSM18sample_timer_startEv",
                                                                    "size": 24,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\sampling_sm.cpp\\_ZN4carl3app10SamplingSM18sample_timer_startEv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3app10SamplingSM11is_samplingEv",
                                                                    "size": 16,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\sampling_sm.cpp\\_ZN4carl3app10SamplingSM11is_samplingEv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3app10SamplingSMC2ERNS0_10RollerDataE",
                                                                    "size": 52,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\sampling_sm.cpp\\_ZN4carl3app10SamplingSMC2ERNS0_10RollerDataE"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3app10SamplingSM6idle_hEPKN2QP4QEvtE",
                                                                    "size": 100,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\sampling_sm.cpp\\_ZN4carl3app10SamplingSM6idle_hEPKN2QP4QEvtE"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3app10SamplingSM7initialEPvPKN2QP4QEvtE",
                                                                    "size": 4,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\sampling_sm.cpp\\_ZN4carl3app10SamplingSM7initialEPvPKN2QP4QEvtE"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3app10SamplingSM9initial_hEPKN2QP4QEvtE",
                                                                    "size": 68,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\sampling_sm.cpp\\_ZN4carl3app10SamplingSM9initial_hEPKN2QP4QEvtE"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "circ_buffer.hpp",
                                                            "size": 208,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\circ_buffer.hpp",
                                                            "children": [
                                                                {
                                                                    "name": "_ZN13SensorSampleTIN4carl3ble11shock_evt_tELt20ELt1000ELj262144EE10pop_sampleEPS2_",
                                                                    "size": 92,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\circ_buffer.hpp\\_ZN13SensorSampleTIN4carl3ble11shock_evt_tELt20ELt1000ELj262144EE10pop_sampleEPS2_"
                                                                },
                                                                {
                                                                    "name": "_ZN13SensorSampleTIN4carl3ble11shock_evt_tELt20ELt1000ELj262144EE15get_buffer_sizeEv",
                                                                    "size": 28,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\circ_buffer.hpp\\_ZN13SensorSampleTIN4carl3ble11shock_evt_tELt20ELt1000ELj262144EE15get_buffer_sizeEv"
                                                                },
                                                                {
                                                                    "name": "_ZN13SensorSampleTIN4carl3ble8sample_tELt10ELt1000ELj0EE10pop_sampleEPS2_",
                                                                    "size": 88,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\circ_buffer.hpp\\_ZN13SensorSampleTIN4carl3ble8sample_tELt10ELt1000ELj0EE10pop_sampleEPS2_"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "shock_data.hpp",
                                                            "size": 16,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\shock_data.hpp",
                                                            "children": [
                                                                {
                                                                    "name": "_ZN4carl3app9ShockDataD0Ev",
                                                                    "size": 14,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\shock_data.hpp\\_ZN4carl3app9ShockDataD0Ev"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3app9ShockDataD1Ev",
                                                                    "size": 2,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\shock_data.hpp\\_ZN4carl3app9ShockDataD1Ev"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "roller_data.cpp",
                                                            "size": 342,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\roller_data.cpp",
                                                            "children": [
                                                                {
                                                                    "name": "_ZN4carl3app10RollerData7is_idleEv",
                                                                    "size": 6,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\roller_data.cpp\\_ZN4carl3app10RollerData7is_idleEv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3app10RollerData10get_sampleEPNS_3ble8sample_tE",
                                                                    "size": 120,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\roller_data.cpp\\_ZN4carl3app10RollerData10get_sampleEPNS_3ble8sample_tE"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3app10RollerData10add_sampleERNS_3ble8sample_tE",
                                                                    "size": 160,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\roller_data.cpp\\_ZN4carl3app10RollerData10add_sampleERNS_3ble8sample_tE"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3app10RollerData11send_sampleEv",
                                                                    "size": 26,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\roller_data.cpp\\_ZN4carl3app10RollerData11send_sampleEv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3app10RollerData16sample_availableEv",
                                                                    "size": 30,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\roller_data.cpp\\_ZN4carl3app10RollerData16sample_availableEv"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "roller_data.hpp",
                                                            "size": 16,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\roller_data.hpp",
                                                            "children": [
                                                                {
                                                                    "name": "_ZN4carl3app10RollerDataD2Ev",
                                                                    "size": 2,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\roller_data.hpp\\_ZN4carl3app10RollerDataD2Ev"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3app10RollerDataD0Ev",
                                                                    "size": 14,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\app\\roller_data.hpp\\_ZN4carl3app10RollerDataD0Ev"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "hal",
                                                    "size": 1552,
                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal",
                                                    "children": [
                                                        {
                                                            "name": "power_mgmt.cpp",
                                                            "size": 158,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\power_mgmt.cpp",
                                                            "children": [
                                                                {
                                                                    "name": "_ZN4carl3hal10power_mgmtL21init_sensor_regulatorEv",
                                                                    "size": 40,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\power_mgmt.cpp\\_ZN4carl3hal10power_mgmtL21init_sensor_regulatorEv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3hal10power_mgmtL26post_init_sensor_regulatorEv",
                                                                    "size": 10,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\power_mgmt.cpp\\_ZN4carl3hal10power_mgmtL26post_init_sensor_regulatorEv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3hal10power_mgmt7suspendEv",
                                                                    "size": 26,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\power_mgmt.cpp\\_ZN4carl3hal10power_mgmt7suspendEv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3hal10power_mgmt4initEv",
                                                                    "size": 12,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\power_mgmt.cpp\\_ZN4carl3hal10power_mgmt4initEv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3hal10power_mgmt10set_5v_regEb",
                                                                    "size": 68,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\power_mgmt.cpp\\_ZN4carl3hal10power_mgmt10set_5v_regEb"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3hal10power_mgmt10exit_sleepE8pm_state",
                                                                    "size": 2,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\power_mgmt.cpp\\_ZN4carl3hal10power_mgmt10exit_sleepE8pm_state"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "battery_gauge.cpp",
                                                            "size": 452,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\battery_gauge.cpp",
                                                            "children": [
                                                                {
                                                                    "name": "_ZN4carl3hal12batteryGaugeL11timerBat_cbEP7k_timer",
                                                                    "size": 12,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\battery_gauge.cpp\\_ZN4carl3hal12batteryGaugeL11timerBat_cbEP7k_timer"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3hal12batteryGaugeL8alarm_cbEPv",
                                                                    "size": 60,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\battery_gauge.cpp\\_ZN4carl3hal12batteryGaugeL8alarm_cbEPv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3hal12batteryGaugeL13batteryReportEPvS2_S2_",
                                                                    "size": 68,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\battery_gauge.cpp\\_ZN4carl3hal12batteryGaugeL13batteryReportEPvS2_S2_"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3hal12batteryGauge16batteryGaugeInitEv",
                                                                    "size": 64,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\battery_gauge.cpp\\_ZN4carl3hal12batteryGauge16batteryGaugeInitEv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3hal12batteryGauge17batteryGaugeStartEv",
                                                                    "size": 36,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\battery_gauge.cpp\\_ZN4carl3hal12batteryGauge17batteryGaugeStartEv"
                                                                },
                                                                {
                                                                    "name": "log_const_battery_gauge",
                                                                    "size": 8,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\battery_gauge.cpp\\log_const_battery_gauge"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3hal12batteryGauge18batteryAlertReportENS1_13alertStatus_tE",
                                                                    "size": 48,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\battery_gauge.cpp\\_ZN4carl3hal12batteryGauge18batteryAlertReportENS1_13alertStatus_tE"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3hal12batteryGauge23batteryRemainingPercentEPh",
                                                                    "size": 64,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\battery_gauge.cpp\\_ZN4carl3hal12batteryGauge23batteryRemainingPercentEPh"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3hal12batteryGauge18batteryReportStartEv",
                                                                    "size": 92,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\battery_gauge.cpp\\_ZN4carl3hal12batteryGauge18batteryReportStartEv"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "rgb_led.cpp",
                                                            "size": 220,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\rgb_led.cpp",
                                                            "children": [
                                                                {
                                                                    "name": "_ZN4carl3hal7rgb_led8setColorENS1_7color_tEh",
                                                                    "size": 180,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\rgb_led.cpp\\_ZN4carl3hal7rgb_led8setColorENS1_7color_tEh"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3hal7rgb_led4initEv",
                                                                    "size": 40,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\rgb_led.cpp\\_ZN4carl3hal7rgb_led4initEv"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "gpio_interrupt.cpp",
                                                            "size": 216,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\gpio_interrupt.cpp",
                                                            "children": [
                                                                {
                                                                    "name": "_ZN4carl3hal13GPIOInterrupt11cb_internalEPK6deviceP13gpio_callbackj",
                                                                    "size": 12,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\gpio_interrupt.cpp\\_ZN4carl3hal13GPIOInterrupt11cb_internalEPK6deviceP13gpio_callbackj"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3hal13GPIOInterrupt7disableEv",
                                                                    "size": 28,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\gpio_interrupt.cpp\\_ZN4carl3hal13GPIOInterrupt7disableEv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3hal13GPIOInterrupt6enableEv",
                                                                    "size": 52,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\gpio_interrupt.cpp\\_ZN4carl3hal13GPIOInterrupt6enableEv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3hal13GPIOInterrupt4initEv",
                                                                    "size": 124,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\gpio_interrupt.cpp\\_ZN4carl3hal13GPIOInterrupt4initEv"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "eeprom.cpp",
                                                            "size": 300,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\eeprom.cpp",
                                                            "children": [
                                                                {
                                                                    "name": "_ZN4carl3hal6eeprom4readENS1_10img_offsetEPhj",
                                                                    "size": 48,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\eeprom.cpp\\_ZN4carl3hal6eeprom4readENS1_10img_offsetEPhj"
                                                                },
                                                                {
                                                                    "name": "log_const_hal_eeprom",
                                                                    "size": 8,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\eeprom.cpp\\log_const_hal_eeprom"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3hal6eeprom9reset_imgEv",
                                                                    "size": 100,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\eeprom.cpp\\_ZN4carl3hal6eeprom9reset_imgEv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3hal6eeprom4initEv",
                                                                    "size": 124,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\eeprom.cpp\\_ZN4carl3hal6eeprom4initEv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3hal6eeprom10update_crcEv",
                                                                    "size": 20,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\eeprom.cpp\\_ZN4carl3hal6eeprom10update_crcEv"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "pwm_led.cpp",
                                                            "size": 206,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\pwm_led.cpp",
                                                            "children": [
                                                                {
                                                                    "name": "_ZN4carl3hal3pwm12setDutyCycleEh",
                                                                    "size": 180,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\pwm_led.cpp\\_ZN4carl3hal3pwm12setDutyCycleEh"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl3hal3pwm4initEv",
                                                                    "size": 26,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\hal\\pwm_led.cpp\\_ZN4carl3hal3pwm4initEv"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "main.cpp",
                                                    "size": 14,
                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\main.cpp",
                                                    "children": [
                                                        {
                                                            "name": "main",
                                                            "size": 14,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\src\\main.cpp\\main"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "sensor",
                                                    "size": 836,
                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\sensor",
                                                    "children": [
                                                        {
                                                            "name": "gyroscope.cpp",
                                                            "size": 356,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\src\\sensor\\gyroscope.cpp",
                                                            "children": [
                                                                {
                                                                    "name": "_ZN4carl6sensor9Gyroscope10get_sampleEPNS1_8sample_tE",
                                                                    "size": 184,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\sensor\\gyroscope.cpp\\_ZN4carl6sensor9Gyroscope10get_sampleEPNS1_8sample_tE"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl6sensor9Gyroscope4initEv",
                                                                    "size": 16,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\sensor\\gyroscope.cpp\\_ZN4carl6sensor9Gyroscope4initEv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl6sensor9Gyroscope15set_temp_offsetEd",
                                                                    "size": 156,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\sensor\\gyroscope.cpp\\_ZN4carl6sensor9Gyroscope15set_temp_offsetEd"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "accelerometer.cpp",
                                                            "size": 480,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\src\\sensor\\accelerometer.cpp",
                                                            "children": [
                                                                {
                                                                    "name": "_ZN4carl6sensor13Accelerometer25disable_peak_trigger_axisENS1_6axis_eE",
                                                                    "size": 40,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\sensor\\accelerometer.cpp\\_ZN4carl6sensor13Accelerometer25disable_peak_trigger_axisENS1_6axis_eE"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl6sensor13Accelerometer4initEv",
                                                                    "size": 16,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\sensor\\accelerometer.cpp\\_ZN4carl6sensor13Accelerometer4initEv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl6sensor13Accelerometer19enable_peak_triggerEv",
                                                                    "size": 52,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\sensor\\accelerometer.cpp\\_ZN4carl6sensor13Accelerometer19enable_peak_triggerEv"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl6sensor13Accelerometer17set_peak_callbackEPFvfPvES2_",
                                                                    "size": 6,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\sensor\\accelerometer.cpp\\_ZN4carl6sensor13Accelerometer17set_peak_callbackEPFvfPvES2_"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl6sensor13Accelerometer21enable_peak_thresholdEb",
                                                                    "size": 34,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\sensor\\accelerometer.cpp\\_ZN4carl6sensor13Accelerometer21enable_peak_thresholdEb"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl6sensor13Accelerometer10get_sampleEPNS1_8sample_tE",
                                                                    "size": 228,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\sensor\\accelerometer.cpp\\_ZN4carl6sensor13Accelerometer10get_sampleEPNS1_8sample_tE"
                                                                },
                                                                {
                                                                    "name": "_ZN4carl6sensor13Accelerometer15trigger_handlerEPK6devicePK14sensor_trigger",
                                                                    "size": 104,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\sensor\\accelerometer.cpp\\_ZN4carl6sensor13Accelerometer15trigger_handlerEPK6devicePK14sensor_trigger"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "qp",
                                                    "size": 16,
                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\qp",
                                                    "children": [
                                                        {
                                                            "name": "qp_bsp.cpp",
                                                            "size": 16,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\src\\qp\\qp_bsp.cpp",
                                                            "children": [
                                                                {
                                                                    "name": "Q_onAssert",
                                                                    "size": 14,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\qp\\qp_bsp.cpp\\Q_onAssert"
                                                                },
                                                                {
                                                                    "name": "_ZN2QP2QF9onStartupEv",
                                                                    "size": 2,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\src\\qp\\qp_bsp.cpp\\_ZN2QP2QF9onStartupEv"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "WORKSPACE",
                    "size": 12742,
                    "identifier": "C:/Users/sw2.KRAFFT/ncs",
                    "children": [
                        {
                            "name": "modules",
                            "size": 7848,
                            "identifier": "modules",
                            "children": [
                                {
                                    "name": "crypto",
                                    "size": 1552,
                                    "identifier": "modules\\crypto",
                                    "children": [
                                        {
                                            "name": "tinycrypt",
                                            "size": 1552,
                                            "identifier": "modules\\crypto\\tinycrypt",
                                            "children": [
                                                {
                                                    "name": "lib",
                                                    "size": 1552,
                                                    "identifier": "modules\\crypto\\tinycrypt\\lib",
                                                    "children": [
                                                        {
                                                            "name": "source",
                                                            "size": 1552,
                                                            "identifier": "modules\\crypto\\tinycrypt\\lib\\source",
                                                            "children": [
                                                                {
                                                                    "name": "aes_encrypt.c",
                                                                    "size": 998,
                                                                    "identifier": "modules\\crypto\\tinycrypt\\lib\\source\\aes_encrypt.c",
                                                                    "children": [
                                                                        {
                                                                            "name": "add_round_key",
                                                                            "size": 138,
                                                                            "identifier": "modules\\crypto\\tinycrypt\\lib\\source\\aes_encrypt.c\\add_round_key"
                                                                        },
                                                                        {
                                                                            "name": "sub_bytes",
                                                                            "size": 24,
                                                                            "identifier": "modules\\crypto\\tinycrypt\\lib\\source\\aes_encrypt.c\\sub_bytes"
                                                                        },
                                                                        {
                                                                            "name": "sbox",
                                                                            "size": 256,
                                                                            "identifier": "modules\\crypto\\tinycrypt\\lib\\source\\aes_encrypt.c\\sbox"
                                                                        },
                                                                        {
                                                                            "name": "shift_rows",
                                                                            "size": 114,
                                                                            "identifier": "modules\\crypto\\tinycrypt\\lib\\source\\aes_encrypt.c\\shift_rows"
                                                                        },
                                                                        {
                                                                            "name": "mult_row_column",
                                                                            "size": 130,
                                                                            "identifier": "modules\\crypto\\tinycrypt\\lib\\source\\aes_encrypt.c\\mult_row_column"
                                                                        },
                                                                        {
                                                                            "name": "tc_aes128_set_encrypt_key",
                                                                            "size": 164,
                                                                            "identifier": "modules\\crypto\\tinycrypt\\lib\\source\\aes_encrypt.c\\tc_aes128_set_encrypt_key"
                                                                        },
                                                                        {
                                                                            "name": "tc_aes_encrypt",
                                                                            "size": 172,
                                                                            "identifier": "modules\\crypto\\tinycrypt\\lib\\source\\aes_encrypt.c\\tc_aes_encrypt"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "name": "utils.c",
                                                                    "size": 48,
                                                                    "identifier": "modules\\crypto\\tinycrypt\\lib\\source\\utils.c",
                                                                    "children": [
                                                                        {
                                                                            "name": "_set",
                                                                            "size": 4,
                                                                            "identifier": "modules\\crypto\\tinycrypt\\lib\\source\\utils.c\\_set"
                                                                        },
                                                                        {
                                                                            "name": "_copy",
                                                                            "size": 26,
                                                                            "identifier": "modules\\crypto\\tinycrypt\\lib\\source\\utils.c\\_copy"
                                                                        },
                                                                        {
                                                                            "name": "_double_byte",
                                                                            "size": 18,
                                                                            "identifier": "modules\\crypto\\tinycrypt\\lib\\source\\utils.c\\_double_byte"
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "name": "cmac_mode.c",
                                                                    "size": 506,
                                                                    "identifier": "modules\\crypto\\tinycrypt\\lib\\source\\cmac_mode.c",
                                                                    "children": [
                                                                        {
                                                                            "name": "tc_cmac_final",
                                                                            "size": 106,
                                                                            "identifier": "modules\\crypto\\tinycrypt\\lib\\source\\cmac_mode.c\\tc_cmac_final"
                                                                        },
                                                                        {
                                                                            "name": "tc_cmac_init",
                                                                            "size": 44,
                                                                            "identifier": "modules\\crypto\\tinycrypt\\lib\\source\\cmac_mode.c\\tc_cmac_init"
                                                                        },
                                                                        {
                                                                            "name": "gf_double",
                                                                            "size": 42,
                                                                            "identifier": "modules\\crypto\\tinycrypt\\lib\\source\\cmac_mode.c\\gf_double"
                                                                        },
                                                                        {
                                                                            "name": "tc_cmac_update",
                                                                            "size": 212,
                                                                            "identifier": "modules\\crypto\\tinycrypt\\lib\\source\\cmac_mode.c\\tc_cmac_update"
                                                                        },
                                                                        {
                                                                            "name": "tc_cmac_erase",
                                                                            "size": 16,
                                                                            "identifier": "modules\\crypto\\tinycrypt\\lib\\source\\cmac_mode.c\\tc_cmac_erase"
                                                                        },
                                                                        {
                                                                            "name": "tc_cmac_setup",
                                                                            "size": 86,
                                                                            "identifier": "modules\\crypto\\tinycrypt\\lib\\source\\cmac_mode.c\\tc_cmac_setup"
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "hal",
                                    "size": 6296,
                                    "identifier": "modules\\hal",
                                    "children": [
                                        {
                                            "name": "nordic",
                                            "size": 6296,
                                            "identifier": "modules\\hal\\nordic",
                                            "children": [
                                                {
                                                    "name": "nrfx",
                                                    "size": 6296,
                                                    "identifier": "modules\\hal\\nordic\\nrfx",
                                                    "children": [
                                                        {
                                                            "name": "hal",
                                                            "size": 366,
                                                            "identifier": "modules\\hal\\nordic\\nrfx\\hal",
                                                            "children": [
                                                                {
                                                                    "name": "nrf_gpio.h",
                                                                    "size": 366,
                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\hal\\nrf_gpio.h",
                                                                    "children": [
                                                                        {
                                                                            "name": "nrf_gpio_pin_port_decode",
                                                                            "size": 84,
                                                                            "identifier": "modules\\hal\\nordic\\nrfx\\hal\\nrf_gpio.h\\nrf_gpio_pin_port_decode"
                                                                        },
                                                                        {
                                                                            "name": "nrf_gpio_reconfigure",
                                                                            "size": 146,
                                                                            "identifier": "modules\\hal\\nordic\\nrfx\\hal\\nrf_gpio.h\\nrf_gpio_reconfigure"
                                                                        },
                                                                        {
                                                                            "name": "nrf_gpio_cfg_sense_set",
                                                                            "size": 30,
                                                                            "identifier": "modules\\hal\\nordic\\nrfx\\hal\\nrf_gpio.h\\nrf_gpio_cfg_sense_set"
                                                                        },
                                                                        {
                                                                            "name": "nrf_gpio_cfg_default",
                                                                            "size": 28,
                                                                            "identifier": "modules\\hal\\nordic\\nrfx\\hal\\nrf_gpio.h\\nrf_gpio_cfg_default"
                                                                        },
                                                                        {
                                                                            "name": "nrf_gpio_pin_set",
                                                                            "size": 52,
                                                                            "identifier": "modules\\hal\\nordic\\nrfx\\hal\\nrf_gpio.h\\nrf_gpio_pin_set"
                                                                        },
                                                                        {
                                                                            "name": "nrf_gpio_pin_clear",
                                                                            "size": 26,
                                                                            "identifier": "modules\\hal\\nordic\\nrfx\\hal\\nrf_gpio.h\\nrf_gpio_pin_clear"
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "drivers",
                                                            "size": 5454,
                                                            "identifier": "modules\\hal\\nordic\\nrfx\\drivers",
                                                            "children": [
                                                                {
                                                                    "name": "src",
                                                                    "size": 5454,
                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src",
                                                                    "children": [
                                                                        {
                                                                            "name": "nrfx_gpiote.c",
                                                                            "size": 1828,
                                                                            "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_gpiote.c",
                                                                            "children": [
                                                                                {
                                                                                    "name": "pin_in_use_by_te",
                                                                                    "size": 20,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_gpiote.c\\pin_in_use_by_te"
                                                                                },
                                                                                {
                                                                                    "name": "m_cb",
                                                                                    "size": 112,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_gpiote.c\\m_cb"
                                                                                },
                                                                                {
                                                                                    "name": "call_handler",
                                                                                    "size": 60,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_gpiote.c\\call_handler"
                                                                                },
                                                                                {
                                                                                    "name": "release_handler",
                                                                                    "size": 84,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_gpiote.c\\release_handler"
                                                                                },
                                                                                {
                                                                                    "name": "pin_handler_trigger_uninit",
                                                                                    "size": 56,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_gpiote.c\\pin_handler_trigger_uninit"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_gpiote_output_configure",
                                                                                    "size": 228,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_gpiote.c\\nrfx_gpiote_output_configure"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_gpiote_channel_get",
                                                                                    "size": 44,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_gpiote.c\\nrfx_gpiote_channel_get"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_gpiote_irq_handler",
                                                                                    "size": 444,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_gpiote.c\\nrfx_gpiote_irq_handler"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_gpiote_channel_free",
                                                                                    "size": 12,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_gpiote.c\\nrfx_gpiote_channel_free"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_gpiote_pin_uninit",
                                                                                    "size": 72,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_gpiote.c\\nrfx_gpiote_pin_uninit"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_gpiote_is_init",
                                                                                    "size": 20,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_gpiote.c\\nrfx_gpiote_is_init"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_gpiote_trigger_enable",
                                                                                    "size": 144,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_gpiote.c\\nrfx_gpiote_trigger_enable"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_gpiote_channel_alloc",
                                                                                    "size": 12,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_gpiote.c\\nrfx_gpiote_channel_alloc"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_gpiote_trigger_disable",
                                                                                    "size": 80,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_gpiote.c\\nrfx_gpiote_trigger_disable"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_gpiote_global_callback_set",
                                                                                    "size": 12,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_gpiote.c\\nrfx_gpiote_global_callback_set"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_gpiote_init",
                                                                                    "size": 80,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_gpiote.c\\nrfx_gpiote_init"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_gpiote_input_configure",
                                                                                    "size": 348,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_gpiote.c\\nrfx_gpiote_input_configure"
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "name": "nrfx_nvmc.c",
                                                                            "size": 144,
                                                                            "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_nvmc.c",
                                                                            "children": [
                                                                                {
                                                                                    "name": "nvmc_word_write",
                                                                                    "size": 24,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_nvmc.c\\nvmc_word_write"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_nvmc_flash_page_size_get",
                                                                                    "size": 8,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_nvmc.c\\nrfx_nvmc_flash_page_size_get"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_nvmc_page_erase",
                                                                                    "size": 64,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_nvmc.c\\nrfx_nvmc_page_erase"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_nvmc_word_write",
                                                                                    "size": 28,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_nvmc.c\\nrfx_nvmc_word_write"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_nvmc_flash_page_count_get",
                                                                                    "size": 8,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_nvmc.c\\nrfx_nvmc_flash_page_count_get"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_nvmc_flash_size_get",
                                                                                    "size": 12,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_nvmc.c\\nrfx_nvmc_flash_size_get"
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "name": "nrfx_pwm.c",
                                                                            "size": 756,
                                                                            "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_pwm.c",
                                                                            "children": [
                                                                                {
                                                                                    "name": "start_playback",
                                                                                    "size": 74,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_pwm.c\\start_playback"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_pwm_uninit",
                                                                                    "size": 104,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_pwm.c\\nrfx_pwm_uninit"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_pwm_stop",
                                                                                    "size": 46,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_pwm.c\\nrfx_pwm_stop"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_pwm_simple_playback",
                                                                                    "size": 140,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_pwm.c\\nrfx_pwm_simple_playback"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_pwm_is_stopped",
                                                                                    "size": 40,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_pwm.c\\nrfx_pwm_is_stopped"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_pwm_init",
                                                                                    "size": 352,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_pwm.c\\nrfx_pwm_init"
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "name": "nrfx_spi.c",
                                                                            "size": 878,
                                                                            "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_spi.c",
                                                                            "children": [
                                                                                {
                                                                                    "name": "transfer_byte",
                                                                                    "size": 102,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_spi.c\\transfer_byte"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_spi_1_irq_handler",
                                                                                    "size": 64,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_spi.c\\nrfx_spi_1_irq_handler"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_spi_init",
                                                                                    "size": 348,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_spi.c\\nrfx_spi_init"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_spi_xfer",
                                                                                    "size": 252,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_spi.c\\nrfx_spi_xfer"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_spi_uninit",
                                                                                    "size": 112,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_spi.c\\nrfx_spi_uninit"
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "name": "nrfx_twi.c",
                                                                            "size": 1648,
                                                                            "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_twi.c",
                                                                            "children": [
                                                                                {
                                                                                    "name": "twi_transfer",
                                                                                    "size": 304,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_twi.c\\twi_transfer"
                                                                                },
                                                                                {
                                                                                    "name": "twi_tx_start_transfer",
                                                                                    "size": 260,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_twi.c\\twi_tx_start_transfer"
                                                                                },
                                                                                {
                                                                                    "name": "twi_rx_start_transfer",
                                                                                    "size": 228,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_twi.c\\twi_rx_start_transfer"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_twi_0_irq_handler",
                                                                                    "size": 216,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_twi.c\\nrfx_twi_0_irq_handler"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_twi_uninit",
                                                                                    "size": 136,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_twi.c\\nrfx_twi_uninit"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_twi_init",
                                                                                    "size": 196,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_twi.c\\nrfx_twi_init"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_twi_xfer",
                                                                                    "size": 220,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_twi.c\\nrfx_twi_xfer"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_twi_disable",
                                                                                    "size": 56,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_twi.c\\nrfx_twi_disable"
                                                                                },
                                                                                {
                                                                                    "name": "nrfx_twi_enable",
                                                                                    "size": 32,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_twi.c\\nrfx_twi_enable"
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "name": "nrfx_twi_twim.c",
                                                                            "size": 200,
                                                                            "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_twi_twim.c",
                                                                            "children": [
                                                                                {
                                                                                    "name": "nrfx_twi_twim_bus_recover",
                                                                                    "size": 200,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_twi_twim.c\\nrfx_twi_twim_bus_recover"
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "mdk",
                                                            "size": 348,
                                                            "identifier": "modules\\hal\\nordic\\nrfx\\mdk",
                                                            "children": [
                                                                {
                                                                    "name": "system_nrf52.c",
                                                                    "size": 348,
                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\mdk\\system_nrf52.c",
                                                                    "children": [
                                                                        {
                                                                            "name": "SystemInit",
                                                                            "size": 332,
                                                                            "identifier": "modules\\hal\\nordic\\nrfx\\mdk\\system_nrf52.c\\SystemInit"
                                                                        },
                                                                        {
                                                                            "name": "nvmc_wait",
                                                                            "size": 16,
                                                                            "identifier": "modules\\hal\\nordic\\nrfx\\mdk\\system_nrf52.c\\nvmc_wait"
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "helpers",
                                                            "size": 128,
                                                            "identifier": "modules\\hal\\nordic\\nrfx\\helpers",
                                                            "children": [
                                                                {
                                                                    "name": "nrfx_flag32_allocator.c",
                                                                    "size": 128,
                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\helpers\\nrfx_flag32_allocator.c",
                                                                    "children": [
                                                                        {
                                                                            "name": "nrfx_flag32_alloc",
                                                                            "size": 64,
                                                                            "identifier": "modules\\hal\\nordic\\nrfx\\helpers\\nrfx_flag32_allocator.c\\nrfx_flag32_alloc"
                                                                        },
                                                                        {
                                                                            "name": "nrfx_flag32_free",
                                                                            "size": 64,
                                                                            "identifier": "modules\\hal\\nordic\\nrfx\\helpers\\nrfx_flag32_allocator.c\\nrfx_flag32_free"
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "name": "nrf",
                            "size": 4854,
                            "identifier": "nrf",
                            "children": [
                                {
                                    "name": "lib",
                                    "size": 48,
                                    "identifier": "nrf\\lib",
                                    "children": [
                                        {
                                            "name": "multithreading_lock",
                                            "size": 48,
                                            "identifier": "nrf\\lib\\multithreading_lock",
                                            "children": [
                                                {
                                                    "name": "multithreading_lock.c",
                                                    "size": 48,
                                                    "identifier": "nrf\\lib\\multithreading_lock\\multithreading_lock.c",
                                                    "children": [
                                                        {
                                                            "name": "mpsl_lock",
                                                            "size": 20,
                                                            "identifier": "nrf\\lib\\multithreading_lock\\multithreading_lock.c\\mpsl_lock"
                                                        },
                                                        {
                                                            "name": "multithreading_lock_acquire",
                                                            "size": 16,
                                                            "identifier": "nrf\\lib\\multithreading_lock\\multithreading_lock.c\\multithreading_lock_acquire"
                                                        },
                                                        {
                                                            "name": "multithreading_lock_release",
                                                            "size": 12,
                                                            "identifier": "nrf\\lib\\multithreading_lock\\multithreading_lock.c\\multithreading_lock_release"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "subsys",
                                    "size": 4170,
                                    "identifier": "nrf\\subsys",
                                    "children": [
                                        {
                                            "name": "bluetooth",
                                            "size": 3810,
                                            "identifier": "nrf\\subsys\\bluetooth",
                                            "children": [
                                                {
                                                    "name": "controller",
                                                    "size": 3810,
                                                    "identifier": "nrf\\subsys\\bluetooth\\controller",
                                                    "children": [
                                                        {
                                                            "name": "hci_driver.c",
                                                            "size": 786,
                                                            "identifier": "nrf\\subsys\\bluetooth\\controller\\hci_driver.c",
                                                            "children": [
                                                                {
                                                                    "name": "hci_driver_open",
                                                                    "size": 120,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\hci_driver.c\\hci_driver_open"
                                                                },
                                                                {
                                                                    "name": "receive_work_handler",
                                                                    "size": 4,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\hci_driver.c\\receive_work_handler"
                                                                },
                                                                {
                                                                    "name": "receive_signal_raise",
                                                                    "size": 16,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\hci_driver.c\\receive_signal_raise"
                                                                },
                                                                {
                                                                    "name": "hci_driver_init",
                                                                    "size": 216,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\hci_driver.c\\hci_driver_init"
                                                                },
                                                                {
                                                                    "name": "drv",
                                                                    "size": 24,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\hci_driver.c\\drv"
                                                                },
                                                                {
                                                                    "name": "hci_driver_close",
                                                                    "size": 36,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\hci_driver.c\\hci_driver_close"
                                                                },
                                                                {
                                                                    "name": "rand_prio_low_vector_get",
                                                                    "size": 40,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\hci_driver.c\\rand_prio_low_vector_get"
                                                                },
                                                                {
                                                                    "name": "hci_driver_send",
                                                                    "size": 108,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\hci_driver.c\\hci_driver_send"
                                                                },
                                                                {
                                                                    "name": "rand_prio_low_vector_get_blocking",
                                                                    "size": 24,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\hci_driver.c\\rand_prio_low_vector_get_blocking"
                                                                },
                                                                {
                                                                    "name": "__init_hci_driver_init",
                                                                    "size": 8,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\hci_driver.c\\__init_hci_driver_init"
                                                                },
                                                                {
                                                                    "name": "sdc_assertion_handler",
                                                                    "size": 14,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\hci_driver.c\\sdc_assertion_handler"
                                                                },
                                                                {
                                                                    "name": "hci_driver_receive_process",
                                                                    "size": 168,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\hci_driver.c\\hci_driver_receive_process"
                                                                },
                                                                {
                                                                    "name": "log_const_bt_sdc_hci_driver",
                                                                    "size": 8,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\hci_driver.c\\log_const_bt_sdc_hci_driver"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "ecdh.c",
                                                            "size": 750,
                                                            "identifier": "nrf\\subsys\\bluetooth\\controller\\ecdh.c",
                                                            "children": [
                                                                {
                                                                    "name": "ecdh_p256_common_secret",
                                                                    "size": 124,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\ecdh.c\\ecdh_p256_common_secret"
                                                                },
                                                                {
                                                                    "name": "debug_private_key_be",
                                                                    "size": 32,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\ecdh.c\\debug_private_key_be"
                                                                },
                                                                {
                                                                    "name": "ecdh_thread",
                                                                    "size": 64,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\ecdh.c\\ecdh_thread"
                                                                },
                                                                {
                                                                    "name": "log_const_bt_sdc_ecdh",
                                                                    "size": 8,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\ecdh.c\\log_const_bt_sdc_ecdh"
                                                                },
                                                                {
                                                                    "name": "hci_ecdh_uninit",
                                                                    "size": 12,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\ecdh.c\\hci_ecdh_uninit"
                                                                },
                                                                {
                                                                    "name": "hci_cmd_le_generate_dhkey_v2",
                                                                    "size": 16,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\ecdh.c\\hci_cmd_le_generate_dhkey_v2"
                                                                },
                                                                {
                                                                    "name": "cmd_le_generate_dhkey",
                                                                    "size": 92,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\ecdh.c\\cmd_le_generate_dhkey"
                                                                },
                                                                {
                                                                    "name": "hci_ecdh_init",
                                                                    "size": 84,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\ecdh.c\\hci_ecdh_init"
                                                                },
                                                                {
                                                                    "name": "hci_cmd_le_generate_dhkey",
                                                                    "size": 6,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\ecdh.c\\hci_cmd_le_generate_dhkey"
                                                                },
                                                                {
                                                                    "name": "ecdh_cmd_process",
                                                                    "size": 256,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\ecdh.c\\ecdh_cmd_process"
                                                                },
                                                                {
                                                                    "name": "hci_cmd_le_read_local_p256_public_key",
                                                                    "size": 56,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\ecdh.c\\hci_cmd_le_read_local_p256_public_key"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "crypto.c",
                                                            "size": 158,
                                                            "identifier": "nrf\\subsys\\bluetooth\\controller\\crypto.c",
                                                            "children": [
                                                                {
                                                                    "name": "log_const_bt_sdc_crypto",
                                                                    "size": 8,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\crypto.c\\log_const_bt_sdc_crypto"
                                                                },
                                                                {
                                                                    "name": "bt_encrypt_le",
                                                                    "size": 106,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\crypto.c\\bt_encrypt_le"
                                                                },
                                                                {
                                                                    "name": "bt_rand",
                                                                    "size": 44,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\crypto.c\\bt_rand"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "hci_internal.c",
                                                            "size": 2116,
                                                            "identifier": "nrf\\subsys\\bluetooth\\controller\\hci_internal.c",
                                                            "children": [
                                                                {
                                                                    "name": "hci_internal_cmd_put",
                                                                    "size": 2072,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\hci_internal.c\\hci_internal_cmd_put"
                                                                },
                                                                {
                                                                    "name": "hci_internal_msg_get",
                                                                    "size": 44,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\hci_internal.c\\hci_internal_msg_get"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        },
                                        {
                                            "name": "mpsl",
                                            "size": 360,
                                            "identifier": "nrf\\subsys\\mpsl",
                                            "children": [
                                                {
                                                    "name": "init",
                                                    "size": 342,
                                                    "identifier": "nrf\\subsys\\mpsl\\init",
                                                    "children": [
                                                        {
                                                            "name": "mpsl_init.c",
                                                            "size": 342,
                                                            "identifier": "nrf\\subsys\\mpsl\\init\\mpsl_init.c",
                                                            "children": [
                                                                {
                                                                    "name": "m_assert_handler",
                                                                    "size": 14,
                                                                    "identifier": "nrf\\subsys\\mpsl\\init\\mpsl_init.c\\m_assert_handler"
                                                                },
                                                                {
                                                                    "name": "mpsl_low_prio_work_handler",
                                                                    "size": 26,
                                                                    "identifier": "nrf\\subsys\\mpsl\\init\\mpsl_init.c\\mpsl_low_prio_work_handler"
                                                                },
                                                                {
                                                                    "name": "mpsl_low_prio_irq_handler",
                                                                    "size": 16,
                                                                    "identifier": "nrf\\subsys\\mpsl\\init\\mpsl_init.c\\mpsl_low_prio_irq_handler"
                                                                },
                                                                {
                                                                    "name": "mpsl_lib_init_sys",
                                                                    "size": 100,
                                                                    "identifier": "nrf\\subsys\\mpsl\\init\\mpsl_init.c\\mpsl_lib_init_sys"
                                                                },
                                                                {
                                                                    "name": "mpsl_low_prio_init",
                                                                    "size": 76,
                                                                    "identifier": "nrf\\subsys\\mpsl\\init\\mpsl_init.c\\mpsl_low_prio_init"
                                                                },
                                                                {
                                                                    "name": "__init_mpsl_low_prio_init",
                                                                    "size": 8,
                                                                    "identifier": "nrf\\subsys\\mpsl\\init\\mpsl_init.c\\__init_mpsl_low_prio_init"
                                                                },
                                                                {
                                                                    "name": "__init_mpsl_lib_init_sys",
                                                                    "size": 8,
                                                                    "identifier": "nrf\\subsys\\mpsl\\init\\mpsl_init.c\\__init_mpsl_lib_init_sys"
                                                                },
                                                                {
                                                                    "name": "log_const_mpsl_init",
                                                                    "size": 8,
                                                                    "identifier": "nrf\\subsys\\mpsl\\init\\mpsl_init.c\\log_const_mpsl_init"
                                                                },
                                                                {
                                                                    "name": "mpsl_radio_isr_wrapper",
                                                                    "size": 30,
                                                                    "identifier": "nrf\\subsys\\mpsl\\init\\mpsl_init.c\\mpsl_radio_isr_wrapper"
                                                                },
                                                                {
                                                                    "name": "mpsl_timer0_isr_wrapper",
                                                                    "size": 30,
                                                                    "identifier": "nrf\\subsys\\mpsl\\init\\mpsl_init.c\\mpsl_timer0_isr_wrapper"
                                                                },
                                                                {
                                                                    "name": "mpsl_rtc0_isr_wrapper",
                                                                    "size": 26,
                                                                    "identifier": "nrf\\subsys\\mpsl\\init\\mpsl_init.c\\mpsl_rtc0_isr_wrapper"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "fem",
                                                    "size": 18,
                                                    "identifier": "nrf\\subsys\\mpsl\\fem",
                                                    "children": [
                                                        {
                                                            "name": "api_init",
                                                            "size": 18,
                                                            "identifier": "nrf\\subsys\\mpsl\\fem\\api_init",
                                                            "children": [
                                                                {
                                                                    "name": "mpsl_fem_api_init.c",
                                                                    "size": 18,
                                                                    "identifier": "nrf\\subsys\\mpsl\\fem\\api_init\\mpsl_fem_api_init.c",
                                                                    "children": [
                                                                        {
                                                                            "name": "mpsl_fem_api_init",
                                                                            "size": 10,
                                                                            "identifier": "nrf\\subsys\\mpsl\\fem\\api_init\\mpsl_fem_api_init.c\\mpsl_fem_api_init"
                                                                        },
                                                                        {
                                                                            "name": "__init_mpsl_fem_api_init",
                                                                            "size": 8,
                                                                            "identifier": "nrf\\subsys\\mpsl\\fem\\api_init\\mpsl_fem_api_init.c\\__init_mpsl_fem_api_init"
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "drivers",
                                    "size": 636,
                                    "identifier": "nrf\\drivers",
                                    "children": [
                                        {
                                            "name": "mpsl",
                                            "size": 636,
                                            "identifier": "nrf\\drivers\\mpsl",
                                            "children": [
                                                {
                                                    "name": "clock_control",
                                                    "size": 76,
                                                    "identifier": "nrf\\drivers\\mpsl\\clock_control",
                                                    "children": [
                                                        {
                                                            "name": "nrfx_clock_mpsl.c",
                                                            "size": 76,
                                                            "identifier": "nrf\\drivers\\mpsl\\clock_control\\nrfx_clock_mpsl.c",
                                                            "children": [
                                                                {
                                                                    "name": "mpsl_hfclk_callback",
                                                                    "size": 12,
                                                                    "identifier": "nrf\\drivers\\mpsl\\clock_control\\nrfx_clock_mpsl.c\\mpsl_hfclk_callback"
                                                                },
                                                                {
                                                                    "name": "nrfx_clock_stop",
                                                                    "size": 10,
                                                                    "identifier": "nrf\\drivers\\mpsl\\clock_control\\nrfx_clock_mpsl.c\\nrfx_clock_stop"
                                                                },
                                                                {
                                                                    "name": "nrfx_clock_enable",
                                                                    "size": 2,
                                                                    "identifier": "nrf\\drivers\\mpsl\\clock_control\\nrfx_clock_mpsl.c\\nrfx_clock_enable"
                                                                },
                                                                {
                                                                    "name": "nrfx_clock_start",
                                                                    "size": 32,
                                                                    "identifier": "nrf\\drivers\\mpsl\\clock_control\\nrfx_clock_mpsl.c\\nrfx_clock_start"
                                                                },
                                                                {
                                                                    "name": "nrfx_power_clock_irq_handler",
                                                                    "size": 4,
                                                                    "identifier": "nrf\\drivers\\mpsl\\clock_control\\nrfx_clock_mpsl.c\\nrfx_power_clock_irq_handler"
                                                                },
                                                                {
                                                                    "name": "nrfx_clock_init",
                                                                    "size": 16,
                                                                    "identifier": "nrf\\drivers\\mpsl\\clock_control\\nrfx_clock_mpsl.c\\nrfx_clock_init"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "flash_sync",
                                                    "size": 434,
                                                    "identifier": "nrf\\drivers\\mpsl\\flash_sync",
                                                    "children": [
                                                        {
                                                            "name": "flash_sync_mpsl.c",
                                                            "size": 434,
                                                            "identifier": "nrf\\drivers\\mpsl\\flash_sync\\flash_sync_mpsl.c",
                                                            "children": [
                                                                {
                                                                    "name": "timeslot_callback",
                                                                    "size": 132,
                                                                    "identifier": "nrf\\drivers\\mpsl\\flash_sync\\flash_sync_mpsl.c\\timeslot_callback"
                                                                },
                                                                {
                                                                    "name": "log_const_flash_sync_mpsl",
                                                                    "size": 8,
                                                                    "identifier": "nrf\\drivers\\mpsl\\flash_sync\\flash_sync_mpsl.c\\log_const_flash_sync_mpsl"
                                                                },
                                                                {
                                                                    "name": "nrf_flash_sync_check_time_limit",
                                                                    "size": 40,
                                                                    "identifier": "nrf\\drivers\\mpsl\\flash_sync\\flash_sync_mpsl.c\\nrf_flash_sync_check_time_limit"
                                                                },
                                                                {
                                                                    "name": "nrf_flash_sync_get_timestamp_begin",
                                                                    "size": 2,
                                                                    "identifier": "nrf\\drivers\\mpsl\\flash_sync\\flash_sync_mpsl.c\\nrf_flash_sync_get_timestamp_begin"
                                                                },
                                                                {
                                                                    "name": "nrf_flash_sync_set_context",
                                                                    "size": 12,
                                                                    "identifier": "nrf\\drivers\\mpsl\\flash_sync\\flash_sync_mpsl.c\\nrf_flash_sync_set_context"
                                                                },
                                                                {
                                                                    "name": "nrf_flash_sync_is_required",
                                                                    "size": 4,
                                                                    "identifier": "nrf\\drivers\\mpsl\\flash_sync\\flash_sync_mpsl.c\\nrf_flash_sync_is_required"
                                                                },
                                                                {
                                                                    "name": "nrf_flash_sync_exe",
                                                                    "size": 220,
                                                                    "identifier": "nrf\\drivers\\mpsl\\flash_sync\\flash_sync_mpsl.c\\nrf_flash_sync_exe"
                                                                },
                                                                {
                                                                    "name": "nrf_flash_sync_init",
                                                                    "size": 16,
                                                                    "identifier": "nrf\\drivers\\mpsl\\flash_sync\\flash_sync_mpsl.c\\nrf_flash_sync_init"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "temp_nrf5",
                                                    "size": 126,
                                                    "identifier": "nrf\\drivers\\mpsl\\temp_nrf5",
                                                    "children": [
                                                        {
                                                            "name": "temp_nrf5_mpsl.c",
                                                            "size": 126,
                                                            "identifier": "nrf\\drivers\\mpsl\\temp_nrf5\\temp_nrf5_mpsl.c",
                                                            "children": [
                                                                {
                                                                    "name": "temp_nrf5_mpsl_channel_get",
                                                                    "size": 56,
                                                                    "identifier": "nrf\\drivers\\mpsl\\temp_nrf5\\temp_nrf5_mpsl.c\\temp_nrf5_mpsl_channel_get"
                                                                },
                                                                {
                                                                    "name": "temp_nrf5_mpsl_init",
                                                                    "size": 4,
                                                                    "identifier": "nrf\\drivers\\mpsl\\temp_nrf5\\temp_nrf5_mpsl.c\\temp_nrf5_mpsl_init"
                                                                },
                                                                {
                                                                    "name": "temp_nrf5_mpsl_sample_fetch",
                                                                    "size": 28,
                                                                    "identifier": "nrf\\drivers\\mpsl\\temp_nrf5\\temp_nrf5_mpsl.c\\temp_nrf5_mpsl_sample_fetch"
                                                                },
                                                                {
                                                                    "name": "__init___device_dts_ord_80",
                                                                    "size": 8,
                                                                    "identifier": "nrf\\drivers\\mpsl\\temp_nrf5\\temp_nrf5_mpsl.c\\__init___device_dts_ord_80"
                                                                },
                                                                {
                                                                    "name": "temp_nrf5_mpsl_driver_api",
                                                                    "size": 20,
                                                                    "identifier": "nrf\\drivers\\mpsl\\temp_nrf5\\temp_nrf5_mpsl.c\\temp_nrf5_mpsl_driver_api"
                                                                },
                                                                {
                                                                    "name": "__devstate_dts_ord_80",
                                                                    "size": 2,
                                                                    "identifier": "nrf\\drivers\\mpsl\\temp_nrf5\\temp_nrf5_mpsl.c\\__devstate_dts_ord_80"
                                                                },
                                                                {
                                                                    "name": "log_const_temp_nrf5_mpsl",
                                                                    "size": 8,
                                                                    "identifier": "nrf\\drivers\\mpsl\\temp_nrf5\\temp_nrf5_mpsl.c\\log_const_temp_nrf5_mpsl"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "name": "toolchains",
                            "size": 40,
                            "identifier": "toolchains",
                            "children": [
                                {
                                    "name": "31f4403e35",
                                    "size": 40,
                                    "identifier": "toolchains\\31f4403e35",
                                    "children": [
                                        {
                                            "name": "opt",
                                            "size": 40,
                                            "identifier": "toolchains\\31f4403e35\\opt",
                                            "children": [
                                                {
                                                    "name": "zephyr-sdk",
                                                    "size": 40,
                                                    "identifier": "toolchains\\31f4403e35\\opt\\zephyr-sdk",
                                                    "children": [
                                                        {
                                                            "name": "arm-zephyr-eabi",
                                                            "size": 40,
                                                            "identifier": "toolchains\\31f4403e35\\opt\\zephyr-sdk\\arm-zephyr-eabi",
                                                            "children": [
                                                                {
                                                                    "name": "arm-zephyr-eabi",
                                                                    "size": 40,
                                                                    "identifier": "toolchains\\31f4403e35\\opt\\zephyr-sdk\\arm-zephyr-eabi\\arm-zephyr-eabi",
                                                                    "children": [
                                                                        {
                                                                            "name": "sys-include",
                                                                            "size": 40,
                                                                            "identifier": "toolchains\\31f4403e35\\opt\\zephyr-sdk\\arm-zephyr-eabi\\arm-zephyr-eabi\\sys-include",
                                                                            "children": [
                                                                                {
                                                                                    "name": "sys",
                                                                                    "size": 40,
                                                                                    "identifier": "toolchains\\31f4403e35\\opt\\zephyr-sdk\\arm-zephyr-eabi\\arm-zephyr-eabi\\sys-include\\sys",
                                                                                    "children": [
                                                                                        {
                                                                                            "name": "errno.h",
                                                                                            "size": 4,
                                                                                            "identifier": "toolchains\\31f4403e35\\opt\\zephyr-sdk\\arm-zephyr-eabi\\arm-zephyr-eabi\\sys-include\\sys\\errno.h",
                                                                                            "children": [
                                                                                                {
                                                                                                    "name": "__errno",
                                                                                                    "size": 4,
                                                                                                    "identifier": "toolchains\\31f4403e35\\opt\\zephyr-sdk\\arm-zephyr-eabi\\arm-zephyr-eabi\\sys-include\\sys\\errno.h\\__errno"
                                                                                                }
                                                                                            ]
                                                                                        },
                                                                                        {
                                                                                            "name": "lock.h",
                                                                                            "size": 36,
                                                                                            "identifier": "toolchains\\31f4403e35\\opt\\zephyr-sdk\\arm-zephyr-eabi\\arm-zephyr-eabi\\sys-include\\sys\\lock.h",
                                                                                            "children": [
                                                                                                {
                                                                                                    "name": "__retarget_lock_release_recursive",
                                                                                                    "size": 4,
                                                                                                    "identifier": "toolchains\\31f4403e35\\opt\\zephyr-sdk\\arm-zephyr-eabi\\arm-zephyr-eabi\\sys-include\\sys\\lock.h\\__retarget_lock_release_recursive"
                                                                                                },
                                                                                                {
                                                                                                    "name": "__retarget_lock_init_recursive",
                                                                                                    "size": 20,
                                                                                                    "identifier": "toolchains\\31f4403e35\\opt\\zephyr-sdk\\arm-zephyr-eabi\\arm-zephyr-eabi\\sys-include\\sys\\lock.h\\__retarget_lock_init_recursive"
                                                                                                },
                                                                                                {
                                                                                                    "name": "__retarget_lock_acquire_recursive",
                                                                                                    "size": 12,
                                                                                                    "identifier": "toolchains\\31f4403e35\\opt\\zephyr-sdk\\arm-zephyr-eabi\\arm-zephyr-eabi\\sys-include\\sys\\lock.h\\__retarget_lock_acquire_recursive"
                                                                                                }
                                                                                            ]
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "(hidden)",
                    "size": 30035,
                    "identifier": "(hidden)"
                }
            ]
        },
        "total_size": 198745
    }

    And RAM:

    {
        "symbols": {
            "name": "Root",
            "size": 46452,
            "identifier": "root",
            "children": [
                {
                    "name": "(no paths)",
                    "size": 19018,
                    "identifier": ":",
                    "children": [
                        {
                            "name": "events.0",
                            "size": 60,
                            "identifier": ":\\events.0"
                        },
                        {
                            "name": "_ZL20__devstate_dts_ord_9",
                            "size": 2,
                            "identifier": ":\\_ZL20__devstate_dts_ord_9"
                        },
                        {
                            "name": "_ZL15adxrs649_data_0",
                            "size": 40,
                            "identifier": ":\\_ZL15adxrs649_data_0"
                        },
                        {
                            "name": "._anon_189",
                            "size": 32,
                            "identifier": ":\\._anon_189"
                        },
                        {
                            "name": "._anon_188",
                            "size": 16,
                            "identifier": ":\\._anon_188"
                        },
                        {
                            "name": "._anon_187",
                            "size": 16,
                            "identifier": ":\\._anon_187"
                        },
                        {
                            "name": "_ZN4carl3bleL7user_cbE",
                            "size": 4,
                            "identifier": ":\\_ZN4carl3bleL7user_cbE"
                        },
                        {
                            "name": "_ZN4carl3bleL16notify_user_dataE",
                            "size": 4,
                            "identifier": ":\\_ZN4carl3bleL16notify_user_dataE"
                        },
                        {
                            "name": "_ZN4carl3bleL11read_packetE",
                            "size": 28,
                            "identifier": ":\\_ZN4carl3bleL11read_packetE"
                        },
                        {
                            "name": "._anon_195",
                            "size": 36,
                            "identifier": ":\\._anon_195"
                        },
                        {
                            "name": "._anon_194",
                            "size": 4,
                            "identifier": ":\\._anon_194"
                        },
                        {
                            "name": "._anon_193",
                            "size": 16,
                            "identifier": ":\\._anon_193"
                        },
                        {
                            "name": "._anon_192",
                            "size": 8,
                            "identifier": ":\\._anon_192"
                        },
                        {
                            "name": "._anon_191",
                            "size": 72,
                            "identifier": ":\\._anon_191"
                        },
                        {
                            "name": "._anon_190",
                            "size": 8,
                            "identifier": ":\\._anon_190"
                        },
                        {
                            "name": "_ZN4carl3appL12sampling_bufE",
                            "size": 28,
                            "identifier": ":\\_ZN4carl3appL12sampling_bufE"
                        },
                        {
                            "name": "_ZN4carl3appL10detect_avgE",
                            "size": 4,
                            "identifier": ":\\_ZN4carl3appL10detect_avgE"
                        },
                        {
                            "name": "_ZN4carl3appL8avg_gyroE",
                            "size": 8,
                            "identifier": ":\\_ZN4carl3appL8avg_gyroE"
                        },
                        {
                            "name": "_ZN4carl3appL13detect_bufferE",
                            "size": 76,
                            "identifier": ":\\_ZN4carl3appL13detect_bufferE"
                        },
                        {
                            "name": "_ZN4carl3appL14moving_avg_cntE",
                            "size": 4,
                            "identifier": ":\\_ZN4carl3appL14moving_avg_cntE"
                        },
                        {
                            "name": "_ZN4carl3appL15moving_avg_fullE",
                            "size": 1,
                            "identifier": ":\\_ZN4carl3appL15moving_avg_fullE"
                        },
                        {
                            "name": "_ZN4carl3appL10moving_avgE",
                            "size": 80,
                            "identifier": ":\\_ZN4carl3appL10moving_avgE"
                        },
                        {
                            "name": "_ZN4carl3appL11sampling_smE",
                            "size": 304,
                            "identifier": ":\\_ZN4carl3appL11sampling_smE"
                        },
                        {
                            "name": "_ZN4carl3appL9bliss_appE",
                            "size": 608,
                            "identifier": ":\\_ZN4carl3appL9bliss_appE"
                        },
                        {
                            "name": "_ZN4carl3appL9subscrStoE",
                            "size": 54,
                            "identifier": ":\\_ZN4carl3appL9subscrStoE"
                        },
                        {
                            "name": "_ZN4carl3appL21sampling_sensors_failE",
                            "size": 1,
                            "identifier": ":\\_ZN4carl3appL21sampling_sensors_failE"
                        },
                        {
                            "name": "_ZN4carl3appL11roller_dataE",
                            "size": 44,
                            "identifier": ":\\_ZN4carl3appL11roller_dataE"
                        },
                        {
                            "name": "_ZN4carl3appL10shock_dataE",
                            "size": 48,
                            "identifier": ":\\_ZN4carl3appL10shock_dataE"
                        },
                        {
                            "name": "_ZN4carl3appL14sampling_stackE",
                            "size": 1088,
                            "identifier": ":\\_ZN4carl3appL14sampling_stackE"
                        },
                        {
                            "name": "_ZN4carl3appL18sampling_evt_queueE",
                            "size": 40,
                            "identifier": ":\\_ZN4carl3appL18sampling_evt_queueE"
                        },
                        {
                            "name": "_ZN4carl8led_taskL4busyE",
                            "size": 1,
                            "identifier": ":\\_ZN4carl8led_taskL4busyE"
                        },
                        {
                            "name": "_ZN4carl8led_taskL12control_sizeE",
                            "size": 1,
                            "identifier": ":\\_ZN4carl8led_taskL12control_sizeE"
                        },
                        {
                            "name": "_ZN4carl8led_taskL12control_dataE",
                            "size": 4,
                            "identifier": ":\\_ZN4carl8led_taskL12control_dataE"
                        },
                        {
                            "name": "_ZN4carl8led_taskL13control_timerE",
                            "size": 56,
                            "identifier": ":\\_ZN4carl8led_taskL13control_timerE"
                        },
                        {
                            "name": "_ZN4carl8led_taskL7user_cbE",
                            "size": 4,
                            "identifier": ":\\_ZN4carl8led_taskL7user_cbE"
                        },
                        {
                            "name": "_ZN4carl8led_taskL11thread_dataE",
                            "size": 160,
                            "identifier": ":\\_ZN4carl8led_taskL11thread_dataE"
                        },
                        {
                            "name": "_ZN4carl3hal7rgb_ledL8pwm_ledsE",
                            "size": 60,
                            "identifier": ":\\_ZN4carl3hal7rgb_ledL8pwm_ledsE"
                        },
                        {
                            "name": "_ZN4carl3hal10power_mgmtL8notifierE",
                            "size": 12,
                            "identifier": ":\\_ZN4carl3hal10power_mgmtL8notifierE"
                        },
                        {
                            "name": "_ZN4carl3hal6eepromL10eeprom_imgE",
                            "size": 32,
                            "identifier": ":\\_ZN4carl3hal6eepromL10eeprom_imgE"
                        },
                        {
                            "name": "_ZN4carl3hal6eepromL10img_bufferE",
                            "size": 32,
                            "identifier": ":\\_ZN4carl3hal6eepromL10img_bufferE"
                        },
                        {
                            "name": "_ZN4carl3hal6eepromL7init_okE",
                            "size": 1,
                            "identifier": ":\\_ZN4carl3hal6eepromL7init_okE"
                        },
                        {
                            "name": "_ZN4carl3hal12batteryGaugeL18batteryAlertStatusE",
                            "size": 3,
                            "identifier": ":\\_ZN4carl3hal12batteryGaugeL18batteryAlertStatusE"
                        },
                        {
                            "name": "_ZN4carl3hal12batteryGaugeL9bmsActiveE",
                            "size": 1,
                            "identifier": ":\\_ZN4carl3hal12batteryGaugeL9bmsActiveE"
                        },
                        {
                            "name": "_ZN4carl3hal12batteryGaugeL21lastBatteryPercentageE",
                            "size": 1,
                            "identifier": ":\\_ZN4carl3hal12batteryGaugeL21lastBatteryPercentageE"
                        },
                        {
                            "name": "_ZN4carl3hal12batteryGaugeL16controlBat_timerE",
                            "size": 56,
                            "identifier": ":\\_ZN4carl3hal12batteryGaugeL16controlBat_timerE"
                        },
                        {
                            "name": "_ZN4carl3hal12batteryGaugeL11thread_dataE",
                            "size": 160,
                            "identifier": ":\\_ZN4carl3hal12batteryGaugeL11thread_dataE"
                        },
                        {
                            "name": "__compound_literal.0",
                            "size": 48,
                            "identifier": ":\\__compound_literal.0"
                        },
                        {
                            "name": "__compound_literal.1",
                            "size": 12,
                            "identifier": ":\\__compound_literal.1"
                        },
                        {
                            "name": "__compound_literal.2",
                            "size": 12,
                            "identifier": ":\\__compound_literal.2"
                        },
                        {
                            "name": "__compound_literal.4",
                            "size": 24,
                            "identifier": ":\\__compound_literal.4"
                        },
                        {
                            "name": "__compound_literal.5",
                            "size": 12,
                            "identifier": ":\\__compound_literal.5"
                        },
                        {
                            "name": "__compound_literal.6",
                            "size": 12,
                            "identifier": ":\\__compound_literal.6"
                        },
                        {
                            "name": "__compound_literal.8",
                            "size": 16,
                            "identifier": ":\\__compound_literal.8"
                        },
                        {
                            "name": "__compound_literal.9",
                            "size": 8,
                            "identifier": ":\\__compound_literal.9"
                        },
                        {
                            "name": "__compound_literal.10",
                            "size": 8,
                            "identifier": ":\\__compound_literal.10"
                        },
                        {
                            "name": "__compound_literal.12",
                            "size": 12,
                            "identifier": ":\\__compound_literal.12"
                        },
                        {
                            "name": "__compound_literal.13",
                            "size": 8,
                            "identifier": ":\\__compound_literal.13"
                        },
                        {
                            "name": "__compound_literal.14",
                            "size": 12,
                            "identifier": ":\\__compound_literal.14"
                        },
                        {
                            "name": "__compound_literal.16",
                            "size": 12,
                            "identifier": ":\\__compound_literal.16"
                        },
                        {
                            "name": "__compound_literal.17",
                            "size": 4,
                            "identifier": ":\\__compound_literal.17"
                        },
                        {
                            "name": "__compound_literal.18",
                            "size": 4,
                            "identifier": ":\\__compound_literal.18"
                        },
                        {
                            "name": "__compound_literal.20",
                            "size": 8,
                            "identifier": ":\\__compound_literal.20"
                        },
                        {
                            "name": "__compound_literal.21",
                            "size": 4,
                            "identifier": ":\\__compound_literal.21"
                        },
                        {
                            "name": "__compound_literal.22",
                            "size": 4,
                            "identifier": ":\\__compound_literal.22"
                        },
                        {
                            "name": "__compound_literal.24",
                            "size": 8,
                            "identifier": ":\\__compound_literal.24"
                        },
                        {
                            "name": "__compound_literal.25",
                            "size": 4,
                            "identifier": ":\\__compound_literal.25"
                        },
                        {
                            "name": "__compound_literal.23",
                            "size": 4,
                            "identifier": ":\\__compound_literal.23"
                        },
                        {
                            "name": "__compound_literal.19",
                            "size": 4,
                            "identifier": ":\\__compound_literal.19"
                        },
                        {
                            "name": "__compound_literal.15",
                            "size": 8,
                            "identifier": ":\\__compound_literal.15"
                        },
                        {
                            "name": "__compound_literal.11",
                            "size": 8,
                            "identifier": ":\\__compound_literal.11"
                        },
                        {
                            "name": "__compound_literal.7",
                            "size": 44,
                            "identifier": ":\\__compound_literal.7"
                        },
                        {
                            "name": "__compound_literal.3",
                            "size": 12,
                            "identifier": ":\\__compound_literal.3"
                        },
                        {
                            "name": "dynamic_regions.0",
                            "size": 12,
                            "identifier": ":\\dynamic_regions.0"
                        },
                        {
                            "name": "ident.1",
                            "size": 1,
                            "identifier": ":\\ident.1"
                        },
                        {
                            "name": "ops.0",
                            "size": 40,
                            "identifier": ":\\ops.0"
                        },
                        {
                            "name": "pub_key_cb.0",
                            "size": 8,
                            "identifier": ":\\pub_key_cb.0"
                        },
                        {
                            "name": "on.2",
                            "size": 4,
                            "identifier": ":\\on.2"
                        },
                        {
                            "name": "cli.1",
                            "size": 16,
                            "identifier": ":\\cli.1"
                        },
                        {
                            "name": "hci_buf.0",
                            "size": 604,
                            "identifier": ":\\hci_buf.0"
                        },
                        {
                            "name": "_ZN5blissL11bliss_stackE",
                            "size": 1088,
                            "identifier": ":\\_ZN5blissL11bliss_stackE"
                        },
                        {
                            "name": "_ZN5blissL9sm_eventsE",
                            "size": 40,
                            "identifier": ":\\_ZN5blissL9sm_eventsE"
                        },
                        {
                            "name": "_ZZN5bliss12StateMachine8active_hEPKN2QP4QEvtEE11reboot_info",
                            "size": 96,
                            "identifier": ":\\_ZZN5bliss12StateMachine8active_hEPKN2QP4QEvtEE11reboot_info"
                        },
                        {
                            "name": "_ZN5bliss3bleL15connection_infoE",
                            "size": 32,
                            "identifier": ":\\_ZN5bliss3bleL15connection_infoE"
                        },
                        {
                            "name": "_ZN5bliss3bleL16conn_interval_msE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss3bleL16conn_interval_msE"
                        },
                        {
                            "name": "_ZN5bliss3bleL7user_cbE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss3bleL7user_cbE"
                        },
                        {
                            "name": "_ZN5bliss3bleL9user_dataE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss3bleL9user_dataE"
                        },
                        {
                            "name": "_ZN5bliss3bleL12default_connE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss3bleL12default_connE"
                        },
                        {
                            "name": "_ZZN5bliss3bleL9onConnectEP7bt_connhE15exchange_params",
                            "size": 4,
                            "identifier": ":\\_ZZN5bliss3bleL9onConnectEP7bt_connhE15exchange_params"
                        },
                        {
                            "name": "_ZN5bliss3bleL13battery_levelE",
                            "size": 1,
                            "identifier": ":\\_ZN5bliss3bleL13battery_levelE"
                        },
                        {
                            "name": "_ZN5bliss3bleL15adv_name_bufferE",
                            "size": 25,
                            "identifier": ":\\_ZN5bliss3bleL15adv_name_bufferE"
                        },
                        {
                            "name": "._anon_239",
                            "size": 20,
                            "identifier": ":\\._anon_239"
                        },
                        {
                            "name": "._anon_237",
                            "size": 5,
                            "identifier": ":\\._anon_237"
                        },
                        {
                            "name": "._anon_235",
                            "size": 20,
                            "identifier": ":\\._anon_235"
                        },
                        {
                            "name": "._anon_233",
                            "size": 5,
                            "identifier": ":\\._anon_233"
                        },
                        {
                            "name": "_ZN5bliss6eventsL14p_statemachineE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss6eventsL14p_statemachineE"
                        },
                        {
                            "name": "_ZN5bliss6eventsL11queue_mutexE",
                            "size": 20,
                            "identifier": ":\\_ZN5bliss6eventsL11queue_mutexE"
                        },
                        {
                            "name": "_ZN5bliss5clockL7rtc_devE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss5clockL7rtc_devE"
                        },
                        {
                            "name": "_ZN5bliss5clockL9sync_workE",
                            "size": 16,
                            "identifier": ":\\_ZN5bliss5clockL9sync_workE"
                        },
                        {
                            "name": "_ZN5bliss5clockL10sync_mutexE",
                            "size": 20,
                            "identifier": ":\\_ZN5bliss5clockL10sync_mutexE"
                        },
                        {
                            "name": "_ZN5bliss5clockL15os_time_sync_msE",
                            "size": 8,
                            "identifier": ":\\_ZN5bliss5clockL15os_time_sync_msE"
                        },
                        {
                            "name": "_ZN5bliss5clockL9sync_timeE",
                            "size": 8,
                            "identifier": ":\\_ZN5bliss5clockL9sync_timeE"
                        },
                        {
                            "name": "_ZN5bliss5clockL10first_syncE",
                            "size": 1,
                            "identifier": ":\\_ZN5bliss5clockL10first_syncE"
                        },
                        {
                            "name": "_ZN5bliss5clockL10sync_timerE",
                            "size": 56,
                            "identifier": ":\\_ZN5bliss5clockL10sync_timerE"
                        },
                        {
                            "name": "_ZN5bliss5clockL9sync_initE",
                            "size": 1,
                            "identifier": ":\\_ZN5bliss5clockL9sync_initE"
                        },
                        {
                            "name": "_ZN5bliss7serviceL19user_eventnotify_cbE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss7serviceL19user_eventnotify_cbE"
                        },
                        {
                            "name": "_ZN5bliss7serviceL21user_eventnotify_dataE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss7serviceL21user_eventnotify_dataE"
                        },
                        {
                            "name": "_ZN5bliss7serviceL25user_notify_rebootinfo_cbE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss7serviceL25user_notify_rebootinfo_cbE"
                        },
                        {
                            "name": "_ZN5bliss7serviceL27user_notify_rebootinfo_dataE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss7serviceL27user_notify_rebootinfo_dataE"
                        },
                        {
                            "name": "_ZN5bliss7serviceL7sync_tsE",
                            "size": 8,
                            "identifier": ":\\_ZN5bliss7serviceL7sync_tsE"
                        },
                        {
                            "name": "_ZN5bliss7serviceL16user_readtime_cbE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss7serviceL16user_readtime_cbE"
                        },
                        {
                            "name": "_ZN5bliss7serviceL18user_readtime_dataE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss7serviceL18user_readtime_dataE"
                        },
                        {
                            "name": "_ZN5bliss7serviceL11uptime_secsE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss7serviceL11uptime_secsE"
                        },
                        {
                            "name": "._anon_250",
                            "size": 36,
                            "identifier": ":\\._anon_250"
                        },
                        {
                            "name": "._anon_249",
                            "size": 4,
                            "identifier": ":\\._anon_249"
                        },
                        {
                            "name": "._anon_248",
                            "size": 8,
                            "identifier": ":\\._anon_248"
                        },
                        {
                            "name": "._anon_247",
                            "size": 4,
                            "identifier": ":\\._anon_247"
                        },
                        {
                            "name": "._anon_246",
                            "size": 8,
                            "identifier": ":\\._anon_246"
                        },
                        {
                            "name": "._anon_245",
                            "size": 4,
                            "identifier": ":\\._anon_245"
                        },
                        {
                            "name": "._anon_244",
                            "size": 8,
                            "identifier": ":\\._anon_244"
                        },
                        {
                            "name": "._anon_243",
                            "size": 4,
                            "identifier": ":\\._anon_243"
                        },
                        {
                            "name": "._anon_242",
                            "size": 36,
                            "identifier": ":\\._anon_242"
                        },
                        {
                            "name": "._anon_241",
                            "size": 4,
                            "identifier": ":\\._anon_241"
                        },
                        {
                            "name": "._anon_240",
                            "size": 8,
                            "identifier": ":\\._anon_240"
                        },
                        {
                            "name": "._anon_238",
                            "size": 36,
                            "identifier": ":\\._anon_238"
                        },
                        {
                            "name": "._anon_236",
                            "size": 8,
                            "identifier": ":\\._anon_236"
                        },
                        {
                            "name": "._anon_234",
                            "size": 8,
                            "identifier": ":\\._anon_234"
                        },
                        {
                            "name": "._anon_232",
                            "size": 4,
                            "identifier": ":\\._anon_232"
                        },
                        {
                            "name": "_ZN5bliss10diagnosticL11last_rebootE",
                            "size": 96,
                            "identifier": ":\\_ZN5bliss10diagnosticL11last_rebootE"
                        },
                        {
                            "name": "_ZN5bliss10diagnosticL14reboot_reportsE",
                            "size": 400,
                            "identifier": ":\\_ZN5bliss10diagnosticL14reboot_reportsE"
                        },
                        {
                            "name": "_ZN5bliss10diagnosticL11reset_valueE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss10diagnosticL11reset_valueE"
                        },
                        {
                            "name": "_ZN5bliss10diagnosticL10reboot_cntE",
                            "size": 4,
                            "identifier": ":\\_ZN5bliss10diagnosticL10reboot_cntE"
                        },
                        {
                            "name": "_ZN11phyphox_ble10experiment5eventL7user_cbE",
                            "size": 4,
                            "identifier": ":\\_ZN11phyphox_ble10experiment5eventL7user_cbE"
                        },
                        {
                            "name": "_ZN11phyphox_ble10experiment5eventL9user_argsE",
                            "size": 4,
                            "identifier": ":\\_ZN11phyphox_ble10experiment5eventL9user_argsE"
                        },
                        {
                            "name": "_ZN11phyphox_bleL11header_sentE",
                            "size": 1,
                            "identifier": ":\\_ZN11phyphox_bleL11header_sentE"
                        },
                        {
                            "name": "_ZN11phyphox_bleL18exp_xml_data_countE",
                            "size": 2,
                            "identifier": ":\\_ZN11phyphox_bleL18exp_xml_data_countE"
                        },
                        {
                            "name": "_ZN11phyphox_bleL16exp_xml_next_idxE",
                            "size": 2,
                            "identifier": ":\\_ZN11phyphox_bleL16exp_xml_next_idxE"
                        },
                        {
                            "name": "_ZN11phyphox_ble10experiment4loadL7user_cbE",
                            "size": 4,
                            "identifier": ":\\_ZN11phyphox_ble10experiment4loadL7user_cbE"
                        },
                        {
                            "name": "_ZN11phyphox_ble10experiment4loadL9user_argsE",
                            "size": 4,
                            "identifier": ":\\_ZN11phyphox_ble10experiment4loadL9user_argsE"
                        },
                        {
                            "name": "_ZL20__devstate_dts_ord_8",
                            "size": 2,
                            "identifier": ":\\_ZL20__devstate_dts_ord_8"
                        },
                        {
                            "name": "_ZL18adc_ads1219_data_0",
                            "size": 42,
                            "identifier": ":\\_ZL18adc_ads1219_data_0"
                        },
                        {
                            "name": "_ZN6rv3028L7rtc_apiE",
                            "size": 28,
                            "identifier": ":\\_ZN6rv3028L7rtc_apiE"
                        },
                        {
                            "name": "_ZL22__devstate_dts_ord_100",
                            "size": 2,
                            "identifier": ":\\_ZL22__devstate_dts_ord_100"
                        },
                        {
                            "name": "_ZL17rtc_rv3028_data_0",
                            "size": 64,
                            "identifier": ":\\_ZL17rtc_rv3028_data_0"
                        },
                        {
                            "name": "wait_q.0",
                            "size": 8,
                            "identifier": ":\\wait_q.0"
                        },
                        {
                            "name": "impure_data",
                            "size": 96,
                            "identifier": ":\\impure_data"
                        },
                        {
                            "name": "_ZN2QP2QF6ePool_E",
                            "size": 60,
                            "identifier": ":\\_ZN2QP2QF6ePool_E"
                        },
                        {
                            "name": "errno",
                            "size": 4,
                            "identifier": ":\\errno"
                        },
                        {
                            "name": "_ZN4carl3hal12batteryGauge9bat_stackE",
                            "size": 1088,
                            "identifier": ":\\_ZN4carl3hal12batteryGauge9bat_stackE"
                        },
                        {
                            "name": "sym_SXHUVOM4EI7L4NGF2KWSQ6ZLB3KNNMW76PXITUA",
                            "size": 394,
                            "identifier": ":\\sym_SXHUVOM4EI7L4NGF2KWSQ6ZLB3KNNMW76PXITUA"
                        },
                        {
                            "name": "z_interrupt_stacks",
                            "size": 2112,
                            "identifier": ":\\z_interrupt_stacks"
                        },
                        {
                            "name": "bt_dev",
                            "size": 400,
                            "identifier": ":\\bt_dev"
                        },
                        {
                            "name": "_ZN2QP2QF8spinlockE",
                            "size": 1,
                            "identifier": ":\\_ZN2QP2QF8spinlockE"
                        },
                        {
                            "name": "sym_VQ35Q3R547AGSAUE3MG4FJPAHAQLVUOXVCL6PHY",
                            "size": 3,
                            "identifier": ":\\sym_VQ35Q3R547AGSAUE3MG4FJPAHAQLVUOXVCL6PHY"
                        },
                        {
                            "name": "_ZN4carl3app7sensors5Tilt1E",
                            "size": 40,
                            "identifier": ":\\_ZN4carl3app7sensors5Tilt1E"
                        },
                        {
                            "name": "_impure_ptr",
                            "size": 4,
                            "identifier": ":\\_impure_ptr"
                        },
                        {
                            "name": "__malloc_sbrk_start",
                            "size": 4,
                            "identifier": ":\\__malloc_sbrk_start"
                        },
                        {
                            "name": "_ZN4carl3hal12batteryGauge14batteryGaugeBQE",
                            "size": 20,
                            "identifier": ":\\_ZN4carl3hal12batteryGauge14batteryGaugeBQE"
                        },
                        {
                            "name": "_ZN4carl8led_task11control_semE",
                            "size": 24,
                            "identifier": ":\\_ZN4carl8led_task11control_semE"
                        },
                        {
                            "name": "_ZN2QP7QActive9registry_E",
                            "size": 60,
                            "identifier": ":\\_ZN2QP7QActive9registry_E"
                        },
                        {
                            "name": "_ZN5bliss6events6eventsE",
                            "size": 360,
                            "identifier": ":\\_ZN5bliss6events6eventsE"
                        },
                        {
                            "name": "_ZN4carl8led_task9led_stackE",
                            "size": 1088,
                            "identifier": ":\\_ZN4carl8led_task9led_stackE"
                        },
                        {
                            "name": "_sw_isr_table",
                            "size": 384,
                            "identifier": ":\\_sw_isr_table"
                        },
                        {
                            "name": "_ZN4carl3hal12batteryGauge9i2cdeviceE",
                            "size": 4,
                            "identifier": ":\\_ZN4carl3hal12batteryGauge9i2cdeviceE"
                        },
                        {
                            "name": "bt_auth",
                            "size": 4,
                            "identifier": ":\\bt_auth"
                        },
                        {
                            "name": "z_main_thread",
                            "size": 160,
                            "identifier": ":\\z_main_thread"
                        },
                        {
                            "name": "_ZN11phyphox_ble7autogen8exp_dataE",
                            "size": 5092,
                            "identifier": ":\\_ZN11phyphox_ble7autogen8exp_dataE"
                        },
                        {
                            "name": "_ZN4carl3app7sensors11gyro_sensorE",
                            "size": 4,
                            "identifier": ":\\_ZN4carl3app7sensors11gyro_sensorE"
                        },
                        {
                            "name": "_ZN4carl3app7sensors12accel_sensorE",
                            "size": 24,
                            "identifier": ":\\_ZN4carl3app7sensors12accel_sensorE"
                        },
                        {
                            "name": "_ZN4carl3app12idle_displayE",
                            "size": 14,
                            "identifier": ":\\_ZN4carl3app12idle_displayE"
                        },
                        {
                            "name": "_ZN2QP8QTimeEvt12timeEvtHead_E",
                            "size": 40,
                            "identifier": ":\\_ZN2QP8QTimeEvt12timeEvtHead_E"
                        },
                        {
                            "name": "_kernel",
                            "size": 36,
                            "identifier": ":\\_kernel"
                        },
                        {
                            "name": "_ZN4carl3hal12batteryGauge12timerBat_semE",
                            "size": 24,
                            "identifier": ":\\_ZN4carl3hal12batteryGauge12timerBat_semE"
                        },
                        {
                            "name": "sched_spinlock",
                            "size": 1,
                            "identifier": ":\\sched_spinlock"
                        },
                        {
                            "name": "_ZN11phyphox_ble7autogen10exp_headerE",
                            "size": 15,
                            "identifier": ":\\_ZN11phyphox_ble7autogen10exp_headerE"
                        },
                        {
                            "name": "_ZN4carl8led_task9timer_semE",
                            "size": 24,
                            "identifier": ":\\_ZN4carl8led_task9timer_semE"
                        },
                        {
                            "name": "z_idle_threads",
                            "size": 160,
                            "identifier": ":\\z_idle_threads"
                        },
                        {
                            "name": "_ZN2QP7QActive11subscrList_E",
                            "size": 4,
                            "identifier": ":\\_ZN2QP7QActive11subscrList_E"
                        },
                        {
                            "name": "k_sys_work_q",
                            "size": 192,
                            "identifier": ":\\k_sys_work_q"
                        },
                        {
                            "name": "sym_X2CGJY32WPU5QR6XFTHTAS6KO4LV2ENSTHTXMQI",
                            "size": 24,
                            "identifier": ":\\sym_X2CGJY32WPU5QR6XFTHTAS6KO4LV2ENSTHTXMQI"
                        },
                        {
                            "name": "_ZN2QP7QActive13maxPubSignal_E",
                            "size": 4,
                            "identifier": ":\\_ZN2QP7QActive13maxPubSignal_E"
                        },
                        {
                            "name": "_ZN4carl3app7sensors4HallE",
                            "size": 40,
                            "identifier": ":\\_ZN4carl3app7sensors4HallE"
                        },
                        {
                            "name": "bt_auth_info_cbs",
                            "size": 8,
                            "identifier": ":\\bt_auth_info_cbs"
                        },
                        {
                            "name": "sym_Z5WZCMHZDI7RNMVB5GZYQIRS7P3BTO7552UV62I",
                            "size": 1,
                            "identifier": ":\\sym_Z5WZCMHZDI7RNMVB5GZYQIRS7P3BTO7552UV62I"
                        },
                        {
                            "name": "_ZN2QP2QF8maxPool_E",
                            "size": 4,
                            "identifier": ":\\_ZN2QP2QF8maxPool_E"
                        },
                        {
                            "name": "_ZN4carl3app7sensors5Tilt2E",
                            "size": 40,
                            "identifier": ":\\_ZN4carl3app7sensors5Tilt2E"
                        },
                        {
                            "name": "__malloc_free_list",
                            "size": 4,
                            "identifier": ":\\__malloc_free_list"
                        },
                        {
                            "name": "mpsl_work_q",
                            "size": 192,
                            "identifier": ":\\mpsl_work_q"
                        },
                        {
                            "name": "__fdlib_version",
                            "size": 1,
                            "identifier": ":\\__fdlib_version"
                        },
                        {
                            "name": "_ZN4carl3app12hall_triggerE",
                            "size": 28,
                            "identifier": ":\\_ZN4carl3app12hall_triggerE"
                        },
                        {
                            "name": "_ZN4carl3hal12batteryGauge8alarmIntE",
                            "size": 40,
                            "identifier": ":\\_ZN4carl3hal12batteryGauge8alarmIntE"
                        }
                    ]
                },
                {
                    "name": "ZEPHYR_BASE",
                    "size": 18729,
                    "identifier": "C:/Users/sw2.KRAFFT/ncs/zephyr",
                    "children": [
                        {
                            "name": "subsys",
                            "size": 14400,
                            "identifier": "subsys",
                            "children": [
                                {
                                    "name": "bluetooth",
                                    "size": 14352,
                                    "identifier": "subsys\\bluetooth",
                                    "children": [
                                        {
                                            "name": "host",
                                            "size": 14344,
                                            "identifier": "subsys\\bluetooth\\host",
                                            "children": [
                                                {
                                                    "name": "hci_core.c",
                                                    "size": 3850,
                                                    "identifier": "subsys\\bluetooth\\host\\hci_core.c",
                                                    "children": [
                                                        {
                                                            "name": "disconnected_handles",
                                                            "size": 2,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\disconnected_handles"
                                                        },
                                                        {
                                                            "name": "rx_work",
                                                            "size": 16,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\rx_work"
                                                        },
                                                        {
                                                            "name": "bt_workq",
                                                            "size": 192,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\bt_workq"
                                                        },
                                                        {
                                                            "name": "hci_cmd_pool",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\hci_cmd_pool"
                                                        },
                                                        {
                                                            "name": "cmd_data",
                                                            "size": 24,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\cmd_data"
                                                        },
                                                        {
                                                            "name": "ready_cb",
                                                            "size": 4,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\ready_cb"
                                                        },
                                                        {
                                                            "name": "tx_thread_data",
                                                            "size": 160,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\tx_thread_data"
                                                        },
                                                        {
                                                            "name": "tx_thread_stack",
                                                            "size": 1600,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\tx_thread_stack"
                                                        },
                                                        {
                                                            "name": "rx_thread_stack",
                                                            "size": 1600,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\rx_thread_stack"
                                                        },
                                                        {
                                                            "name": "_net_buf_hci_cmd_pool",
                                                            "size": 64,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\_net_buf_hci_cmd_pool"
                                                        },
                                                        {
                                                            "name": "net_buf_data_hci_cmd_pool",
                                                            "size": 140,
                                                            "identifier": "subsys\\bluetooth\\host\\hci_core.c\\net_buf_data_hci_cmd_pool"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "buf.c",
                                                    "size": 6774,
                                                    "identifier": "subsys\\bluetooth\\host\\buf.c",
                                                    "children": [
                                                        {
                                                            "name": "hci_rx_pool",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\buf.c\\hci_rx_pool"
                                                        },
                                                        {
                                                            "name": "num_complete_pool",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\buf.c\\num_complete_pool"
                                                        },
                                                        {
                                                            "name": "discardable_pool",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\buf.c\\discardable_pool"
                                                        },
                                                        {
                                                            "name": "_net_buf_hci_rx_pool",
                                                            "size": 320,
                                                            "identifier": "subsys\\bluetooth\\host\\buf.c\\_net_buf_hci_rx_pool"
                                                        },
                                                        {
                                                            "name": "net_buf_data_hci_rx_pool",
                                                            "size": 6040,
                                                            "identifier": "subsys\\bluetooth\\host\\buf.c\\net_buf_data_hci_rx_pool"
                                                        },
                                                        {
                                                            "name": "_net_buf_discardable_pool",
                                                            "size": 96,
                                                            "identifier": "subsys\\bluetooth\\host\\buf.c\\_net_buf_discardable_pool"
                                                        },
                                                        {
                                                            "name": "net_buf_data_discardable_pool",
                                                            "size": 135,
                                                            "identifier": "subsys\\bluetooth\\host\\buf.c\\net_buf_data_discardable_pool"
                                                        },
                                                        {
                                                            "name": "_net_buf_num_complete_pool",
                                                            "size": 32,
                                                            "identifier": "subsys\\bluetooth\\host\\buf.c\\_net_buf_num_complete_pool"
                                                        },
                                                        {
                                                            "name": "net_buf_data_num_complete_pool",
                                                            "size": 7,
                                                            "identifier": "subsys\\bluetooth\\host\\buf.c\\net_buf_data_num_complete_pool"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "ecc.c",
                                                    "size": 76,
                                                    "identifier": "subsys\\bluetooth\\host\\ecc.c",
                                                    "children": [
                                                        {
                                                            "name": "pub_key_cb_slist",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\ecc.c\\pub_key_cb_slist"
                                                        },
                                                        {
                                                            "name": "pub_key",
                                                            "size": 64,
                                                            "identifier": "subsys\\bluetooth\\host\\ecc.c\\pub_key"
                                                        },
                                                        {
                                                            "name": "dh_key_cb",
                                                            "size": 4,
                                                            "identifier": "subsys\\bluetooth\\host\\ecc.c\\dh_key_cb"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "conn.c",
                                                    "size": 2438,
                                                    "identifier": "subsys\\bluetooth\\host\\conn.c",
                                                    "children": [
                                                        {
                                                            "name": "callback_list",
                                                            "size": 4,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\callback_list"
                                                        },
                                                        {
                                                            "name": "conn_change",
                                                            "size": 16,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\conn_change"
                                                        },
                                                        {
                                                            "name": "acl_conns",
                                                            "size": 200,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\acl_conns"
                                                        },
                                                        {
                                                            "name": "acl_tx_pool",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\acl_tx_pool"
                                                        },
                                                        {
                                                            "name": "frag_pool",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\frag_pool"
                                                        },
                                                        {
                                                            "name": "conn_tx",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\conn_tx"
                                                        },
                                                        {
                                                            "name": "_net_buf_frag_pool",
                                                            "size": 64,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\_net_buf_frag_pool"
                                                        },
                                                        {
                                                            "name": "net_buf_data_frag_pool",
                                                            "size": 62,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\net_buf_data_frag_pool"
                                                        },
                                                        {
                                                            "name": "_net_buf_acl_tx_pool",
                                                            "size": 96,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\_net_buf_acl_tx_pool"
                                                        },
                                                        {
                                                            "name": "net_buf_data_acl_tx_pool",
                                                            "size": 1824,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\net_buf_data_acl_tx_pool"
                                                        },
                                                        {
                                                            "name": "free_tx",
                                                            "size": 28,
                                                            "identifier": "subsys\\bluetooth\\host\\conn.c\\free_tx"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "gatt.c",
                                                    "size": 226,
                                                    "identifier": "subsys\\bluetooth\\host\\gatt.c",
                                                    "children": [
                                                        {
                                                            "name": "callback_list",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\callback_list"
                                                        },
                                                        {
                                                            "name": "sc_cfg",
                                                            "size": 24,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\sc_cfg"
                                                        },
                                                        {
                                                            "name": "subscriptions",
                                                            "size": 32,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\subscriptions"
                                                        },
                                                        {
                                                            "name": "gatt_flags",
                                                            "size": 4,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\gatt_flags"
                                                        },
                                                        {
                                                            "name": "last_static_handle",
                                                            "size": 2,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\last_static_handle"
                                                        },
                                                        {
                                                            "name": "gatt_sc",
                                                            "size": 88,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\gatt_sc"
                                                        },
                                                        {
                                                            "name": "sc_ccc",
                                                            "size": 36,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\sc_ccc"
                                                        },
                                                        {
                                                            "name": "db",
                                                            "size": 8,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\db"
                                                        },
                                                        {
                                                            "name": "sc_restore_params",
                                                            "size": 24,
                                                            "identifier": "subsys\\bluetooth\\host\\gatt.c\\sc_restore_params"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "l2cap.c",
                                                    "size": 48,
                                                    "identifier": "subsys\\bluetooth\\host\\l2cap.c",
                                                    "children": [
                                                        {
                                                            "name": "bt_l2cap_pool",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\l2cap.c\\bt_l2cap_pool"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "att.c",
                                                    "size": 492,
                                                    "identifier": "subsys\\bluetooth\\host\\att.c",
                                                    "children": [
                                                        {
                                                            "name": "att_handle_rsp_thread",
                                                            "size": 4,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_handle_rsp_thread"
                                                        },
                                                        {
                                                            "name": "tx_meta_data",
                                                            "size": 60,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\tx_meta_data"
                                                        },
                                                        {
                                                            "name": "cancel",
                                                            "size": 28,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\cancel"
                                                        },
                                                        {
                                                            "name": "_k_mem_slab_buf_att_slab",
                                                            "size": 48,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\_k_mem_slab_buf_att_slab"
                                                        },
                                                        {
                                                            "name": "_k_mem_slab_buf_chan_slab",
                                                            "size": 144,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\_k_mem_slab_buf_chan_slab"
                                                        },
                                                        {
                                                            "name": "_k_mem_slab_buf_req_slab",
                                                            "size": 84,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\_k_mem_slab_buf_req_slab"
                                                        },
                                                        {
                                                            "name": "req_slab",
                                                            "size": 32,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\req_slab"
                                                        },
                                                        {
                                                            "name": "chan_slab",
                                                            "size": 32,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\chan_slab"
                                                        },
                                                        {
                                                            "name": "att_slab",
                                                            "size": 32,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\att_slab"
                                                        },
                                                        {
                                                            "name": "free_att_tx_meta_data",
                                                            "size": 28,
                                                            "identifier": "subsys\\bluetooth\\host\\att.c\\free_att_tx_meta_data"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "smp.c",
                                                    "size": 376,
                                                    "identifier": "subsys\\bluetooth\\host\\smp.c",
                                                    "children": [
                                                        {
                                                            "name": "bt_smp_pool",
                                                            "size": 344,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\bt_smp_pool"
                                                        },
                                                        {
                                                            "name": "sc_supported",
                                                            "size": 1,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\sc_supported"
                                                        },
                                                        {
                                                            "name": "bondable",
                                                            "size": 1,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\bondable"
                                                        },
                                                        {
                                                            "name": "sc_public_key",
                                                            "size": 4,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\sc_public_key"
                                                        },
                                                        {
                                                            "name": "sc_oobd_present",
                                                            "size": 1,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\sc_oobd_present"
                                                        },
                                                        {
                                                            "name": "legacy_oobd_present",
                                                            "size": 1,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\legacy_oobd_present"
                                                        },
                                                        {
                                                            "name": "sc_local_pkey_ready",
                                                            "size": 24,
                                                            "identifier": "subsys\\bluetooth\\host\\smp.c\\sc_local_pkey_ready"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "keys.c",
                                                    "size": 64,
                                                    "identifier": "subsys\\bluetooth\\host\\keys.c",
                                                    "children": [
                                                        {
                                                            "name": "key_pool",
                                                            "size": 64,
                                                            "identifier": "subsys\\bluetooth\\host\\keys.c\\key_pool"
                                                        }
                                                    ]
                                                }
                                            ]
                                        },
                                        {
                                            "name": "services",
                                            "size": 8,
                                            "identifier": "subsys\\bluetooth\\services",
                                            "children": [
                                                {
                                                    "name": "dis.c",
                                                    "size": 7,
                                                    "identifier": "subsys\\bluetooth\\services\\dis.c",
                                                    "children": [
                                                        {
                                                            "name": "dis_pnp_id",
                                                            "size": 7,
                                                            "identifier": "subsys\\bluetooth\\services\\dis.c\\dis_pnp_id"
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "bas.c",
                                                    "size": 1,
                                                    "identifier": "subsys\\bluetooth\\services\\bas.c",
                                                    "children": [
                                                        {
                                                            "name": "battery_level",
                                                            "size": 1,
                                                            "identifier": "subsys\\bluetooth\\services\\bas.c\\battery_level"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "pm",
                                    "size": 48,
                                    "identifier": "subsys\\pm",
                                    "children": [
                                        {
                                            "name": "pm.c",
                                            "size": 44,
                                            "identifier": "subsys\\pm\\pm.c",
                                            "children": [
                                                {
                                                    "name": "pm_notifiers",
                                                    "size": 8,
                                                    "identifier": "subsys\\pm\\pm.c\\pm_notifiers"
                                                },
                                                {
                                                    "name": "z_cpus_pm_state",
                                                    "size": 12,
                                                    "identifier": "subsys\\pm\\pm.c\\z_cpus_pm_state"
                                                },
                                                {
                                                    "name": "num_susp",
                                                    "size": 4,
                                                    "identifier": "subsys\\pm\\pm.c\\num_susp"
                                                },
                                                {
                                                    "name": "z_post_ops_required",
                                                    "size": 4,
                                                    "identifier": "subsys\\pm\\pm.c\\z_post_ops_required"
                                                },
                                                {
                                                    "name": "z_cpus_pm_forced_state",
                                                    "size": 12,
                                                    "identifier": "subsys\\pm\\pm.c\\z_cpus_pm_forced_state"
                                                },
                                                {
                                                    "name": "z_cpus_active",
                                                    "size": 4,
                                                    "identifier": "subsys\\pm\\pm.c\\z_cpus_active"
                                                }
                                            ]
                                        },
                                        {
                                            "name": "policy.c",
                                            "size": 4,
                                            "identifier": "subsys\\pm\\policy.c",
                                            "children": [
                                                {
                                                    "name": "max_latency_ticks",
                                                    "size": 4,
                                                    "identifier": "subsys\\pm\\policy.c\\max_latency_ticks"
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "name": "arch",
                            "size": 1,
                            "identifier": "arch",
                            "children": [
                                {
                                    "name": "arm",
                                    "size": 1,
                                    "identifier": "arch\\arm",
                                    "children": [
                                        {
                                            "name": "core",
                                            "size": 1,
                                            "identifier": "arch\\arm\\core",
                                            "children": [
                                                {
                                                    "name": "aarch32",
                                                    "size": 1,
                                                    "identifier": "arch\\arm\\core\\aarch32",
                                                    "children": [
                                                        {
                                                            "name": "mpu",
                                                            "size": 1,
                                                            "identifier": "arch\\arm\\core\\aarch32\\mpu",
                                                            "children": [
                                                                {
                                                                    "name": "arm_mpu.c",
                                                                    "size": 1,
                                                                    "identifier": "arch\\arm\\core\\aarch32\\mpu\\arm_mpu.c",
                                                                    "children": [
                                                                        {
                                                                            "name": "static_regions_num",
                                                                            "size": 1,
                                                                            "identifier": "arch\\arm\\core\\aarch32\\mpu\\arm_mpu.c\\static_regions_num"
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "name": "lib",
                            "size": 80,
                            "identifier": "lib",
                            "children": [
                                {
                                    "name": "libc",
                                    "size": 72,
                                    "identifier": "lib\\libc",
                                    "children": [
                                        {
                                            "name": "newlib",
                                            "size": 72,
                                            "identifier": "lib\\libc\\newlib",
                                            "children": [
                                                {
                                                    "name": "libc-hooks.c",
                                                    "size": 72,
                                                    "identifier": "lib\\libc\\newlib\\libc-hooks.c",
                                                    "children": [
                                                        {
                                                            "name": "_stdout_hook",
                                                            "size": 4,
                                                            "identifier": "lib\\libc\\newlib\\libc-hooks.c\\_stdout_hook"
                                                        },
                                                        {
                                                            "name": "_stdin_hook",
                                                            "size": 4,
                                                            "identifier": "lib\\libc\\newlib\\libc-hooks.c\\_stdin_hook"
                                                        },
                                                        {
                                                            "name": "heap_sz",
                                                            "size": 4,
                                                            "identifier": "lib\\libc\\newlib\\libc-hooks.c\\heap_sz"
                                                        },
                                                        {
                                                            "name": "__lock___malloc_recursive_mutex",
                                                            "size": 20,
                                                            "identifier": "lib\\libc\\newlib\\libc-hooks.c\\__lock___malloc_recursive_mutex"
                                                        },
                                                        {
                                                            "name": "__lock___sinit_recursive_mutex",
                                                            "size": 20,
                                                            "identifier": "lib\\libc\\newlib\\libc-hooks.c\\__lock___sinit_recursive_mutex"
                                                        },
                                                        {
                                                            "name": "__lock___sfp_recursive_mutex",
                                                            "size": 20,
                                                            "identifier": "lib\\libc\\newlib\\libc-hooks.c\\__lock___sfp_recursive_mutex"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "os",
                                    "size": 4,
                                    "identifier": "lib\\os",
                                    "children": [
                                        {
                                            "name": "printk.c",
                                            "size": 4,
                                            "identifier": "lib\\os\\printk.c",
                                            "children": [
                                                {
                                                    "name": "_char_out",
                                                    "size": 4,
                                                    "identifier": "lib\\os\\printk.c\\_char_out"
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "cpp",
                                    "size": 4,
                                    "identifier": "lib\\cpp",
                                    "children": [
                                        {
                                            "name": "abi",
                                            "size": 4,
                                            "identifier": "lib\\cpp\\abi",
                                            "children": [
                                                {
                                                    "name": "cpp_dtors.c",
                                                    "size": 4,
                                                    "identifier": "lib\\cpp\\abi\\cpp_dtors.c",
                                                    "children": [
                                                        {
                                                            "name": "__dso_handle",
                                                            "size": 4,
                                                            "identifier": "lib\\cpp\\abi\\cpp_dtors.c\\__dso_handle"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "name": "drivers",
                            "size": 594,
                            "identifier": "drivers",
                            "children": [
                                {
                                    "name": "clock_control",
                                    "size": 94,
                                    "identifier": "drivers\\clock_control",
                                    "children": [
                                        {
                                            "name": "clock_control_nrf.c",
                                            "size": 94,
                                            "identifier": "drivers\\clock_control\\clock_control_nrf.c",
                                            "children": [
                                                {
                                                    "name": "data",
                                                    "size": 88,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\data"
                                                },
                                                {
                                                    "name": "hfclk_users",
                                                    "size": 4,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\hfclk_users"
                                                },
                                                {
                                                    "name": "__devstate_dts_ord_51",
                                                    "size": 2,
                                                    "identifier": "drivers\\clock_control\\clock_control_nrf.c\\__devstate_dts_ord_51"
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "entropy",
                                    "size": 88,
                                    "identifier": "drivers\\entropy",
                                    "children": [
                                        {
                                            "name": "entropy_nrf5.c",
                                            "size": 86,
                                            "identifier": "drivers\\entropy\\entropy_nrf5.c",
                                            "children": [
                                                {
                                                    "name": "entropy_nrf5_data",
                                                    "size": 84,
                                                    "identifier": "drivers\\entropy\\entropy_nrf5.c\\entropy_nrf5_data"
                                                },
                                                {
                                                    "name": "__devstate_dts_ord_73",
                                                    "size": 2,
                                                    "identifier": "drivers\\entropy\\entropy_nrf5.c\\__devstate_dts_ord_73"
                                                }
                                            ]
                                        },
                                        {
                                            "name": "entropy_bt_hci.c",
                                            "size": 2,
                                            "identifier": "drivers\\entropy\\entropy_bt_hci.c",
                                            "children": [
                                                {
                                                    "name": "__devstate_dts_ord_12",
                                                    "size": 2,
                                                    "identifier": "drivers\\entropy\\entropy_bt_hci.c\\__devstate_dts_ord_12"
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "flash",
                                    "size": 68,
                                    "identifier": "drivers\\flash",
                                    "children": [
                                        {
                                            "name": "spi_nor.c",
                                            "size": 34,
                                            "identifier": "drivers\\flash\\spi_nor.c",
                                            "children": [
                                                {
                                                    "name": "__devstate_dts_ord_111",
                                                    "size": 2,
                                                    "identifier": "drivers\\flash\\spi_nor.c\\__devstate_dts_ord_111"
                                                },
                                                {
                                                    "name": "spi_nor_data_0",
                                                    "size": 32,
                                                    "identifier": "drivers\\flash\\spi_nor.c\\spi_nor_data_0"
                                                }
                                            ]
                                        },
                                        {
                                            "name": "soc_flash_nrf.c",
                                            "size": 34,
                                            "identifier": "drivers\\flash\\soc_flash_nrf.c",
                                            "children": [
                                                {
                                                    "name": "dev_layout",
                                                    "size": 8,
                                                    "identifier": "drivers\\flash\\soc_flash_nrf.c\\dev_layout"
                                                },
                                                {
                                                    "name": "sem_lock",
                                                    "size": 24,
                                                    "identifier": "drivers\\flash\\soc_flash_nrf.c\\sem_lock"
                                                },
                                                {
                                                    "name": "__devstate_dts_ord_91",
                                                    "size": 2,
                                                    "identifier": "drivers\\flash\\soc_flash_nrf.c\\__devstate_dts_ord_91"
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "gpio",
                                    "size": 28,
                                    "identifier": "drivers\\gpio",
                                    "children": [
                                        {
                                            "name": "gpio_nrfx.c",
                                            "size": 28,
                                            "identifier": "drivers\\gpio\\gpio_nrfx.c",
                                            "children": [
                                                {
                                                    "name": "__devstate_dts_ord_17",
                                                    "size": 2,
                                                    "identifier": "drivers\\gpio\\gpio_nrfx.c\\__devstate_dts_ord_17"
                                                },
                                                {
                                                    "name": "gpio_nrfx_p1_data",
                                                    "size": 12,
                                                    "identifier": "drivers\\gpio\\gpio_nrfx.c\\gpio_nrfx_p1_data"
                                                },
                                                {
                                                    "name": "__devstate_dts_ord_2",
                                                    "size": 2,
                                                    "identifier": "drivers\\gpio\\gpio_nrfx.c\\__devstate_dts_ord_2"
                                                },
                                                {
                                                    "name": "gpio_nrfx_p0_data",
                                                    "size": 12,
                                                    "identifier": "drivers\\gpio\\gpio_nrfx.c\\gpio_nrfx_p0_data"
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "i2c",
                                    "size": 78,
                                    "identifier": "drivers\\i2c",
                                    "children": [
                                        {
                                            "name": "i2c_nrfx_twi.c",
                                            "size": 78,
                                            "identifier": "drivers\\i2c\\i2c_nrfx_twi.c",
                                            "children": [
                                                {
                                                    "name": "__devstate_dts_ord_7",
                                                    "size": 2,
                                                    "identifier": "drivers\\i2c\\i2c_nrfx_twi.c\\__devstate_dts_ord_7"
                                                },
                                                {
                                                    "name": "twi_0_data",
                                                    "size": 56,
                                                    "identifier": "drivers\\i2c\\i2c_nrfx_twi.c\\twi_0_data"
                                                },
                                                {
                                                    "name": "__pm_device_dts_ord_7",
                                                    "size": 16,
                                                    "identifier": "drivers\\i2c\\i2c_nrfx_twi.c\\__pm_device_dts_ord_7"
                                                },
                                                {
                                                    "name": "__pm_slot_dts_ord_7",
                                                    "size": 4,
                                                    "identifier": "drivers\\i2c\\i2c_nrfx_twi.c\\__pm_slot_dts_ord_7"
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "pwm",
                                    "size": 38,
                                    "identifier": "drivers\\pwm",
                                    "children": [
                                        {
                                            "name": "pwm_nrfx.c",
                                            "size": 38,
                                            "identifier": "drivers\\pwm\\pwm_nrfx.c",
                                            "children": [
                                                {
                                                    "name": "__devstate_dts_ord_44",
                                                    "size": 2,
                                                    "identifier": "drivers\\pwm\\pwm_nrfx.c\\__devstate_dts_ord_44"
                                                },
                                                {
                                                    "name": "pwm_nrfx_0_data",
                                                    "size": 16,
                                                    "identifier": "drivers\\pwm\\pwm_nrfx.c\\pwm_nrfx_0_data"
                                                },
                                                {
                                                    "name": "__pm_device_dts_ord_44",
                                                    "size": 16,
                                                    "identifier": "drivers\\pwm\\pwm_nrfx.c\\__pm_device_dts_ord_44"
                                                },
                                                {
                                                    "name": "__pm_slot_dts_ord_44",
                                                    "size": 4,
                                                    "identifier": "drivers\\pwm\\pwm_nrfx.c\\__pm_slot_dts_ord_44"
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "spi",
                                    "size": 134,
                                    "identifier": "drivers\\spi",
                                    "children": [
                                        {
                                            "name": "spi_nrfx_spi.c",
                                            "size": 134,
                                            "identifier": "drivers\\spi\\spi_nrfx_spi.c",
                                            "children": [
                                                {
                                                    "name": "__devstate_dts_ord_108",
                                                    "size": 2,
                                                    "identifier": "drivers\\spi\\spi_nrfx_spi.c\\__devstate_dts_ord_108"
                                                },
                                                {
                                                    "name": "spi_1_data",
                                                    "size": 112,
                                                    "identifier": "drivers\\spi\\spi_nrfx_spi.c\\spi_1_data"
                                                },
                                                {
                                                    "name": "__pm_device_dts_ord_108",
                                                    "size": 16,
                                                    "identifier": "drivers\\spi\\spi_nrfx_spi.c\\__pm_device_dts_ord_108"
                                                },
                                                {
                                                    "name": "__pm_slot_dts_ord_108",
                                                    "size": 4,
                                                    "identifier": "drivers\\spi\\spi_nrfx_spi.c\\__pm_slot_dts_ord_108"
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "timer",
                                    "size": 44,
                                    "identifier": "drivers\\timer",
                                    "children": [
                                        {
                                            "name": "nrf_rtc_timer.c",
                                            "size": 44,
                                            "identifier": "drivers\\timer\\nrf_rtc_timer.c",
                                            "children": [
                                                {
                                                    "name": "int_mask",
                                                    "size": 4,
                                                    "identifier": "drivers\\timer\\nrf_rtc_timer.c\\int_mask"
                                                },
                                                {
                                                    "name": "last_count",
                                                    "size": 8,
                                                    "identifier": "drivers\\timer\\nrf_rtc_timer.c\\last_count"
                                                },
                                                {
                                                    "name": "overflow_cnt",
                                                    "size": 4,
                                                    "identifier": "drivers\\timer\\nrf_rtc_timer.c\\overflow_cnt"
                                                },
                                                {
                                                    "name": "anchor",
                                                    "size": 8,
                                                    "identifier": "drivers\\timer\\nrf_rtc_timer.c\\anchor"
                                                },
                                                {
                                                    "name": "force_isr_mask",
                                                    "size": 4,
                                                    "identifier": "drivers\\timer\\nrf_rtc_timer.c\\force_isr_mask"
                                                },
                                                {
                                                    "name": "cc_data",
                                                    "size": 16,
                                                    "identifier": "drivers\\timer\\nrf_rtc_timer.c\\cc_data"
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "eeprom",
                                    "size": 22,
                                    "identifier": "drivers\\eeprom",
                                    "children": [
                                        {
                                            "name": "eeprom_at2x.c",
                                            "size": 22,
                                            "identifier": "drivers\\eeprom\\eeprom_at2x.c",
                                            "children": [
                                                {
                                                    "name": "__devstate_dts_ord_110",
                                                    "size": 2,
                                                    "identifier": "drivers\\eeprom\\eeprom_at2x.c\\__devstate_dts_ord_110"
                                                },
                                                {
                                                    "name": "eeprom_at25_data_0",
                                                    "size": 20,
                                                    "identifier": "drivers\\eeprom\\eeprom_at2x.c\\eeprom_at25_data_0"
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "name": "kernel",
                            "size": 3654,
                            "identifier": "kernel",
                            "children": [
                                {
                                    "name": "init.c",
                                    "size": 1473,
                                    "identifier": "kernel\\init.c",
                                    "children": [
                                        {
                                            "name": "z_idle_stacks",
                                            "size": 384,
                                            "identifier": "kernel\\init.c\\z_idle_stacks"
                                        },
                                        {
                                            "name": "z_sys_post_kernel",
                                            "size": 1,
                                            "identifier": "kernel\\init.c\\z_sys_post_kernel"
                                        },
                                        {
                                            "name": "z_main_stack",
                                            "size": 1088,
                                            "identifier": "kernel\\init.c\\z_main_stack"
                                        }
                                    ]
                                },
                                {
                                    "name": "mutex.c",
                                    "size": 1,
                                    "identifier": "kernel\\mutex.c",
                                    "children": [
                                        {
                                            "name": "lock",
                                            "size": 1,
                                            "identifier": "kernel\\mutex.c\\lock"
                                        }
                                    ]
                                },
                                {
                                    "name": "sem.c",
                                    "size": 1,
                                    "identifier": "kernel\\sem.c",
                                    "children": [
                                        {
                                            "name": "lock",
                                            "size": 1,
                                            "identifier": "kernel\\sem.c\\lock"
                                        }
                                    ]
                                },
                                {
                                    "name": "work.c",
                                    "size": 9,
                                    "identifier": "kernel\\work.c",
                                    "children": [
                                        {
                                            "name": "lock",
                                            "size": 1,
                                            "identifier": "kernel\\work.c\\lock"
                                        },
                                        {
                                            "name": "pending_cancels",
                                            "size": 8,
                                            "identifier": "kernel\\work.c\\pending_cancels"
                                        }
                                    ]
                                },
                                {
                                    "name": "poll.c",
                                    "size": 1,
                                    "identifier": "kernel\\poll.c",
                                    "children": [
                                        {
                                            "name": "lock",
                                            "size": 1,
                                            "identifier": "kernel\\poll.c\\lock"
                                        }
                                    ]
                                },
                                {
                                    "name": "system_work_q.c",
                                    "size": 2112,
                                    "identifier": "kernel\\system_work_q.c",
                                    "children": [
                                        {
                                            "name": "sys_work_q_stack",
                                            "size": 2112,
                                            "identifier": "kernel\\system_work_q.c\\sys_work_q_stack"
                                        }
                                    ]
                                },
                                {
                                    "name": "sched.c",
                                    "size": 37,
                                    "identifier": "kernel\\sched.c",
                                    "children": [
                                        {
                                            "name": "slice_ticks",
                                            "size": 4,
                                            "identifier": "kernel\\sched.c\\slice_ticks"
                                        },
                                        {
                                            "name": "slice_max_prio",
                                            "size": 4,
                                            "identifier": "kernel\\sched.c\\slice_max_prio"
                                        },
                                        {
                                            "name": "slice_timeouts",
                                            "size": 24,
                                            "identifier": "kernel\\sched.c\\slice_timeouts"
                                        },
                                        {
                                            "name": "slice_expired",
                                            "size": 1,
                                            "identifier": "kernel\\sched.c\\slice_expired"
                                        },
                                        {
                                            "name": "pending_current",
                                            "size": 4,
                                            "identifier": "kernel\\sched.c\\pending_current"
                                        }
                                    ]
                                },
                                {
                                    "name": "timeout.c",
                                    "size": 20,
                                    "identifier": "kernel\\timeout.c",
                                    "children": [
                                        {
                                            "name": "announce_remaining",
                                            "size": 4,
                                            "identifier": "kernel\\timeout.c\\announce_remaining"
                                        },
                                        {
                                            "name": "timeout_list",
                                            "size": 8,
                                            "identifier": "kernel\\timeout.c\\timeout_list"
                                        },
                                        {
                                            "name": "curr_tick",
                                            "size": 8,
                                            "identifier": "kernel\\timeout.c\\curr_tick"
                                        }
                                    ]
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "/",
                    "size": 0,
                    "identifier": "/",
                    "children": [
                        {
                            "name": "C:\\",
                            "size": 124,
                            "identifier": "C:\\",
                            "children": [
                                {
                                    "name": "carl-ble-sensor-firmware",
                                    "size": 124,
                                    "identifier": "C:\\carl-ble-sensor-firmware",
                                    "children": [
                                        {
                                            "name": "deps",
                                            "size": 124,
                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps",
                                            "children": [
                                                {
                                                    "name": "drivers",
                                                    "size": 124,
                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers",
                                                    "children": [
                                                        {
                                                            "name": "drivers",
                                                            "size": 124,
                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers",
                                                            "children": [
                                                                {
                                                                    "name": "sensor",
                                                                    "size": 78,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor",
                                                                    "children": [
                                                                        {
                                                                            "name": "adxl372",
                                                                            "size": 78,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372",
                                                                            "children": [
                                                                                {
                                                                                    "name": "adxl372.c",
                                                                                    "size": 78,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372.c",
                                                                                    "children": [
                                                                                        {
                                                                                            "name": "__devstate_dts_ord_99",
                                                                                            "size": 2,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372.c\\__devstate_dts_ord_99"
                                                                                        },
                                                                                        {
                                                                                            "name": "adxl372_data_0",
                                                                                            "size": 76,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\sensor\\adxl372\\adxl372.c\\adxl372_data_0"
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                },
                                                                {
                                                                    "name": "bbram",
                                                                    "size": 46,
                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\bbram",
                                                                    "children": [
                                                                        {
                                                                            "name": "cy15b104",
                                                                            "size": 46,
                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\bbram\\cy15b104",
                                                                            "children": [
                                                                                {
                                                                                    "name": "cy15b104_inst.c",
                                                                                    "size": 22,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\bbram\\cy15b104\\cy15b104_inst.c",
                                                                                    "children": [
                                                                                        {
                                                                                            "name": "__devstate_dts_ord_109",
                                                                                            "size": 2,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\bbram\\cy15b104\\cy15b104_inst.c\\__devstate_dts_ord_109"
                                                                                        },
                                                                                        {
                                                                                            "name": "__pm_device_dts_ord_109",
                                                                                            "size": 16,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\bbram\\cy15b104\\cy15b104_inst.c\\__pm_device_dts_ord_109"
                                                                                        },
                                                                                        {
                                                                                            "name": "__pm_slot_dts_ord_109",
                                                                                            "size": 4,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\bbram\\cy15b104\\cy15b104_inst.c\\__pm_slot_dts_ord_109"
                                                                                        }
                                                                                    ]
                                                                                },
                                                                                {
                                                                                    "name": "cy15b104.cpp",
                                                                                    "size": 24,
                                                                                    "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\bbram\\cy15b104\\cy15b104.cpp",
                                                                                    "children": [
                                                                                        {
                                                                                            "name": "cy15b104_api",
                                                                                            "size": 24,
                                                                                            "identifier": "C:\\carl-ble-sensor-firmware\\deps\\drivers\\drivers\\bbram\\cy15b104\\cy15b104.cpp\\cy15b104_api"
                                                                                        }
                                                                                    ]
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "WORKSPACE",
                    "size": 4851,
                    "identifier": "C:/Users/sw2.KRAFFT/ncs",
                    "children": [
                        {
                            "name": "nrf",
                            "size": 4627,
                            "identifier": "nrf",
                            "children": [
                                {
                                    "name": "lib",
                                    "size": 20,
                                    "identifier": "nrf\\lib",
                                    "children": [
                                        {
                                            "name": "multithreading_lock",
                                            "size": 20,
                                            "identifier": "nrf\\lib\\multithreading_lock",
                                            "children": [
                                                {
                                                    "name": "multithreading_lock.c",
                                                    "size": 20,
                                                    "identifier": "nrf\\lib\\multithreading_lock\\multithreading_lock.c",
                                                    "children": [
                                                        {
                                                            "name": "mpsl_lock",
                                                            "size": 20,
                                                            "identifier": "nrf\\lib\\multithreading_lock\\multithreading_lock.c\\mpsl_lock"
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "subsys",
                                    "size": 4529,
                                    "identifier": "nrf\\subsys",
                                    "children": [
                                        {
                                            "name": "bluetooth",
                                            "size": 3377,
                                            "identifier": "nrf\\subsys\\bluetooth",
                                            "children": [
                                                {
                                                    "name": "controller",
                                                    "size": 3377,
                                                    "identifier": "nrf\\subsys\\bluetooth\\controller",
                                                    "children": [
                                                        {
                                                            "name": "hci_driver.c",
                                                            "size": 2058,
                                                            "identifier": "nrf\\subsys\\bluetooth\\controller\\hci_driver.c",
                                                            "children": [
                                                                {
                                                                    "name": "receive_work",
                                                                    "size": 16,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\hci_driver.c\\receive_work"
                                                                },
                                                                {
                                                                    "name": "sdc_mempool",
                                                                    "size": 2042,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\hci_driver.c\\sdc_mempool"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "hci_internal.c",
                                                            "size": 75,
                                                            "identifier": "nrf\\subsys\\bluetooth\\controller\\hci_internal.c",
                                                            "children": [
                                                                {
                                                                    "name": "user_cmd_handler",
                                                                    "size": 4,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\hci_internal.c\\user_cmd_handler"
                                                                },
                                                                {
                                                                    "name": "cmd_complete_or_status",
                                                                    "size": 71,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\hci_internal.c\\cmd_complete_or_status"
                                                                }
                                                            ]
                                                        },
                                                        {
                                                            "name": "ecdh.c",
                                                            "size": 1244,
                                                            "identifier": "nrf\\subsys\\bluetooth\\controller\\ecdh.c",
                                                            "children": [
                                                                {
                                                                    "name": "ecdh",
                                                                    "size": 96,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\ecdh.c\\ecdh"
                                                                },
                                                                {
                                                                    "name": "cmd",
                                                                    "size": 4,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\ecdh.c\\cmd"
                                                                },
                                                                {
                                                                    "name": "ecdh_thread_data",
                                                                    "size": 160,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\ecdh.c\\ecdh_thread_data"
                                                                },
                                                                {
                                                                    "name": "ecdh_thread_stack",
                                                                    "size": 968,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\ecdh.c\\ecdh_thread_stack"
                                                                },
                                                                {
                                                                    "name": "ecdh_signal",
                                                                    "size": 16,
                                                                    "identifier": "nrf\\subsys\\bluetooth\\controller\\ecdh.c\\ecdh_signal"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        },
                                        {
                                            "name": "mpsl",
                                            "size": 1152,
                                            "identifier": "nrf\\subsys\\mpsl",
                                            "children": [
                                                {
                                                    "name": "init",
                                                    "size": 1152,
                                                    "identifier": "nrf\\subsys\\mpsl\\init",
                                                    "children": [
                                                        {
                                                            "name": "mpsl_init.c",
                                                            "size": 1152,
                                                            "identifier": "nrf\\subsys\\mpsl\\init\\mpsl_init.c",
                                                            "children": [
                                                                {
                                                                    "name": "mpsl_low_prio_work",
                                                                    "size": 16,
                                                                    "identifier": "nrf\\subsys\\mpsl\\init\\mpsl_init.c\\mpsl_low_prio_work"
                                                                },
                                                                {
                                                                    "name": "timeslot_context",
                                                                    "size": 48,
                                                                    "identifier": "nrf\\subsys\\mpsl\\init\\mpsl_init.c\\timeslot_context"
                                                                },
                                                                {
                                                                    "name": "mpsl_work_stack",
                                                                    "size": 1088,
                                                                    "identifier": "nrf\\subsys\\mpsl\\init\\mpsl_init.c\\mpsl_work_stack"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "name": "drivers",
                                    "size": 78,
                                    "identifier": "nrf\\drivers",
                                    "children": [
                                        {
                                            "name": "mpsl",
                                            "size": 78,
                                            "identifier": "nrf\\drivers\\mpsl",
                                            "children": [
                                                {
                                                    "name": "clock_control",
                                                    "size": 4,
                                                    "identifier": "nrf\\drivers\\mpsl\\clock_control",
                                                    "children": [
                                                        {
                                                            "name": "nrfx_clock_mpsl.c",
                                                            "size": 4,
                                                            "identifier": "nrf\\drivers\\mpsl\\clock_control\\nrfx_clock_mpsl.c",
                                                            "children": [
                                                                {
                                                                    "name": "event_handler",
                                                                    "size": 4,
                                                                    "identifier": "nrf\\drivers\\mpsl\\clock_control\\nrfx_clock_mpsl.c\\event_handler"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "flash_sync",
                                                    "size": 68,
                                                    "identifier": "nrf\\drivers\\mpsl\\flash_sync",
                                                    "children": [
                                                        {
                                                            "name": "flash_sync_mpsl.c",
                                                            "size": 68,
                                                            "identifier": "nrf\\drivers\\mpsl\\flash_sync\\flash_sync_mpsl.c",
                                                            "children": [
                                                                {
                                                                    "name": "_context",
                                                                    "size": 68,
                                                                    "identifier": "nrf\\drivers\\mpsl\\flash_sync\\flash_sync_mpsl.c\\_context"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                },
                                                {
                                                    "name": "temp_nrf5",
                                                    "size": 6,
                                                    "identifier": "nrf\\drivers\\mpsl\\temp_nrf5",
                                                    "children": [
                                                        {
                                                            "name": "temp_nrf5_mpsl.c",
                                                            "size": 6,
                                                            "identifier": "nrf\\drivers\\mpsl\\temp_nrf5\\temp_nrf5_mpsl.c",
                                                            "children": [
                                                                {
                                                                    "name": "__devstate_dts_ord_80",
                                                                    "size": 2,
                                                                    "identifier": "nrf\\drivers\\mpsl\\temp_nrf5\\temp_nrf5_mpsl.c\\__devstate_dts_ord_80"
                                                                },
                                                                {
                                                                    "name": "temp_nrf5_mpsl_driver",
                                                                    "size": 4,
                                                                    "identifier": "nrf\\drivers\\mpsl\\temp_nrf5\\temp_nrf5_mpsl.c\\temp_nrf5_mpsl_driver"
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "name": "modules",
                            "size": 224,
                            "identifier": "modules",
                            "children": [
                                {
                                    "name": "hal",
                                    "size": 224,
                                    "identifier": "modules\\hal",
                                    "children": [
                                        {
                                            "name": "nordic",
                                            "size": 224,
                                            "identifier": "modules\\hal\\nordic",
                                            "children": [
                                                {
                                                    "name": "nrfx",
                                                    "size": 224,
                                                    "identifier": "modules\\hal\\nordic\\nrfx",
                                                    "children": [
                                                        {
                                                            "name": "drivers",
                                                            "size": 224,
                                                            "identifier": "modules\\hal\\nordic\\nrfx\\drivers",
                                                            "children": [
                                                                {
                                                                    "name": "src",
                                                                    "size": 224,
                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src",
                                                                    "children": [
                                                                        {
                                                                            "name": "nrfx_gpiote.c",
                                                                            "size": 112,
                                                                            "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_gpiote.c",
                                                                            "children": [
                                                                                {
                                                                                    "name": "m_cb",
                                                                                    "size": 112,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_gpiote.c\\m_cb"
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "name": "nrfx_pwm.c",
                                                                            "size": 12,
                                                                            "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_pwm.c",
                                                                            "children": [
                                                                                {
                                                                                    "name": "m_cb",
                                                                                    "size": 12,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_pwm.c\\m_cb"
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "name": "nrfx_spi.c",
                                                                            "size": 40,
                                                                            "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_spi.c",
                                                                            "children": [
                                                                                {
                                                                                    "name": "m_cb",
                                                                                    "size": 40,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_spi.c\\m_cb"
                                                                                }
                                                                            ]
                                                                        },
                                                                        {
                                                                            "name": "nrfx_twi.c",
                                                                            "size": 60,
                                                                            "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_twi.c",
                                                                            "children": [
                                                                                {
                                                                                    "name": "m_cb",
                                                                                    "size": 60,
                                                                                    "identifier": "modules\\hal\\nordic\\nrfx\\drivers\\src\\nrfx_twi.c\\m_cb"
                                                                                }
                                                                            ]
                                                                        }
                                                                    ]
                                                                }
                                                            ]
                                                        }
                                                    ]
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        }
                    ]
                },
                {
                    "name": "(hidden)",
                    "size": 3854,
                    "identifier": "(hidden)"
                }
            ]
        },
        "total_size": 46452
    }

    We are currently working with 2.4.0 of the SDK.

  • In the compiled Kconfig, I can see that neither Partition Manger (CONFIG_PARTITION_MANAGER_ENABLED) nor MCUboot (CONFIG_BOOTLOADER_MCUBOOT).

    Could you please first review that?

    Secondly, could you elaborate about the partition.yml file? Is it your input file or is it a build output?

    If it's the build output, it should be named partitions.yml. If you meant to provide a static configuration to the build, then your input file should be named pm_static.yml. See more at: Partition Manager — nRF Connect SDK 2.4.0 documentation (nordicsemi.com).

  • 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.

Reply
  • 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.

Children
  • 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?

  • 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.

Related